summaryrefslogtreecommitdiff
path: root/networkingpage.hh
blob: a861f0140992fa250dbb4bae4e876ddc803dcde3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef NETWORKINGPAGE_HH
#define NETWORKINGPAGE_HH

#include "horizonwizardpage.hh"

#include <QButtonGroup>
#include <QRadioButton>

class NetworkingPage : public HorizonWizardPage
{
public:
        NetworkingPage(QWidget *parent = 0);

        bool isComplete() const;
        int nextId() const;
private:
        QButtonGroup *radioGroup;
        QRadioButton *simple, *advanced, *skip;
};

#endif // NETWORKINGPAGE_HH