summaryrefslogtreecommitdiff
path: root/horizonwizard.hh
diff options
context:
space:
mode:
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);
};