]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/demo/wxRadioBox.py
added font encoding support
[wxWidgets.git] / utils / wxPython / demo / wxRadioBox.py
CommitLineData
cf694132
RD
1
2from wxPython.wx import *
3
4#---------------------------------------------------------------------------
5
6class TestRadioButtons(wxPanel):
7 def __init__(self, parent, log):
8 self.log = log
9 wxPanel.__init__(self, parent, -1)
10
11 sampleList = ['zero', 'one', 'two', 'three', 'four', 'five',
12 'six', 'seven', 'eight']
13
14 rb = wxRadioBox(self, 30, "wxRadioBox", wxPoint(35, 30), wxDefaultSize,
8bf5d46e
RD
15 sampleList, 3, wxRA_SPECIFY_COLS)
16 EVT_RADIOBOX(self, 30, self.EvtRadioBox)
17
18
f0261a72 19 rb = wxRadioBox(self, 30, "", wxPoint(35, 120), wxDefaultSize,
cf694132
RD
20 sampleList, 3, wxRA_SPECIFY_COLS | wxNO_BORDER)
21 EVT_RADIOBOX(self, 30, self.EvtRadioBox)
22
23
24 def EvtRadioBox(self, event):
25 self.log.WriteText('EvtRadioBox: %d\n' % event.GetInt())
26
27#---------------------------------------------------------------------------
28
29def runTest(frame, nb, log):
30 win = TestRadioButtons(nb, log)
31 return win
32
33#---------------------------------------------------------------------------
34
35
36
37
38
39
40
41
42
43
44
45overview = """\
46A radio box item is used to select one of number of mutually exclusive choices. It is displayed as a vertical column or horizontal row of labelled buttons.
47
48wxRadioBox()
49----------------------
50
51Default constructor.
52
53wxRadioBox(wxWindow* parent, wxWindowID id, const wxString& label, const wxPoint& point = wxDefaultPosition, const wxSize& size = wxDefaultSize, int n = 0, const wxString choices[] = NULL, int majorDimension = 0, long style = wxRA_SPECIFY_COLS, const wxValidator& validator = wxDefaultValidator, const wxString& name = "radioBox")
54
55Constructor, creating and showing a radiobox.
56
57Parameters
58-------------------
59
60parent = Parent window. Must not be NULL.
61
62id = Window identifier. A value of -1 indicates a default value.
63
64label = Label for the static box surrounding the radio buttons.
65
66pos = Window position. If the position (-1, -1) is specified then a default position is chosen.
67
68size = Window size. If the default size (-1, -1) is specified then a default size is chosen.
69
70n = Number of choices with which to initialize the radiobox.
71
72choices = An array of choices with which to initialize the radiobox.
73
74majorDimension = Specifies the maximum number of rows (if style contains wxRA_SPECIFY_ROWS) or columns (if style contains wxRA_SPECIFY_COLS) for a two-dimensional radiobox.
75
76style = Window style. See wxRadioBox.
77
78validator = Window validator.
79
80name = Window name.
81"""