* 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:
defnax 2008-08-16 22:24:53 +00:00
parent 45f2108fd0
commit 8a2e563c66
19 changed files with 153 additions and 23 deletions

View file

@ -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()));