How to embed some application window in my application using any Python GUI framework. - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T00:44:44Zhttp://stackoverflow.com/feeds/question/1009813http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1009813/how-to-embed-some-application-window-in-my-application-using-any-python-gui-frame2How to embed some application window in my application using any Python GUI framework.Bolotov2009-06-17T22:22:44Z2009-06-18T20:42:58Z
<p>I want some application to look like widget inside my Python application.</p>
<p>That's all. I dont need any interaction between them. I'm interested in solutions in <strong>any</strong> GUI toolkit for both windows and x windows.</p>
<p>It would be nice to have a solution with Tkinter but it's not crucial.</p>
http://stackoverflow.com/questions/1009813/how-to-embed-some-application-window-in-my-application-using-any-python-gui-frame/1009942#10099422Answer by Glyph for How to embed some application window in my application using any Python GUI framework.Glyph2009-06-17T23:01:29Z2009-06-17T23:01:29Z<p>Using GTK on X windows (i.e. Linux, FreeBSD, Solaris), you can use the XEMBED protocol to embed widgets using <a href="http://www.pygtk.org/docs/pygtk/class-gtksocket.html" rel="nofollow"><code>gtk.Socket</code></a>. Unfortunately, the application that you're launching has to explicitly support it so that you can tell it to embed itself. Some applications don't support this. Notably, I can't find a way to do it with Firefox.</p>
<p>Nonetheless, here's a sample program that will run either an X terminal or an Emacs session inside a GTK window:</p>
<pre><code>import os
import gtk
from gtk import Socket, Button, Window, VBox, HBox
w = Window()
e = Button("Emacs")
x = Button("XTerm")
s = Socket()
v = VBox()
h = HBox()
w.add(v)
v.add(s)
h.add(e)
h.add(x)
v.pack_start(h, expand=False)
def runemacs(btn):
x.set_sensitive(False); e.set_sensitive(False)
os.spawnlp(os.P_NOWAIT, "emacs",
"emacs", "--parent-id", str(s.get_id()))
def runxterm(btn):
x.set_sensitive(False); e.set_sensitive(False)
os.spawnlp(os.P_NOWAIT, "xterm",
"xterm", "-into", str(s.get_id()))
e.connect('clicked', runemacs)
x.connect('clicked', runxterm)
w.show_all()
gtk.main()
</code></pre>