summaryrefslogtreecommitdiffstats
path: root/tests/manual/xembed-widgets/main.cpp
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/main.cpp
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/main.cpp')
-rw-r--r--tests/manual/xembed-widgets/main.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/manual/xembed-widgets/main.cpp b/tests/manual/xembed-widgets/main.cpp
deleted file mode 100644
index 59b1a76c6a..0000000000
--- a/tests/manual/xembed-widgets/main.cpp
+++ /dev/null
@@ -1,32 +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
-
-#include <QApplication>
-#include <QDebug>
-#include <QWindow>
-
-#include "window.h"
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
-
- QStringList args = app.arguments();
-
- WId winId = 0;
- if (args.count() > 1) {
- bool ok;
- winId = args[1].toUInt(&ok);
- Q_ASSERT(ok);
- }
-
- Window window;
- window.show();
-
- QWindow *foreign = QWindow::fromWinId(winId);
- Q_ASSERT(foreign != 0);
-
- window.windowHandle()->setParent(foreign);
-
- return app.exec();
-}