2013-02-27 08:48:11 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
#############################################################################
|
|
|
|
##
|
|
|
|
## Copyright (C) 2013 Canonical Ltd.
|
2015-01-28 08:44:43 +00:00
|
|
|
## Contact: http://www.qt.io/licensing/
|
2013-02-27 08:48:11 +00:00
|
|
|
##
|
|
|
|
## This file is part of the test suite of the Qt Toolkit.
|
|
|
|
##
|
2015-01-28 08:44:43 +00:00
|
|
|
## $QT_BEGIN_LICENSE:LGPL21$
|
2013-02-27 08:48:11 +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
|
|
|
|
## and conditions see http://www.qt.io/terms-conditions. For further
|
|
|
|
## information use the contact form at http://www.qt.io/contact-us.
|
2013-02-27 08:48:11 +00:00
|
|
|
##
|
|
|
|
## GNU Lesser General Public License Usage
|
|
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
2015-01-28 08:44:43 +00:00
|
|
|
## General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
## Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
## LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
## following information to ensure the GNU Lesser General Public License
|
|
|
|
## requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2013-02-27 08:48:11 +00:00
|
|
|
##
|
2015-01-28 08:44:43 +00:00
|
|
|
## As a special exception, The Qt Company gives you certain additional
|
|
|
|
## rights. These rights are described in The Qt Company LGPL Exception
|
2013-02-27 08:48:11 +00:00
|
|
|
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
##
|
|
|
|
## $QT_END_LICENSE$
|
|
|
|
##
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
from gi.repository import Gtk
|
|
|
|
from subprocess import Popen
|
|
|
|
|
|
|
|
window = Gtk.Window()
|
|
|
|
|
|
|
|
box = Gtk.VBox(False, 0)
|
|
|
|
window.add(box)
|
|
|
|
|
|
|
|
child = None
|
|
|
|
def on_button_clicked(button, socket):
|
|
|
|
global child
|
|
|
|
child = Popen(['./rasterwindow', str(socket.get_id())])
|
|
|
|
|
|
|
|
button = Gtk.Button("Press me to embed a Qt client")
|
|
|
|
box.pack_start(button, False, False, 0)
|
|
|
|
|
|
|
|
socket = Gtk.Socket()
|
|
|
|
socket.set_size_request(200, 200)
|
|
|
|
box.add(socket)
|
|
|
|
|
|
|
|
button.connect("clicked", on_button_clicked, socket)
|
|
|
|
window.connect("destroy", Gtk.main_quit)
|
|
|
|
|
|
|
|
def plugged_event(widget):
|
|
|
|
print("A window was embedded!")
|
|
|
|
|
|
|
|
socket.connect("plug-added", plugged_event)
|
|
|
|
|
|
|
|
window.show_all()
|
|
|
|
Gtk.main()
|
|
|
|
if child:
|
|
|
|
child.terminate()
|