According to QUIP-18 [1], all tests file should be LicenseRef-Qt-Commercial OR GPL-3.0-only [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: I9657df5d660820e56c96d511ea49d321c54682e8 Reviewed-by: Christian Ehrlicher <ch.ehrlicher@gmx.de>
43 lines
860 B
C++
43 lines
860 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
#ifndef INTERACTIVEWIDGET_H
|
|
#define INTERACTIVEWIDGET_H
|
|
|
|
#include "widgets.h"
|
|
#include "paintcommands.h"
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <private/qmath_p.h>
|
|
|
|
QT_FORWARD_DECLARE_CLASS(QToolBox)
|
|
|
|
class InteractiveWidget : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
InteractiveWidget();
|
|
|
|
public slots:
|
|
void run();
|
|
void load();
|
|
void load(const QString &fname);
|
|
void save();
|
|
|
|
protected:
|
|
bool eventFilter(QObject *o, QEvent *e) override;
|
|
|
|
protected slots:
|
|
void cmdSelected(QListWidgetItem *item);
|
|
void enumSelected(QListWidgetItem *item);
|
|
|
|
private:
|
|
QToolBox *m_commandsToolBox;
|
|
QToolBox *m_enumsToolBox;
|
|
OnScreenWidget<QWidget> *m_onScreenWidget;
|
|
QTextEdit *ui_textEdit;
|
|
QString m_filename;
|
|
};
|
|
|
|
#endif
|