blob: d17f4dee8a2a336cb139bd18b15c7f6071fc9e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef WIZARDPANEL_H
#define WIZARDPANEL_H
#include <QWidget>
class WizardStyleControl;
class WizardOptionsControl;
QT_BEGIN_NAMESPACE
class QWizard;
QT_END_NAMESPACE
class WizardPanel : public QWidget
{
Q_OBJECT
public:
explicit WizardPanel(QWidget *parent = nullptr);
public slots:
void showModal();
void showNonModal();
void showEmbedded();
private:
void applyParameters(QWizard *wizard) const;
WizardStyleControl *m_styleControl;
WizardOptionsControl *m_optionsControl;
};
#endif // WIZARDPANEL_H
|