summaryrefslogtreecommitdiff
path: root/horizonwizard.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2017-02-25 23:23:09 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2017-02-25 23:23:09 -0600
commitdcc45c4b24418aa363e2a7ee2fe0b929e0fca8b2 (patch)
tree7e3cdefc621b4a395bff1b89b777b28f0882e769 /horizonwizard.hh
parent93ebeb837625d9db5bbc8a5575f73eded60d5b8d (diff)
downloadhorizon-qt5-dcc45c4b24418aa363e2a7ee2fe0b929e0fca8b2.tar.gz
horizon-qt5-dcc45c4b24418aa363e2a7ee2fe0b929e0fca8b2.tar.bz2
horizon-qt5-dcc45c4b24418aa363e2a7ee2fe0b929e0fca8b2.tar.xz
horizon-qt5-dcc45c4b24418aa363e2a7ee2fe0b929e0fca8b2.zip
Layout fixes for Networking and Welcome pages
Diffstat (limited to 'horizonwizard.hh')
-rw-r--r--horizonwizard.hh19
1 files changed, 16 insertions, 3 deletions
diff --git a/horizonwizard.hh b/horizonwizard.hh
index 57cb685..3428266 100644
--- a/horizonwizard.hh
+++ b/horizonwizard.hh
@@ -5,10 +5,23 @@
class HorizonWizard : public QWizard
{
- enum { Page_Welcome, Page_Partition, Page_Networking, Page_Software,
- Page_AdvancedSoftware, Page_Startup, Page_Commit, Page_Save,
- Page_Finished, Page_CustomStart };
public:
+ enum { Page_Welcome, /* introduction */
+ Page_Partition, /* partitioning */
+ Page_NetworkDetect, /* detect interfaces/carriers */
+ Page_Networking, /* network type selection */
+ Page_Network_SimpleWireless, /* simple -> wifi */
+ Page_Network_SimpleWired, /* simple -> wired */
+ Page_Network_Advanced, /* advanced network config */
+ Page_Software, /* software selection */
+ Page_AdvancedSoftware, /* advanced software selection */
+ Page_Startup, /* boot loader config, if arch needed */
+ Page_Commit, /* confirm committing to disk */
+ Page_Save, /* save the installfile */
+ Page_Finished, /* done */
+ Page_CustomStart /* custom pages have IDs starting here */
+ };
+
HorizonWizard(QWidget *parent = 0);
};