comparison libgui/src/welcome-wizard.h @ 17515:c8c0dff02538

gui: welcome wizard with new message text * resource-manager.cc(do_get_settings_path): new function for the path of the settings path (do_get_settings_file): new function for the name of the settings file (do_reload_settings): use new functions do_get_settings_path and -file * resource-manager.h(get_settings_file): new static function returning the the name of the settings file; new internal functions do_get_settings_path and do_get_settings_file * welcome-wizard.ui: removed extra pages, new text messages * welcome-wizard.cc(constructor): no more buttons to connect, replace placeholder by the settings file name (next,previous): remove unnecessary functions * welcome-wizard.h: removed unnecessary functions next and previous
author Torsten <ttl@justmail.de>
date Sun, 29 Sep 2013 20:56:39 +0200
parents 501a9cc2c68f
children 0dd2cf2e3174
comparison
equal deleted inserted replaced
17514:5b916efea542 17515:c8c0dff02538
36 public: 36 public:
37 explicit welcome_wizard (QWidget *parent = 0); 37 explicit welcome_wizard (QWidget *parent = 0);
38 ~welcome_wizard (); 38 ~welcome_wizard ();
39 39
40 public slots: 40 public slots:
41 void next ();
42 void previous ();
43 41
44 private: 42 private:
45 Ui::welcome_wizard *_ui; 43 Ui::welcome_wizard *_ui;
46 }; 44 };
47 45