2009-07-23 13:11:51 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - 2009 RetroShare Team
|
|
|
|
*
|
|
|
|
* 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
|
2009-08-19 18:15:16 -04:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2009-07-23 13:11:51 -04:00
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef NOTIFYPAGE_H
|
|
|
|
#define NOTIFYPAGE_H
|
|
|
|
|
2012-02-18 09:55:50 -05:00
|
|
|
#include <retroshare-gui/configpage.h>
|
2009-07-23 13:11:51 -04:00
|
|
|
#include "ui_NotifyPage.h"
|
|
|
|
|
2015-05-26 11:19:57 -04:00
|
|
|
#include "gui/chat/ChatLobbyUserNotify.h"
|
|
|
|
|
2012-08-05 16:12:55 -04:00
|
|
|
class UserNotify;
|
2013-01-08 17:07:52 -05:00
|
|
|
class FeedNotify;
|
2015-05-26 11:19:57 -04:00
|
|
|
class ToasterNotify;
|
2012-08-05 16:12:55 -04:00
|
|
|
|
|
|
|
class UserNotifySetting
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UserNotify *mUserNotify;
|
|
|
|
QCheckBox *mEnabledCheckBox;
|
|
|
|
QCheckBox *mCombinedCheckBox;
|
2012-10-27 11:59:12 -04:00
|
|
|
QCheckBox *mBlinkCheckBox;
|
2012-08-05 16:12:55 -04:00
|
|
|
|
|
|
|
public:
|
2012-10-27 11:59:12 -04:00
|
|
|
UserNotifySetting(UserNotify *userNotify, QCheckBox *enabledCheckBox, QCheckBox *combinedCheckBox, QCheckBox *blinkCheckBox)
|
|
|
|
: mUserNotify(userNotify), mEnabledCheckBox(enabledCheckBox), mCombinedCheckBox(combinedCheckBox), mBlinkCheckBox(blinkCheckBox) {}
|
2012-08-05 16:12:55 -04:00
|
|
|
};
|
|
|
|
|
2013-01-08 17:07:52 -05:00
|
|
|
class FeedNotifySetting
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FeedNotify *mFeedNotify;
|
|
|
|
QCheckBox *mEnabledCheckBox;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FeedNotifySetting(FeedNotify *feedNotify, QCheckBox *enabledCheckBox)
|
|
|
|
: mFeedNotify(feedNotify), mEnabledCheckBox(enabledCheckBox) {}
|
|
|
|
};
|
|
|
|
|
2015-05-26 11:19:57 -04:00
|
|
|
class ToasterNotifySetting
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ToasterNotify *mToasterNotify;
|
|
|
|
QCheckBox *mEnabledCheckBox;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ToasterNotifySetting(ToasterNotify *toasterNotify, QCheckBox *enabledCheckBox)
|
|
|
|
: mToasterNotify(toasterNotify), mEnabledCheckBox(enabledCheckBox) {}
|
|
|
|
};
|
|
|
|
|
2009-08-19 18:15:16 -04:00
|
|
|
class NotifyPage : public ConfigPage
|
2009-07-23 13:11:51 -04:00
|
|
|
{
|
2011-06-14 20:40:07 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
2013-10-18 17:10:33 -04:00
|
|
|
NotifyPage(QWidget *parent = 0, Qt::WindowFlags flags = 0);
|
2011-06-14 20:40:07 -04:00
|
|
|
/** Default Destructor */
|
|
|
|
~NotifyPage();
|
|
|
|
|
|
|
|
/** Loads the settings for this page */
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual void load();
|
|
|
|
|
2016-08-27 12:15:13 -04:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/notify.svg") ; }
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual QString pageName() const { return tr("Notify") ; }
|
2013-10-13 08:16:46 -04:00
|
|
|
virtual QString helpText() const ;
|
2011-06-14 20:40:07 -04:00
|
|
|
|
2011-07-13 15:24:33 -04:00
|
|
|
private slots:
|
2012-08-05 16:12:55 -04:00
|
|
|
void notifyToggled();
|
2012-09-04 16:04:49 -04:00
|
|
|
void testToaster();
|
2015-05-26 11:19:57 -04:00
|
|
|
void testFeed();
|
2011-07-13 15:24:33 -04:00
|
|
|
|
2017-01-29 15:47:13 -05:00
|
|
|
void updateFeedNotifySettings();
|
|
|
|
void updateToasterNotifySettings();
|
|
|
|
void updateUserNotifySettings();
|
|
|
|
void updateMessageFlags() ;
|
|
|
|
void updateNotifyFlags() ;
|
|
|
|
void updateNewsFeedFlags();
|
|
|
|
|
|
|
|
void updateSystrayChatLobby();
|
|
|
|
void updateSystrayGroupChat();
|
|
|
|
void updateToasterMargin();
|
|
|
|
|
|
|
|
void updateToasterPosition();
|
|
|
|
void updateChatLobbyUserNotify();
|
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
private:
|
2012-09-04 16:04:49 -04:00
|
|
|
uint getNewsFlags();
|
|
|
|
uint getNotifyFlags();
|
2015-05-26 11:19:57 -04:00
|
|
|
ChatLobbyUserNotify* mChatLobbyUserNotify;
|
2012-09-04 16:04:49 -04:00
|
|
|
|
2013-01-08 17:07:52 -05:00
|
|
|
QList<FeedNotifySetting> mFeedNotifySettingList;
|
2015-05-26 11:19:57 -04:00
|
|
|
QList<ToasterNotifySetting> mToasterNotifySettingList;
|
2012-08-05 16:12:55 -04:00
|
|
|
QList<UserNotifySetting> mUserNotifySettingList;
|
|
|
|
|
2011-06-14 20:40:07 -04:00
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::NotifyPage ui;
|
2009-07-23 13:11:51 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !NOTIFYPAGE_H
|
|
|
|
|