/******************************************************************************* * gui/settings/MessagePage.h * * * * Copyright (C) 2006 Crypton * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Affero General Public License as * * published by the Free Software Foundation, either version 3 of the * * License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Affero General Public License for more details. * * * * You should have received a copy of the GNU Affero General Public License * * along with this program. If not, see . * * * *******************************************************************************/ #ifndef MESSAGEPAGE_H #define MESSAGEPAGE_H #include #include #include "ui_MessagePage.h" #include "gui/msgs/MessageInterface.h" class MessagePage : public ConfigPage { Q_OBJECT public: MessagePage(QWidget * parent = 0, Qt::WindowFlags flags = 0); ~MessagePage(); /** Loads the settings for this page */ virtual void load(); virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/messages.svg") ; } virtual QString pageName() const { return tr("Mail") ; } virtual QString helpText() const { return ""; } private slots: void addTag(); void editTag(); void deleteTag(); void defaultTag(); void currentRowChangedTag(int row); void distantMsgsComboBoxChanged(int); void updateMsgToReadOnActivate() ; void updateLoadEmbededImages() ; void updateMsgOpen() ; void updateDistantMsgs() ; void updateMsgTags() ; private: void fillTags(); /* Pointer for not include of rsmsgs.h */ MsgTagType *m_pTags; std::list m_changedTagIds; Ui::MessagePage ui; }; #endif // !MESSAGEPAGE_H