summaryrefslogblamecommitdiff
path: root/ui/qt5/networkingpage.hh
blob: 5914af2f0c96b9a2ed555a75fdde92b5b001c31a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                           









                                                 
                                              







                                           
                               
/*
 * networkingpage.hh - Definition of the UI.Network.AddressType page
 * horizon-qt5, the Qt 5 user interface for
 * Project Horizon
 *
 * Copyright (c) 2019 Adélie Linux and contributors.  All rights reserved.
 * This code is licensed under the AGPL 3.0 license, as noted in the
 * LICENSE-code file in the root directory of this repository.
 *
 * SPDX-License-Identifier: AGPL-3.0-only
 */

#ifndef NETWORKINGPAGE_HH
#define NETWORKINGPAGE_HH

#include "horizonwizardpage.hh"

#include <QButtonGroup>
#include <QRadioButton>

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

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

#endif /* !NETWORKINGPAGE_HH */