diff options
Diffstat (limited to 'softwarepage.hh')
-rw-r--r-- | softwarepage.hh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/softwarepage.hh b/softwarepage.hh new file mode 100644 index 0000000..03cece0 --- /dev/null +++ b/softwarepage.hh @@ -0,0 +1,22 @@ +#ifndef SOFTWAREPAGE_HH +#define SOFTWAREPAGE_HH + +#include "horizonwizardpage.hh" + +#include <QButtonGroup> +#include <QCheckBox> + +class SoftwarePage : public HorizonWizardPage +{ +public: + SoftwarePage(QWidget *parent = 0); + + int nextId() const; + void toggleDesktops(bool show); +private: + QButtonGroup *typeGroup; + QCheckBox *desktop, *server, *advanced, + *kde, *xfce, *lxqt, *openbox; +}; + +#endif // SOFTWAREPAGE_HH |