]>
Commit | Line | Data |
---|---|---|
1 | ||
2 | import wx | |
3 | import wx.lib.buttons as buttons | |
4 | ||
5 | import images | |
6 | ||
7 | #---------------------------------------------------------------------- | |
8 | ||
9 | class TestPanel(wx.Panel): | |
10 | def __init__(self, parent, log): | |
11 | wx.Panel.__init__(self, parent, -1) | |
12 | self.log = log | |
13 | ##self.SetBackgroundColour("sky blue") | |
14 | ||
15 | sizer = wx.FlexGridSizer(1, 3, 20, 20) | |
16 | ||
17 | # A regular button, selected as the default button | |
18 | b = wx.Button(self, -1, "A real button") | |
19 | b.SetDefault() | |
20 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
21 | sizer.Add(b) | |
22 | ||
23 | # Same thing, but NOT set as the default button | |
24 | b = wx.Button(self, -1, "non-default") | |
25 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
26 | sizer.Add(b) | |
27 | sizer.Add((10,10)) | |
28 | ||
29 | # Plain old text button based off GenButton() | |
30 | b = buttons.GenButton(self, -1, 'Hello') | |
31 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
32 | sizer.Add(b) | |
33 | ||
34 | # Plain old text button, disabled. | |
35 | b = buttons.GenButton(self, -1, 'disabled') | |
36 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
37 | b.Enable(False) | |
38 | sizer.Add(b) | |
39 | ||
40 | # This time, we let the botton be as big as it can be. | |
41 | # Also, this one is fancier, with custom colors and bezel size. | |
42 | b = buttons.GenButton(self, -1, 'bigger') | |
43 | self.Bind(wx.EVT_BUTTON, self.OnBiggerButton, b) | |
44 | b.SetFont(wx.Font(20, wx.SWISS, wx.NORMAL, wx.BOLD, False)) | |
45 | b.SetBezelWidth(5) | |
46 | ###b.SetBestSize() | |
47 | b.SetMinSize(wx.DefaultSize) | |
48 | b.SetBackgroundColour("Navy") | |
49 | b.SetForegroundColour(wx.WHITE) | |
50 | b.SetToolTipString("This is a BIG button...") | |
51 | # let the sizer set best size | |
52 | sizer.Add(b, flag=wx.ADJUST_MINSIZE) | |
53 | ||
54 | # An image button | |
55 | bmp = images.getTest2Bitmap() | |
56 | b = buttons.GenBitmapButton(self, -1, bmp) | |
57 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
58 | sizer.Add(b) | |
59 | ||
60 | # An image button, disabled. | |
61 | bmp = images.getTest2Bitmap() | |
62 | b = buttons.GenBitmapButton(self, -1, bmp) | |
63 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
64 | sizer.Add(b) | |
65 | b.Enable(False) | |
66 | ||
67 | # An image button, using a mask to get rid of the | |
68 | # undesireable part of the image | |
69 | b = buttons.GenBitmapButton(self, -1, None) | |
70 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
71 | bmp = images.getBulb1Bitmap() | |
72 | mask = wx.Mask(bmp, wx.BLUE) | |
73 | bmp.SetMask(mask) | |
74 | b.SetBitmapLabel(bmp) | |
75 | bmp = images.getBulb2Bitmap() | |
76 | mask = wx.Mask(bmp, wx.BLUE) | |
77 | bmp.SetMask(mask) | |
78 | b.SetBitmapSelected(bmp) | |
79 | b.SetBestSize() | |
80 | sizer.Add(b) | |
81 | ||
82 | # A toggle button | |
83 | b = buttons.GenToggleButton(self, -1, "Toggle Button") | |
84 | self.Bind(wx.EVT_BUTTON, self.OnToggleButton, b) | |
85 | sizer.Add(b) | |
86 | ||
87 | # An image toggle button | |
88 | b = buttons.GenBitmapToggleButton(self, -1, None) | |
89 | self.Bind(wx.EVT_BUTTON, self.OnToggleButton, b) | |
90 | bmp = images.getBulb1Bitmap() | |
91 | mask = wx.Mask(bmp, wx.BLUE) | |
92 | bmp.SetMask(mask) | |
93 | b.SetBitmapLabel(bmp) | |
94 | bmp = images.getBulb2Bitmap() | |
95 | mask = wx.Mask(bmp, wx.BLUE) | |
96 | bmp.SetMask(mask) | |
97 | b.SetBitmapSelected(bmp) | |
98 | b.SetToggle(True) | |
99 | b.SetBestSize() | |
100 | sizer.Add(b) | |
101 | ||
102 | # A bitmap button with text. | |
103 | b = buttons.GenBitmapTextButton(self, -1, None, "Bitmapped Text", size = (200, 45)) | |
104 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
105 | bmp = images.getBulb1Bitmap() | |
106 | mask = wx.Mask(bmp, wx.BLUE) | |
107 | bmp.SetMask(mask) | |
108 | b.SetBitmapLabel(bmp) | |
109 | bmp = images.getBulb2Bitmap() | |
110 | mask = wx.Mask(bmp, wx.BLUE) | |
111 | bmp.SetMask(mask) | |
112 | b.SetBitmapSelected(bmp) | |
113 | b.SetUseFocusIndicator(False) | |
114 | b.SetBestSize() | |
115 | sizer.Add(b) | |
116 | ||
117 | ||
118 | # a flat text button | |
119 | b = buttons.GenButton(self, -1, 'Flat buttons too!', style=wx.BORDER_NONE) | |
120 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
121 | sizer.Add(b, flag=wx.ALIGN_CENTER_VERTICAL) | |
122 | ||
123 | # A flat image button | |
124 | bmp = images.getTest2Bitmap() | |
125 | bmp.SetMaskColour("blue") | |
126 | b = buttons.GenBitmapButton(self, -1, bmp, style=wx.BORDER_NONE) | |
127 | self.Bind(wx.EVT_BUTTON, self.OnButton, b) | |
128 | sizer.Add(b) | |
129 | ##b.SetBackgroundColour("sky blue") | |
130 | ##b.SetBackgroundColour("pink") | |
131 | ||
132 | ||
133 | border = wx.BoxSizer(wx.VERTICAL) | |
134 | border.Add(sizer, 0, wx.ALL, 25) | |
135 | self.SetSizer(border) | |
136 | ||
137 | ||
138 | def OnButton(self, event): | |
139 | self.log.WriteText("Button Clicked: %d\n" % event.GetId()) | |
140 | ||
141 | ||
142 | def OnBiggerButton(self, event): | |
143 | self.log.WriteText("Bigger Button Clicked: %d\n" % event.GetId()) | |
144 | b = event.GetEventObject() | |
145 | txt = "big " + b.GetLabel() | |
146 | b.SetLabel(txt) | |
147 | self.GetSizer().Layout() | |
148 | ||
149 | ||
150 | def OnToggleButton(self, event): | |
151 | msg = (event.GetIsDown() and "on") or "off" | |
152 | self.log.WriteText("Button %d Toggled: %s\n" % (event.GetId(), msg)) | |
153 | ||
154 | ||
155 | ||
156 | #---------------------------------------------------------------------- | |
157 | ||
158 | ||
159 | def runTest(frame, nb, log): | |
160 | win = TestPanel(nb, log) | |
161 | return win | |
162 | ||
163 | ||
164 | #---------------------------------------------------------------------- | |
165 | ||
166 | ||
167 | overview = buttons.__doc__ | |
168 | ||
169 | if __name__ == '__main__': | |
170 | import sys,os | |
171 | import run | |
172 | run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:]) | |
173 |