2010-05-21 09:54:40 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, crypton
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef MESSAGEPAGE_H
|
|
|
|
#define MESSAGEPAGE_H
|
|
|
|
|
2010-08-22 18:28:57 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-05-21 09:54:40 -04:00
|
|
|
#include "configpage.h"
|
|
|
|
#include "ui_MessagePage.h"
|
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
class MsgTagType;
|
2010-05-27 15:48:52 -04:00
|
|
|
|
2010-05-21 09:54:40 -04:00
|
|
|
class MessagePage : public ConfigPage
|
|
|
|
{
|
2010-05-27 15:48:52 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
MessagePage(QWidget * parent = 0, Qt::WFlags flags = 0);
|
|
|
|
~MessagePage();
|
2010-05-21 09:54:40 -04:00
|
|
|
|
|
|
|
/** Saves the changes on this page */
|
|
|
|
bool save(QString &errmsg);
|
|
|
|
/** Loads the settings for this page */
|
|
|
|
void load();
|
|
|
|
|
2010-05-27 15:48:52 -04:00
|
|
|
private slots:
|
|
|
|
void addTag();
|
|
|
|
void editTag();
|
|
|
|
void deleteTag();
|
2010-06-02 08:11:09 -04:00
|
|
|
void defaultTag();
|
2010-05-27 15:48:52 -04:00
|
|
|
|
|
|
|
void currentRowChangedTag(int row);
|
|
|
|
|
|
|
|
private:
|
2010-08-22 18:12:26 -04:00
|
|
|
void fillTags();
|
2010-05-21 09:54:40 -04:00
|
|
|
|
2010-08-22 18:12:26 -04:00
|
|
|
/* Pointer for not include of rsmsgs.h */
|
|
|
|
MsgTagType *m_pTags;
|
|
|
|
std::list<uint32_t> m_changedTagIds;
|
2010-05-21 09:54:40 -04:00
|
|
|
|
2010-05-27 15:48:52 -04:00
|
|
|
Ui::MessagePage ui;
|
2010-05-21 09:54:40 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !MESSAGEPAGE_H
|
|
|
|
|