qt5base-lts/tests/manual/dialogs/wizardpanel.h
Mikolaj Boc 701852e17b Add window-modal show option to dialogs manual test
This provides an easy way to test window modality using a ready
available test.

Change-Id: Ia23736c61fd56dda8f72ae19f5f102163951271b
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
2022-09-13 18:13:00 +02:00

35 lines
728 B
C++

// 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 execModal();
void showModal(Qt::WindowModality modality);
void showNonModal();
void showEmbedded();
private:
void applyParameters(QWizard *wizard) const;
WizardStyleControl *m_styleControl;
WizardOptionsControl *m_optionsControl;
};
#endif // WIZARDPANEL_H