summaryrefslogtreecommitdiffstats
path: root/tests/manual/qglyphruns/controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/qglyphruns/controller.h')
-rw-r--r--tests/manual/qglyphruns/controller.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/manual/qglyphruns/controller.h b/tests/manual/qglyphruns/controller.h
new file mode 100644
index 0000000000..75289165f8
--- /dev/null
+++ b/tests/manual/qglyphruns/controller.h
@@ -0,0 +1,29 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#ifndef CONTROLLER_H
+#define CONTROLLER_H
+
+#include <QWidget>
+
+namespace Ui {
+class Controller;
+}
+
+class Controller : public QWidget
+{
+ Q_OBJECT
+
+public:
+ explicit Controller(QWidget *parent = nullptr);
+ ~Controller();
+
+private slots:
+ void updateViews();
+ void updateRange();
+
+private:
+ Ui::Controller *ui;
+};
+
+#endif // CONTROLLER_H