summaryrefslogtreecommitdiff
path: root/ui/qt5/networkingpage.hh
blob: 3353fb677f72acbe1e7d3849b28ef6d8085d70f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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