Added possibility to use UserNotify in ApplicationWindow.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7317 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2014-05-01 13:08:22 +00:00
parent 6e4fa142d1
commit 23b60d8d9a
3 changed files with 21 additions and 9 deletions

View file

@ -48,6 +48,8 @@ public:
//GroupsDialog *groupsDialog;
//StatisticDialog *statisticDialog;
QList<QPair<MainPage*, QAction*> > &getNotify() { return mNotify; }
protected:
void closeEvent(QCloseEvent *);
@ -57,6 +59,9 @@ private:
/** Adds a new action to the toolbar. */
void addAction(QAction *action, const char *slot = 0);
private:
QList<QPair<MainPage*, QAction*> > mNotify;
/** Qt Designer generated object */
Ui::ApplicationWindow ui;
};