Removed Left side ToolBar.

Moved Info, About & Options to the Top ToolBar
Moved Add Friend Button to Friends Dialog

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7311 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2014-04-29 11:52:13 +00:00
parent d5af5e7a96
commit 06fe72e0d8
4 changed files with 43 additions and 45 deletions

View file

@ -229,21 +229,6 @@ MainWindow::MainWindow(QWidget* parent, Qt::WindowFlags flags)
applicationWindow->hide();
#endif
/** Left Side ToolBar**/
connect(actionAdd_Friend, SIGNAL(triggered() ), this , SLOT( addFriend() ) );
connect(actionAdd_Share, SIGNAL(triggered() ), this , SLOT( openShareManager() ) );
connect(actionOptions, SIGNAL(triggered()), this, SLOT( showSettings()) );
// connect(actionMessenger, SIGNAL(triggered()), this, SLOT( showMessengerWindow()) );
connect(actionServicePermissions, SIGNAL(triggered()), this, SLOT(servicePermission()));
actionMessenger->setVisible(false);
connect(actionAbout, SIGNAL(triggered()), this, SLOT( showabout()) );
//connect(actionColor, SIGNAL(triggered()), this, SLOT( setStyle()) );
/** adjusted quit behaviour: trigger a warning that can be switched off in the saved
config file RetroShare.conf */
connect(actionQuit, SIGNAL(triggered()), this, SLOT(doQuit()));
QList<QPair<MainPage*, QAction*> > notify;
@ -255,8 +240,6 @@ MainWindow::MainWindow(QWidget* parent, Qt::WindowFlags flags)
action = createPageAction(QIcon(IMAGE_NEWSFEED), tr("News feed"), grp));
notify.push_back(QPair<MainPage*, QAction*>(newsFeed, action));
// stackPages->add(networkDialog = new NetworkDialog(stackPages),
// createPageAction(QIcon(IMAGE_NETWORK2), tr("Network"), grp));
stackPages->add(friendsDialog = new FriendsDialog(stackPages),
action = createPageAction(QIcon(IMAGE_PEERS), tr("Network"), grp));
@ -270,9 +253,6 @@ MainWindow::MainWindow(QWidget* parent, Qt::WindowFlags flags)
stackPages->add(circlesDialog = new CirclesDialog(stackPages), createPageAction(QIcon(IMAGE_CIRCLES ), tr("Circles"), grp));
notify.push_back(QPair<MainPage*, QAction*>(circlesDialog, action));
// stackPages->add(searchDialog = new SearchDialog(stackPages),
// createPageAction(QIcon(IMAGE_SEARCH), tr("Search"), grp));
stackPages->add(transfersDialog = new TransfersDialog(stackPages),
action = createPageAction(QIcon(IMAGE_TRANSFERS), tr("File sharing"), grp));
notify.push_back(QPair<MainPage*, QAction*>(transfersDialog, action));
@ -356,6 +336,11 @@ MainWindow::MainWindow(QWidget* parent, Qt::WindowFlags flags)
addAction(new QAction(QIcon(IMAGE_UNFINISHED), tr("Unfinished"), toolBar), SLOT(showApplWindow()));
#endif
addAction(new QAction(QIcon(IMAGE_OPTIONS), tr("Options"), toolBar), SLOT(showSettings()));
addAction(new QAction(QIcon(IMAGE_ABOUT), tr("About"), toolBar), SLOT(showabout()));
addAction(new QAction(QIcon(IMAGE_QUIT), tr("Quit"), toolBar), SLOT(doQuit()));
stackPages->setCurrentIndex(Settings->getLastPageInMainWindow());
/** StatusBar section ********/