summaryrefslogtreecommitdiffstats
path: root/examples/widgets/layouts/dynamiclayouts/dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/layouts/dynamiclayouts/dialog.h')
-rw-r--r--examples/widgets/layouts/dynamiclayouts/dialog.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/examples/widgets/layouts/dynamiclayouts/dialog.h b/examples/widgets/layouts/dynamiclayouts/dialog.h
deleted file mode 100644
index 89424cee8a..0000000000
--- a/examples/widgets/layouts/dynamiclayouts/dialog.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef DIALOG_H
-#define DIALOG_H
-
-#include <QDialog>
-#include <QQueue>
-
-QT_BEGIN_NAMESPACE
-class QComboBox;
-class QDialogButtonBox;
-class QGridLayout;
-class QGroupBox;
-class QLabel;
-class QPushButton;
-QT_END_NAMESPACE
-
-class Dialog : public QDialog
-{
- Q_OBJECT
-
-public:
- Dialog(QWidget *parent = nullptr);
-
-private slots:
- void buttonsOrientationChanged(int index);
- void rotateWidgets();
- void help();
-
-private:
- void createRotatableGroupBox();
- void createOptionsGroupBox();
- void createButtonBox();
-
- QGroupBox *rotatableGroupBox;
- QQueue<QWidget *> rotatableWidgets;
-
- QGroupBox *optionsGroupBox;
- QLabel *buttonsOrientationLabel;
- QComboBox *buttonsOrientationComboBox;
-
- QDialogButtonBox *buttonBox;
- QPushButton *closeButton;
- QPushButton *helpButton;
- QPushButton *rotateWidgetsButton;
-
- QGridLayout *mainLayout;
- QGridLayout *rotatableLayout;
- QGridLayout *optionsLayout;
-};
-
-#endif // DIALOG_H