mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-03 06:35:08 -04:00
Reworked notification code in system tray.
Added a base class and a possibility for the main dialogs and the plugins (derived from MainPage) to provide a notifier. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5381 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
049b4bd577
commit
b21e66241b
30 changed files with 1040 additions and 539 deletions
|
@ -40,6 +40,7 @@
|
|||
#include "channels/CreateChannelMsg.h"
|
||||
#include "channels/EditChanDetails.h"
|
||||
#include "channels/ShareKey.h"
|
||||
#include "channels/ChannelUserNotify.h"
|
||||
#include "notifyqt.h"
|
||||
#include "RetroShareLink.h"
|
||||
|
||||
|
@ -113,6 +114,11 @@ ChannelFeed::~ChannelFeed()
|
|||
processSettings(false);
|
||||
}
|
||||
|
||||
UserNotify *ChannelFeed::getUserNotify(QObject *parent)
|
||||
{
|
||||
return new ChannelUserNotify(parent);
|
||||
}
|
||||
|
||||
void ChannelFeed::processSettings(bool load)
|
||||
{
|
||||
Settings->beginGroup(QString("ChannelFeed"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue