Add wx.Choicebook, wx.Listbook, wx.Toolbook and wx.Treebook

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71813 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-06-20 17:10:42 +00:00
parent cb545458a8
commit f0924fce36
11 changed files with 403 additions and 7 deletions

View File

@@ -0,0 +1,48 @@
import imp_unittest, unittest
import wtc
import wx
import os
toolImgFiles = [os.path.join(os.path.dirname(__file__), 'LB01.png'),
os.path.join(os.path.dirname(__file__), 'LB02.png'),
os.path.join(os.path.dirname(__file__), 'LB03.png'),
os.path.join(os.path.dirname(__file__), 'LB04.png'),
]
#---------------------------------------------------------------------------
class toolbook_Tests(wtc.WidgetTestCase):
def test_toolbook1(self):
wx.TBK_BUTTONBAR
wx.TBK_HORZ_LAYOUT
wx.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
wx.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
wx.EVT_TOOLBOOK_PAGE_CHANGED
wx.EVT_TOOLBOOK_PAGE_CHANGING
def test_toolbook2(self):
book = wx.Toolbook()
book.Create(self.frame)
def test_toolbook3(self):
book = wx.Toolbook(self.frame)
il = wx.ImageList()
for name in toolImgFiles:
il.Add(wx.Bitmap(name))
book.AssignImageList(il)
book.AddPage(wx.Panel(book), 'one', imageId=0)
book.AddPage(wx.Panel(book), 'two', imageId=1)
book.AddPage(wx.Panel(book), 'three', imageId=2)
book.AddPage(wx.Panel(book), 'four', imageId=3)
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()