Added Getting Started Dialog Box.

* Connected it up with rsConfig... to tick (and close text) for bits that have been done.
 * Tests cases at first open.
 * Added FAQ from wiki - it needs help.
 * This whole concept needs some further tweaking.




git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-netupgrade@4432 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2011-07-11 18:53:14 +00:00
parent c2a0309f05
commit 52cbe0f2fb
5 changed files with 1122 additions and 3 deletions

View file

@ -59,6 +59,11 @@
#include "unfinished/ApplicationWindow.h"
#endif
#define GETSTARTED_GUI 1
#ifdef GETSTARTED_GUI
#include "gui/GetStartedDialog.h"
#endif
#include "gui/TurtleRouterDialog.h"
#include "idle/idle.h"
@ -287,6 +292,13 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
#endif
#endif
#ifdef GETSTARTED_GUI
MainPage *getStartedPage = NULL;
ui.stackPages->add(getStartedPage = new GetStartedDialog(ui.stackPages),
createPageAction(QIcon(IMG_HELP), tr("Getting Started"), grp));
#endif
/* Create the toolbar */
ui.toolBar->addActions(grp->actions());