如何在Tkinter应用程序中嵌入终端?

时间:2011-08-31 06:41:55

标签: python tkinter

我想在我的主Tkinter窗口中嵌入一个终端。我想有一个子窗口,其中一个终端(基于Bash的终端)将运行。我也希望能让我的程序与终端进行交互,至少我想阅读当前的工作目录和/或设置它。

我不知道这是不是真的不可能。我过去能用Perl / Tk做到这一点,所以也许它可以在这里复制。

我之后使用的代码类似于:

$frame3=$mw->Frame(-borderwidth=>2, -relief=>'groove', # -label=>'stuff for thought',
                             -labelBackground=>CADRAWWINCOLOR,-background=>CADRAWWINCOLOR);                 

$cv=$frame3->Canvas(-height=>$cvheight,-width=>$cvwidth,-background=>CADRAWWINCOLOR,
                             -bg => CADRAWWINCOLOR,
                             -relief => 'sunken')->pack(-expand => 1, -fill => 'both');

# this Frame is needed for including the xterm in Tk::Canvas 
my $xtermContainer = $cv->Frame(-container => 1);
my $xtid = $xtermContainer->id();
# converting the id from HEX to decimal as xterm requires a decimal Id
my ($xtId) = sprintf hex $xtid;

my $dcontitem = $cv->createWindow($xtermWidth/2,$xtermHeight/2,
                                       -window => $xtermContainer,
                                       -width => $xtermWidth,
                                       -height => $xtermHeight,
                                       -state => 'normal');

system("xterm -into $xtId -fn $fontname -geometry $geometry +sb -bg black -fg white -e ./xtermjob.pl $AAfname 5 &"); 

其中$mw是主要的Tk窗口。

当然,我完全赞同Bryan:虽然之前我从未编写过GUI库,但是我的程序(相当大,一种wiki)运行得非常好,并且用于GUI本身的代码量非常少

我尝试翻译此Perl代码,但我遇到了 ID 问题。

我找到一些从Tkinter中提取ID的方法的唯一地方是Effbot,但是当我使用它时,我得到'AttributeError: Frame instance has no attribute 'window_id',所以肯定有错误:< / p>

termf = Frame(root)
termf.pack(side=BOTTOM, fill=X)
id=termf.window_id()  
os.system("xterm -into %d -fn -misc-fixed-medium-r-normal--8-80-75-75-c-50-iso10646-1 -geometry 150x150+0+0 +sb -bg black -fg white -e /root/.bashrc &" % id);  

3 个答案:

答案 0 :(得分:20)

我很高兴地说它实际上可以做到这一点,而且只需几行代码即可完成(我不知道其他工具包是否如此简单):

from Tkinter import *
import os

root = Tk()
termf = Frame(root, height=400, width=500)

termf.pack(fill=BOTH, expand=YES)
wid = termf.winfo_id()
os.system('xterm -into %d -geometry 40x20 -sb &' % wid)

root.mainloop()

之前的问题是对wid使用了错误的功能。

答案 1 :(得分:0)

亚历山德罗已经在他认为适当的模特前五个小时报道了。对于那些在未来搜索中遇到此项目的人,我会记录一些我知道的背景知识:

幸运的是,Bryan在这里提请注意window_id()和winfo_id()之间的差异,以及对抗其他人在编写各种工具包时所犯的错误。

有趣的是,stackoverflow与更专业的渠道相比如何。在这种情况下,Tkinter邮件列表http://mail.python.org/pipermail/tkinter-discuss/2011-September/002968.html迅速而准确地回答了这个问题。

Tkinter至少会对某些月球火箭软件有所改进。

答案 2 :(得分:-9)

目前还没有一种稳定的方法可以使用Tkinter。现在,您有两种选择:

  • 从Tkinter转移到PyGTK,PyQt或PySide或WxPython或五个bajillion其他GUI库中的任何一个

  • 自己编码终端(困难且烦人)

Tkinter真的不适合任何大型玩具程序和小型应用程序(如makefile生成器)。