]> git.saurik.com Git - wxWidgets.git/blob - wxPython/misc/widgetLayoutTest.cfg
Sorted and added StaticBox, StaticLine
[wxWidgets.git] / wxPython / misc / widgetLayoutTest.cfg
1 [
2 ['wx', 'BitmapButton', '-1, wx.Bitmap("image.png")', ''],
3 ['wx', 'Button', '-1, "normal"', ''],
4 ['wx', 'Button', '-1, "sized", size=(200,100)', ''],
5 ['wx', 'Button', '-1, "with a longer, longer label"', ''],
6 ['wx.calendar', 'CalendarCtrl', '-1', ''],
7 ['wx', 'CheckBox', '-1, "checkbox"', ''],
8 ['wx', 'CheckBox', '-1, "checkbox with longer label"', ''],
9 ['wx', 'CheckListBox', '-1, size=(100,-1), choices="one two three four five six seven eight".split()', ''],
10 ['wx', 'Choice', '-1, choices="one two three four five six seven eight".split()', ''],
11 ['wx', 'ComboBox', '-1, choices="one two three four five six seven eight".split(), value="default"', ''],
12 ['wx', 'Gauge', '-1, 100', ''],
13 ['wx', 'Gauge', '-1, 100, style=wx.GA_VERTICAL', ''],
14 ['wx', 'ListBox', '-1, choices="one two three four five six seven eight".split()', ''],
15 ['wx', 'ListCtrl', '', ''],
16 ['wx', 'Notebook', '', 'p = wx.Panel(w)\np.SetSizeHints((150,150))\nw.AddPage(p, "test")\n'],
17 ['wx', 'Panel', 'size=(150,150)', ''],
18 ['wx', 'RadioBox', '-1, "label", choices="one two three four five six seven eight".split(), majorDimension=2', ''],
19 ['wx', 'RadioBox', '-1, "label", choices="one two three four five six seven eight".split(), style=wx.RA_VERTICAL, majorDimension=2', ''],
20 ['wx', 'RadioBox', '-1, "label", choices="one two three four".split()', ''],
21 ['wx', 'RadioBox', '-1, "label", choices="one two three four".split(), style=wx.RA_VERTICAL', ''],
22 ['wx', 'RadioButton', '-1, "radio button"', ''],
23 ['wx', 'ScrollBar', '', ''],
24 ['wx', 'ScrollBar', 'style=wx.SB_VERTICAL', ''],
25 ['wx', 'Slider', '-1, 20, 0, 100', ''],
26 ['wx', 'Slider', '-1, 20, 0, 100, size=(400, -1)', ''],
27 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS', ''],
28 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS, size=(400,-1)', ''],
29 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL', ''],
30 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL|wx.SL_LABELS', ''],
31 ['wx', 'SpinButton', 'style=wx.SP_HORIZONTAL', ''],
32 ['wx', 'SpinButton', 'style=wx.SP_VERTICAL', ''],
33 ['wx', 'SpinCtrl', '', ''],
34 ['wx', 'StaticBitmap', '-1, wx.Bitmap("image.png")', ''],
35 ['wx', 'StaticText', '-1, "normal"', ''],
36 ['wx', 'StaticText', '-1, "normal"', 'w.SetLabel("This is a longer label")'],
37 ['wx', 'StaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'],
38 ['wx', 'TextCtrl', '-1, "default"', ''],
39 ['wx', 'TextCtrl', '-1, "larger size", size=(200, -1)', ''],
40 ['wx', 'TextCtrl', '-1, "small", size=(30,-1)', ''],
41 ['wx', 'TreeCtrl', '', ''],
42 ['wx', 'StaticBox', '-1, "label"', ''],
43 ['wx', 'StaticBox', '-1, "a longer label"', ''],
44 ['wx', 'StaticBox', '-1, "with a size", size=(100,75)', ''],
45 ['wx', 'StaticLine', '-1, size=(100,-1), style=wx.LI_HORIZONTAL', ''],
46 ['wx', 'StaticLine', '-1, size=(-1,100), style=wx.LI_VERTICAL', ''],
47 ]