mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-05 07:35:12 -04:00
* Added ApplicationWindow to traymenu for Development version to go faster to the Unfinished Apps.
* Lots of Layout fixes for ApplicationWindow Dialogs git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@693 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
45f2108fd0
commit
8a2e563c66
19 changed files with 153 additions and 23 deletions
|
@ -120,7 +120,7 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||
this->setWindowIcon(QIcon(QString::fromUtf8(":/images/rstray3.png")));
|
||||
|
||||
/*if(!_settings->value(QString::fromUtf8("StartMinimized"), false).toBool()) {
|
||||
show();
|
||||
show();
|
||||
}*/
|
||||
|
||||
/* Create all the dialogs of which we only want one instance */
|
||||
|
@ -293,6 +293,7 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||
#ifdef RS_RELEASE_VERSION
|
||||
#else
|
||||
menu->addAction(_bandwidthAct);
|
||||
menu->addAction(_appAct);
|
||||
#endif
|
||||
menu->addAction(_prefsAct);
|
||||
menu->addAction(_smplayerAct);
|
||||
|
@ -517,6 +518,9 @@ void MainWindow::createActions()
|
|||
_messengerwindowAct = new QAction(QIcon(IMAGE_RSM16), tr("Open Messenger"), this);
|
||||
connect(_messengerwindowAct, SIGNAL(triggered()),this, SLOT(showMessengerWindow()));
|
||||
|
||||
_appAct = new QAction(QIcon(IMAGE_UNFINISHED), tr("Applications"), this);
|
||||
connect(_appAct, SIGNAL(triggered()),this, SLOT(showApplWindow()));
|
||||
|
||||
_smplayerAct = new QAction(QIcon(IMAGE_SMPLAYER), tr("SMPlayer"), this);
|
||||
connect(_smplayerAct, SIGNAL(triggered()),this, SLOT(showsmplayer()));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue