I’m looking for an example or advice for embedding an xterm window in a wxPython panel. I think I can get the window ID of a panel with something like “wid=somePanel.GetHandle()” and I should be able to pass that to “xterm -use wid” but so far I’m not having much luck making that work.
Share
Here is a simple script that does work on my machine (ubuntu 8/python 2.5.2/wxpython2.8.10)
Two things to note are
the window id given to -into as the
parent window rather than the
default root window
starting the app, so using calllater
and it works fine