]>
Commit | Line | Data |
---|---|---|
a8d55739 | 1 | [ |
0886039f | 2 | ['wx', 'BitmapButton', '-1, wx.Bitmap("image.png")', ''], |
8d786745 | 3 | ['wx', 'Button', '-1, "normal"', ''], |
0886039f | 4 | ['wx', 'Button', '-1, "with a longer, longer label"', ''], |
2f1189cf | 5 | ['wx', 'Button', '-1, "default"', 'w.SetDefault()'], |
8d786745 | 6 | ['wx', 'CheckBox', '-1, "checkbox"', ''], |
2f1189cf | 7 | ['wx', 'CheckBox', '-1, "checkbox with longer label"', ''], |
a24dc1a8 RD |
8 | ['wx', 'CheckListBox', '-1, size=(100,-1), choices="one two three four five six seven eight".split()', ''], |
9 | ['wx', 'Choice', '-1, choices="one two three four five six seven eight".split()', ''], | |
2f1189cf RD |
10 | ['wx', 'Choice', '-1, size=(50,-1), choices="one two three four five six seven eight".split()', ''], |
11 | ['wx', 'ComboBox', '-1, value="default", choices="one two three four five six seven eight".split()', ''], | |
12 | ['wx', 'ComboBox', '-1, value="default", size=(75,-1), choices="one two three four five six seven eight".split()', ''], | |
13 | ['wx', 'ComboBox', '-1, value="read-only", style=wx.CB_READONLY, choices="one two three four five six seven eight".split()', ''], | |
6dc779e8 RD |
14 | ['wx', 'Gauge', '-1, 100', 'w.SetValue(40)'], |
15 | ['wx', 'Gauge', '-1, 100, style=wx.GA_VERTICAL', 'w.SetValue(60)'], | |
a24dc1a8 | 16 | ['wx', 'ListBox', '-1, choices="one two three four five six seven eight".split()', ''], |
6dc779e8 | 17 | ['wx', 'ListCtrl', 'style=wx.LC_REPORT, size=(100,100)', 'w.InsertColumn(0, "Col1")\nw.InsertStringItem(0, "Item 0")\nw.InsertStringItem(0, "Item 1")\n#w.SetSizeHints((200,100))'], |
0886039f RD |
18 | ['wx', 'Notebook', '', 'p = wx.Panel(w)\np.SetSizeHints((150,150))\nw.AddPage(p, "test")\n'], |
19 | ['wx', 'Panel', 'size=(150,150)', ''], | |
2f1189cf RD |
20 | ['wx', 'RadioBox', '-1, "label", majorDimension=2, choices="one two three four five six seven eight".split()', ''], |
21 | ['wx', 'RadioBox', '-1, "label", style=wx.RA_VERTICAL, majorDimension=2, choices="one two three four five six seven eight".split()', ''], | |
0886039f | 22 | ['wx', 'RadioBox', '-1, "label", choices="one two three four".split()', ''], |
2f1189cf | 23 | ['wx', 'RadioBox', '-1, "label", style=wx.RA_VERTICAL, choices="one two three four".split()', ''], |
a24dc1a8 | 24 | ['wx', 'RadioButton', '-1, "radio button"', ''], |
0886039f RD |
25 | ['wx', 'ScrollBar', '', ''], |
26 | ['wx', 'ScrollBar', 'style=wx.SB_VERTICAL', ''], | |
a24dc1a8 RD |
27 | ['wx', 'Slider', '-1, 20, 0, 100', ''], |
28 | ['wx', 'Slider', '-1, 20, 0, 100, size=(400, -1)', ''], | |
a24dc1a8 RD |
29 | ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS', ''], |
30 | ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS, size=(400,-1)', ''], | |
0886039f | 31 | ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL', ''], |
a24dc1a8 | 32 | ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL|wx.SL_LABELS', ''], |
0886039f RD |
33 | ['wx', 'SpinButton', 'style=wx.SP_HORIZONTAL', ''], |
34 | ['wx', 'SpinButton', 'style=wx.SP_VERTICAL', ''], | |
35 | ['wx', 'SpinCtrl', '', ''], | |
8d786745 | 36 | ['wx', 'SpinCtrl', 'size=(50, -1)', ''], |
0886039f | 37 | ['wx', 'StaticBitmap', '-1, wx.Bitmap("image.png")', ''], |
8d786745 RD |
38 | ['wx', 'StaticBox', '-1, "a longer label"', ''], |
39 | ['wx', 'StaticBox', '-1, "label"', ''], | |
40 | ['wx', 'StaticBox', '-1, "with a size", size=(100,75)', ''], | |
41 | ['wx', 'StaticLine', '-1, size=(-1,100), style=wx.LI_VERTICAL', ''], | |
42 | ['wx', 'StaticLine', '-1, size=(100,-1), style=wx.LI_HORIZONTAL', ''], | |
43 | ['wx', 'StaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'], | |
a24dc1a8 | 44 | ['wx', 'StaticText', '-1, "normal"', ''], |
98c09285 | 45 | ['wx', 'StaticText', '-1, "normal"', 'w.SetLabel("This is a longer label")'], |
0886039f RD |
46 | ['wx', 'TextCtrl', '-1, "default"', ''], |
47 | ['wx', 'TextCtrl', '-1, "larger size", size=(200, -1)', ''], | |
48 | ['wx', 'TextCtrl', '-1, "small", size=(30,-1)', ''], | |
d58faf6a | 49 | ['wx', 'TextCtrl', '-1, "some\\ndefault text\\n", size=(200, -1), style=wx.TE_MULTILINE', 'w.AppendText("Here is some more text\\n")'], |
0886039f | 50 | ['wx', 'TreeCtrl', '', ''], |
8d786745 | 51 | ['wx.calendar', 'CalendarCtrl', '-1', ''], |
2f1189cf | 52 | ['wx.calendar', 'CalendarCtrl', '-1, style=wx.calendar.CAL_SEQUENTIAL_MONTH_SELECTION', ''], |
9e70f342 RD |
53 | ['wx.lib.stattext', 'GenStaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'], |
54 | ['wx', 'Button', '-1, "larger font"', 'w.SetFont(wx.Font(20, wx.SWISS, wx.NORMAL, wx.NORMAL))\n##w.SetMinSize(wx.DefaultSize)\n'], | |
a8d55739 | 55 | ] |