]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxListbook.py
2 from wxPython
.wx
import *
7 import wxScrolledWindow
10 colourList
= [ "Aquamarine", "Black", "Blue", "Blue Violet", "Brown", "Cadet Blue",
11 "Coral", "Cornflower Blue", "Cyan", "Dark Grey", "Dark Green",
12 "Dark Olive Green", "Dark Orchid", "Dark Slate Blue",
13 "Dark Slate Grey", "Dark Turquoise", "Dim Grey", "Firebrick",
14 "Forest Green", "Gold", "Goldenrod", "Grey", "Green", "Green Yellow",
15 "Indian Red", "Khaki", "Light Blue", "Light Grey", "Light Steel Blue",
16 "Lime Green", "Magenta", "Maroon", "Medium Aquamarine", "Medium Blue",
17 "Medium Forest Green", "Medium Goldenrod", "Medium Orchid",
18 "Medium Sea Green", "Medium Slate Blue", "Medium Spring Green",
19 "Medium Turquoise", "Medium Violet Red", "Midnight Blue", "Navy",
20 "Orange", "Orange Red", "Orchid", "Pale Green", "Pink", "Plum",
21 "Purple", "Red", "Salmon", "Sea Green", "Sienna", "Sky Blue",
22 "Slate Blue", "Spring Green", "Steel Blue", "Tan", "Thistle",
23 "Turquoise", "Violet", "Violet Red", "Wheat", "White", "Yellow",
27 #----------------------------------------------------------------------------
29 class TestLB(wxListbook
):
30 def __init__(self
, parent
, id, log
):
31 wxListbook
.__init
__(self
, parent
, id, style
=
41 # make an image list using the BlomXX images
42 il
= wxImageList(32, 32)
43 for x
in range(1, 15):
44 f
= getattr(images
, 'getBlom%02dBitmap' % x
)
47 self
.AssignImageList(il
)
50 # Now make a bunch of panels for the list book
53 for colour
in colourList
:
54 win
= self
.makeColorPanel(colour
)
55 self
.AddPage(win
, colour
, imageId
=imID
)
57 if imID
== il
.GetImageCount(): imID
= 0
59 st
= wxStaticText(win
.win
, -1,
60 "You can put nearly any type of window here,\n"
61 "and the list can be on any side of the Listbook",
63 #st.SetForegroundColour(wxWHITE)
64 #st.SetBackgroundColour(wxBLUE)
69 EVT_LISTBOOK_PAGE_CHANGED(self
, self
.GetId(), self
.OnPageChanged
)
70 EVT_LISTBOOK_PAGE_CHANGING(self
, self
.GetId(), self
.OnPageChanging
)
73 def makeColorPanel(self
, color
):
75 win
= ColorPanel
.ColoredPanel(p
, color
)
77 def OnCPSize(evt
, win
=win
):
78 win
.SetSize(evt
.GetSize())
83 def OnPageChanged(self
, event
):
84 old
= event
.GetOldSelection()
85 new
= event
.GetSelection()
86 sel
= self
.GetSelection()
87 self
.log
.write('OnPageChanged, old:%d, new:%d, sel:%d\n' % (old
, new
, sel
))
90 def OnPageChanging(self
, event
):
91 old
= event
.GetOldSelection()
92 new
= event
.GetSelection()
93 sel
= self
.GetSelection()
94 self
.log
.write('OnPageChanging, old:%d, new:%d, sel:%d\n' % (old
, new
, sel
))
97 #----------------------------------------------------------------------------
99 def runTest(frame
, nb
, log
):
100 testWin
= TestLB(nb
, -1, log
)
103 #----------------------------------------------------------------------------
112 This class is a control similar to a notebook control, but with a
113 wxListCtrl instead of a set of tabs.
119 if __name__
== '__main__':
122 run
.main(['', os
.path
.basename(sys
.argv
[0])])