]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/GenericButtons.py
2 from wxPython
.wx
import *
3 from wxPython
.lib
.buttons
import *
6 #----------------------------------------------------------------------
9 class TestPanel(wxPanel
):
10 def __init__(self
, parent
, log
):
11 wxPanel
.__init
__(self
, parent
, -1)
14 b
= wxButton(self
, -1, "A real button", (10,10))
16 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
17 b
= wxButton(self
, -1, "non-default", (140, 10))
18 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
19 #wxTextCtrl(self, -1, "", (10,40))
21 b
= wxGenButton(self
, -1, 'Hello', (10,65))
22 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
23 b
= wxGenButton(self
, -1, 'disabled', (140,65))
24 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
27 b
= wxGenButton(self
, -1, 'bigger', (250,50))
28 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
29 b
.SetFont(wxFont(20, wxSWISS
, wxNORMAL
, wxBOLD
, false
))
32 b
.SetBackgroundColour(wxNamedColour("Navy"))
33 b
.SetForegroundColour(wxWHITE
)
34 #b.SetUseFocusIndicator(false)
35 b
.SetToolTipString("This is a BIG button...")
37 bmp
= images
.getTest2Bitmap()
38 b
= wxGenBitmapButton(self
, -1, bmp
, (10, 130))
39 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
42 b
= wxGenBitmapButton(self
, -1, None, (140, 130))
43 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
44 bmp
= images
.getBulb1Bitmap()
45 mask
= wxMaskColour(bmp
, wxBLUE
)
48 bmp
= images
.getBulb2Bitmap()
49 mask
= wxMaskColour(bmp
, wxBLUE
)
51 b
.SetBitmapSelected(bmp
)
54 b
= wxGenToggleButton(self
, -1, "Toggle Button", (10, 230))
55 EVT_BUTTON(self
, b
.GetId(), self
.OnToggleButton
)
58 b
= wxGenBitmapToggleButton(self
, -1, None, (140, 230))
59 EVT_BUTTON(self
, b
.GetId(), self
.OnToggleButton
)
60 bmp
= images
.getBulb1Bitmap()
61 mask
= wxMaskColour(bmp
, wxBLUE
)
64 bmp
= images
.getBulb2Bitmap()
65 mask
= wxMaskColour(bmp
, wxBLUE
)
67 b
.SetBitmapSelected(bmp
)
71 b
= wxGenBitmapTextButton(self
, -1, None, "Bitmapped Text", (220, 230), size
= (200, 45))
72 EVT_BUTTON(self
, b
.GetId(), self
.OnButton
)
73 bmp
= images
.getBulb1Bitmap()
74 mask
= wxMaskColour(bmp
, wxBLUE
)
77 bmp
= images
.getBulb2Bitmap()
78 mask
= wxMaskColour(bmp
, wxBLUE
)
80 b
.SetBitmapSelected(bmp
)
81 b
.SetUseFocusIndicator(false
)
85 def OnButton(self
, event
):
86 self
.log
.WriteText("Button Clicked: %d\n" % event
.GetId())
88 def OnToggleButton(self
, event
):
89 msg
= (event
.GetIsDown() and "on") or "off"
90 self
.log
.WriteText("Button %d Toggled: %s\n" % (event
.GetId(), msg
))
94 #----------------------------------------------------------------------
97 def runTest(frame
, nb
, log
):
98 win
= TestPanel(nb
, log
)
102 #----------------------------------------------------------------------
105 import wxPython
.lib
.buttons
106 overview
= wxPython
.lib
.buttons
.__doc
__