2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2013-05-24 13:49:24 +00:00
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONTROLLERWINDOW_H
|
|
|
|
#define CONTROLLERWINDOW_H
|
|
|
|
|
2016-11-16 11:34:00 +00:00
|
|
|
#include <QPlainTextEdit>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include "previewwindow.h"
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QCheckBox;
|
|
|
|
class QGroupBox;
|
|
|
|
class QLabel;
|
|
|
|
class QPushButton;
|
|
|
|
class QRadioButton;
|
|
|
|
class QMainWindow;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
2012-04-20 11:54:52 +00:00
|
|
|
class HintControl;
|
|
|
|
class WindowStatesControl;
|
|
|
|
class TypeControl;
|
|
|
|
|
2016-11-16 11:34:00 +00:00
|
|
|
class ControllerWidget : public QWidget
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-11-16 11:34:00 +00:00
|
|
|
explicit ControllerWidget(QWidget *parent = 0);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-07-18 08:10:01 +00:00
|
|
|
virtual bool eventFilter(QObject *o, QEvent *e);
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
private slots:
|
|
|
|
void updatePreview();
|
2012-07-18 08:10:01 +00:00
|
|
|
void updateStateControl();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
private:
|
2017-06-22 13:43:31 +00:00
|
|
|
void updatePreview(QWindow *);
|
|
|
|
void updatePreview(QWidget *);
|
2011-04-27 10:05:43 +00:00
|
|
|
void createTypeGroupBox();
|
|
|
|
QCheckBox *createCheckBox(const QString &text);
|
|
|
|
QRadioButton *createRadioButton(const QString &text);
|
|
|
|
|
|
|
|
QMainWindow *parentWindow;
|
2017-06-22 13:43:31 +00:00
|
|
|
|
|
|
|
QWindow *previewWindow;
|
|
|
|
PreviewWidget *previewWidget;
|
2011-04-27 10:05:43 +00:00
|
|
|
PreviewDialog *previewDialog;
|
2017-06-22 13:43:31 +00:00
|
|
|
|
|
|
|
QWindow *activePreview;
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QGroupBox *widgetTypeGroupBox;
|
|
|
|
QGroupBox *additionalOptionsGroupBox;
|
2012-04-20 11:54:52 +00:00
|
|
|
TypeControl *typeControl;
|
|
|
|
HintControl *hintsControl;
|
|
|
|
WindowStatesControl *statesControl;
|
|
|
|
|
2017-06-22 13:43:31 +00:00
|
|
|
QRadioButton *previewWindowButton;
|
2011-04-27 10:05:43 +00:00
|
|
|
QRadioButton *previewWidgetButton;
|
|
|
|
QRadioButton *previewDialogButton;
|
|
|
|
QCheckBox *modalWindowCheckBox;
|
|
|
|
QCheckBox *fixedSizeWindowCheckBox;
|
|
|
|
};
|
|
|
|
|
2016-11-16 11:34:00 +00:00
|
|
|
class LogWidget : public QPlainTextEdit
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit LogWidget(QWidget *parent = 0);
|
|
|
|
~LogWidget();
|
|
|
|
|
|
|
|
static LogWidget *instance() { return m_instance; }
|
|
|
|
static void install();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void appendText(const QString &);
|
|
|
|
|
|
|
|
private:
|
|
|
|
static QString startupMessage();
|
|
|
|
|
|
|
|
static LogWidget *m_instance;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ControllerWindow : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
ControllerWindow();
|
|
|
|
|
|
|
|
void registerEventFilter();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CONTROLLERWINDOW_H
|