mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-04 23:25:32 -04:00
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:
parent
c2a0309f05
commit
52cbe0f2fb
5 changed files with 1122 additions and 3 deletions
|
@ -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());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue