在ubuntu系统下安装使用python的gui工具wxpython

(一)wxpython的安装

ubuntu下的安装,还是比较简单的。

#使用:apt-cache search wxpython 测试一下,可以看到相关信息
dizzy@dizzy-pc:~/python$ apt-cache search wxpython
cain – simulations of chemical reactions
cain-examples – simulations of chemical reactions
cain-solvers – simulations of chemical reactions
gnumed-client – medical practice management – client

#这样的话,直接使用: sudo apt-get install python-wxtools 即可安装
dizzy@dizzy-pc:~/python$ sudo apt-get install python-wxtools
[sudo] password for dizzy:
reading package lists… done
building dependency tree

测试是否安装成功。进入python,import wx 不报错,即可

dizzy@dizzy-pc:~/python$ python
python 2.7.3 (default, apr 20 2012, 22:44:07)
[gcc 4.6.3] on linux2
type “help”, “copyright”, “credits” or “license” for more information.
>>> import wx
>>>

(二)显示出一个窗口

#!/usr/bin/python
#coding:utf-8
import wx
def main():
app = wx.app()
win = wx.frame(none)
win.show()
app.mainloop()
if __name__ == ‘__main__’:
main()
#这便是一个最简单的可视化窗口的实现

(三)添加可视化组建及简单布局

#coding:utf-8
import wx
def main():
app = wx.app()
win = wx.frame(none,title=’notepad’,size=(440,320))
#很明显,title就是标题,size就是大小
bt_open = wx.button(win,label=’open’,pos=(275,2),size=(80,30))
bt_save = wx.button(win,label=’save’,pos=(355,2),size=(80,30))
#label就是按钮显示的标签,pos是控件左上角的相对位置,size就是控件的绝对大小
text_title = wx.textctrl(win,pos=(5,2),size=(265,30))
text_content = wx.textctrl(win,pos=(5,34),size=(430,276),wx.hscroll)
#style样式,wx.te_multiline使其能够多行输入,wx.hscrool使其具有水平滚动条
win.show()
app.mainloop()
if __name__ == ‘__main__’:
main()
#做过桌面软件开发的,对这个肯定很熟悉。
#由于之前学过一点vb,vc,delphi等,学起来感觉很简单。
#将wx提供的控件添加到某个frame上,并进行各自的属性设置即可完成
#由于文本控件的size属性,设置的为绝对值。这样就会有一些问题……

(四)界面布局管理

由于之前的控件直接绑定在frame上,这样会有一些问题。下面将使用panel面板进行管理。

## 当然,之前说将各种控件的位置都写成绝对位置和大小,会有一些问题。这是不对的
## 有时需要动态布局,而有时则需要静态布局
import wx
def main():
#创建app
app = wx.app()
#创建frame
win = wx.frame(none,title=’notepad’,size=(440,320))
win.show()
#创建panel
panel = wx.panel(win)
#创建open,save按钮
bt_open = wx.button(panel,label=’open’)
bt_save = wx.button(panel,label=’save’)
#创建文本框,文本域
text_filename = wx.textctrl(panel)
text_contents = wx.textctrl(panel,wx.hscroll)
#添加布局管理器
bsizer_top = wx.boxsizer()
bsizer_top.add(text_filename,proportion=1,flag=wx.expand)
bsizer_top.add(bt_open,proportion=0,flag=wx.left,border=5)
bsizer_top.add(bt_save,proportion=0,flag=wx.left,border=5)
bsizer_all = wx.boxsizer(wx.vertical)
#wx.vertical 横向分割
bsizer_all.add(bsizer_top,proportion=0,flag=wx.expand|wx.left,border=5)
bsizer_all.add(text_contents,proportion=1,flag=wx.expand|wx.all,border=5)
panel.setsizer(bsizer_all)
app.mainloop()
if __name__ == ‘__main__’:
main()
#这个是动态布局。当然这只是一个视图而已。
#这只是个表面而已,灵魂不在此!

(五)添加控件的事件处理

直接上代码。

#!/usr/bin/python
#coding:utf-8
import wx
def openfile(evt):
filepath = text_filename.getvalue()
fopen = file(filepath)
fcontent = fopen.read()
text_contents.setvalue(fcontent)
fopen.close()
def savefile(evt):
filepath = text_filename.getvalue()
filecontents = text_contents.getvalue()
fopen = file(filepath,’w’)
fopen.write(filecontents)
fopen.close()
app = wx.app()
#创建frame
win = wx.frame(none,title=’notepad’,size=(440,320))
#创建panel
panel = wx.panel(win)
#创建open,save按钮
bt_open = wx.button(panel,label=’open’)
bt_open.bind(wx.evt_button,openfile) #添加open按钮事件绑定,openfile()函数处理
bt_save = wx.button(panel,label=’save’)
bt_save.bind(wx.evt_button,savefile) #添加save按钮事件绑定,savefile()函数处理
#创建文本框,文本域
text_filename = wx.textctrl(panel)
text_contents = wx.textctrl(panel,wx.hscroll)
#添加布局管理器
bsizer_top = wx.boxsizer()
bsizer_top.add(text_filename,proportion=1,flag=wx.expand,border=5)
bsizer_top.add(bt_open,proportion=0,flag=wx.left,border=5)
bsizer_top.add(bt_save,proportion=0,flag=wx.left,border=5)
bsizer_all = wx.boxsizer(wx.vertical)
bsizer_all.add(bsizer_top,proportion=0,flag=wx.expand|wx.left,border=5)
bsizer_all.add(text_contents,proportion=1,flag=wx.expand|wx.all,border=5)
panel.setsizer(bsizer_all)
win.show()
app.mainloop()
47,0-1 bot
#######################################################
# 打开,保存功能基本实现,但还存在很多bug。 #
# 怎么也算自己的第二个python小程序吧!! #
###########################################################################

(六)listctrl列表控件的使用示例
listctrl这个控件比较强大,是我比较喜欢使用的控件之一。
下面是list_report.py中提供的简单用法:

import wx
import sys, glob, random
import data
class demoframe(wx.frame):
def __init__(self):
wx.frame.__init__(self, none, -1,
“wx.listctrl in wx.lc_report mode”,
size=(600,400))
il = wx.imagelist(16,16, true)
for name in glob.glob(“smicon??.png”):
bmp = wx.bitmap(name, wx.bitmap_type_png)
il_max = il.add(bmp)
self.list = wx.listctrl(self, -1, style=wx.lc_report)
self.list.assignimagelist(il, wx.image_list_small)
# add some columns
for col, text in enumerate(data.columns):
self.list.insertcolumn(col, text)
# add the rows
for item in data.rows:
index = self.list.insertstringitem(sys.maxint, item[0])
for col, text in enumerate(item[1:]):
self.list.setstringitem(index, col+1, text)
# give each item a random image
img = random.randint(0, il_max)
self.list.setitemimage(index, img, img)
# set the width of the columns in various ways
self.list.setcolumnwidth(0, 120)
self.list.setcolumnwidth(1, wx.list_autosize)
self.list.setcolumnwidth(2, wx.list_autosize)
self.list.setcolumnwidth(3, wx.list_autosize_useheader)
app = wx.pysimpleapp()
frame = demoframe()
frame.show()
app.mainloop()

如何获取选中的项目?
最常用的方法就是获取选中的第一项:getfirstselected(),这个函数返回一个int,即listctrl中的项(item)的id。

还有一个方法是:getnextselected(itemid),获取指定的itemid之后的第一个被选中的项,同样也是返回itemid。

通过这两个方法,我们就可以遍历所有选中的项了。

Posted in 未分类

发表评论