13.07.2015 Views

The wxPython tutorial

The wxPython tutorial

The wxPython tutorial

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Application skeletons in <strong>wxPython</strong>http://www.zetcode.com/wxpython/skeletons/j = j + 1class FileHunter(wx.Frame):def __init__(self, parent, id, title):wx.Frame.__init__(self, parent, -1, title)self.splitter = wx.SplitterWindow(self, ID_SPLITTER, style=wx.SP_BORDER)self.splitter.SetMinimumPaneSize(50)p1 = MyListCtrl(self.splitter, -1)p2 = MyListCtrl(self.splitter, -1)self.splitter.SplitVertically(p1, p2)self.Bind(wx.EVT_SIZE, self.OnSize)self.Bind(wx.EVT_SPLITTER_DCLICK, self.OnDoubleClick, id=ID_SPLITTER)filemenu= wx.Menu()filemenu.Append(ID_EXIT,"E&xit"," Terminate the program")editmenu = wx.Menu()netmenu = wx.Menu()showmenu = wx.Menu()configmenu = wx.Menu()helpmenu = wx.Menu()menuBar = wx.MenuBar()menuBar.Append(filemenu,"&File")menuBar.Append(editmenu, "&Edit")menuBar.Append(netmenu, "&Net")menuBar.Append(showmenu, "&Show")menuBar.Append(configmenu, "&Config")menuBar.Append(helpmenu, "&Help")self.SetMenuBar(menuBar)self.Bind(wx.EVT_MENU, self.OnExit, id=ID_EXIT)tb = self.CreateToolBar( wx.TB_HORIZONTAL | wx.NO_BORDER |wx.TB_FLAT | wx.TB_TEXT)tb.AddSimpleTool(10, wx.Bitmap('images/previous.png'), 'Previous')tb.AddSimpleTool(20, wx.Bitmap('images/up.png'), 'Up one directory')tb.AddSimpleTool(30, wx.Bitmap('images/home.png'), 'Home')tb.AddSimpleTool(40, wx.Bitmap('images/refresh.png'), 'Refresh')tb.AddSeparator()tb.AddSimpleTool(50, wx.Bitmap('images/write.png'), 'Editor')tb.AddSimpleTool(60, wx.Bitmap('images/terminal.png'), 'Terminal')tb.AddSeparator()tb.AddSimpleTool(70, wx.Bitmap('images/help.png'), 'Help')tb.Realize()self.sizer2 = wx.BoxSizer(wx.HORIZONTAL)button1 = wx.Button(self, ID_BUTTON + 1, "F3 View")button2 = wx.Button(self, ID_BUTTON + 2, "F4 Edit")button3 = wx.Button(self, ID_BUTTON + 3, "F5 Copy")button4 = wx.Button(self, ID_BUTTON + 4, "F6 Move")button5 = wx.Button(self, ID_BUTTON + 5, "F7 Mkdir")button6 = wx.Button(self, ID_BUTTON + 6, "F8 Delete")button7 = wx.Button(self, ID_BUTTON + 7, "F9 Rename")button8 = wx.Button(self, ID_EXIT, "F10 Quit")self.sizer2.Add(button1, 1, wx.EXPAND)self.sizer2.Add(button2, 1, wx.EXPAND)self.sizer2.Add(button3, 1, wx.EXPAND)self.sizer2.Add(button4, 1, wx.EXPAND)self.sizer2.Add(button5, 1, wx.EXPAND)3 de 11 27/04/2008 1:07

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!