mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-04 15:15:15 -04:00
fixed auto-raise of pages that are not in the top level
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6141 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
718314af75
commit
6e9d1beda9
6 changed files with 69 additions and 29 deletions
|
@ -40,6 +40,13 @@ class FriendsDialog : public RsAutoUpdatePage
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum Page {
|
||||
/* Fixed numbers for load and save the last page */
|
||||
NetworkTab = 0, /** Network page. */
|
||||
NetworkViewTab = 1, /** Network new graph. */
|
||||
BroadcastTab = 2 /** Old group chat page. */
|
||||
};
|
||||
|
||||
/** Default Constructor */
|
||||
FriendsDialog(QWidget *parent = 0);
|
||||
/** Default Destructor */
|
||||
|
@ -52,6 +59,8 @@ public:
|
|||
static bool isGroupChatActive();
|
||||
static void groupChatActivate();
|
||||
|
||||
void activatePage(FriendsDialog::Page page) ;
|
||||
|
||||
NetworkDialog *networkDialog ;
|
||||
NetworkView *networkView ;
|
||||
public slots:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue