summaryrefslogtreecommitdiffstats
path: root/tests/manual/xembed-widgets/window.h
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2022-07-04 13:31:25 +0200
committerLiang Qi <liang.qi@qt.io>2022-08-06 01:24:41 +0200
commitaef55501bccd52f63a84228cb2ee201ec4f5c301 (patch)
tree447b4434e082d944de62939af239fde0338fd412 /tests/manual/xembed-widgets/window.h
parent8e9fdfec0afc01f192b222af60c13955a63b594f (diff)
tests: replace gtk-embedder.py with a gtk3 app
All linux CI machines have gtk3 installed. And Python GTK things are too complicate to setup. Pick-to: 6.4 6.3 6.2 5.15 Change-Id: I3c0d967f61aebea508784df79569b9d0064f66e2 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'tests/manual/xembed-widgets/window.h')
-rw-r--r--tests/manual/xembed-widgets/window.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/manual/xembed-widgets/window.h b/tests/manual/xembed-widgets/window.h
deleted file mode 100644
index 6f69a4330e..0000000000
--- a/tests/manual/xembed-widgets/window.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (C) 2017 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-#ifndef WINDOW_H
-#define WINDOW_H
-
-#include <QWidget>
-
-QT_BEGIN_NAMESPACE
-class QComboBox;
-class QLineEdit;
-QT_END_NAMESPACE
-
-class Window : public QWidget
-{
- Q_OBJECT
-
-public:
- Window();
-
-public slots:
- void echoChanged(int);
- void validatorChanged(int);
- void alignmentChanged(int);
- void inputMaskChanged(int);
- void accessChanged(int);
-
-private:
- QLineEdit *echoLineEdit;
- QLineEdit *validatorLineEdit;
- QLineEdit *alignmentLineEdit;
- QLineEdit *inputMaskLineEdit;
- QLineEdit *accessLineEdit;
-};
-
-#endif