]> git.saurik.com Git - wxWidgets.git/blob - wxPython/misc/widgetLayoutTest.cfg
9a1c4d8d07ab471f32c2fa87d54217c238d49b5f
[wxWidgets.git] / wxPython / misc / widgetLayoutTest.cfg
1 [
2 ['wx', 'Button', '-1, "normal"'],
3 ['wx', 'Button', '-1, "with a longer, longer label"'],
4 ['wx', 'Button', '-1, "sized", size=(200,100)'],
5 ['wx', 'CheckBox', '-1, "checkbox"'],
6 ['wx', 'CheckBox', '-1, "checkbox with longer label"'],
7 ['wx', 'TextCtrl', '-1, "default"'],
8 ['wx', 'TextCtrl', '-1, "small", size=(30,-1)'],
9 ['wx', 'TextCtrl', '-1, "larger size", size=(200, -1)'],
10 ['wx', 'BitmapButton', '-1, wx.Bitmap("image.png")'],
11 ['wx', 'StaticBitmap', '-1, wx.Bitmap("image.png")'],
12 ['wx.calendar', 'CalendarCtrl', '-1'],
13 ['wx', 'CheckListBox', '-1, choices="one two three four five six seven eight".split()'],
14 ['wx', 'Choice', '-1, choices="one two three four five six seven eight".split()'],
15 ['wx', 'ComboBox', '-1, choices="one two three four five six seven eight".split(), value="default"'],
16 ['wx', 'Gauge', '-1, 100'],
17 ['wx', 'Gauge', '-1, 100, style=wx.GA_VERTICAL'],
18 ['wx', 'ListBox', '-1, choices="one two three four five six seven eight".split()'],
19 ['wx', 'ListCtrl', ''],
20 ['wx', 'TreeCtrl', ''],
21 ['wx', 'ScrollBar', ''],
22 ['wx', 'ScrollBar', 'style=wx.SB_VERTICAL'],
23 ['wx', 'SpinButton', ''],
24 ['wx', 'SpinButton', 'style=wx.SP_VERTICAL'],
25 ['wx', 'SpinCtrl', ''],
26 ['wx', 'StaticText', '-1, "static text"'],
27 ['wx', 'RadioBox', '-1, "label", choices="one two three four".split()'],
28 ['wx', 'RadioBox', '-1, "label", choices="one two three four".split(), style=wx.RA_VERTICAL'],
29 ['wx', 'RadioBox', '-1, "label", choices="one two three four five six seven eight".split(), majorDimension=2'],
30 ['wx', 'RadioBox', '-1, "label", choices="one two three four five six seven eight".split(), style=wx.RA_VERTICAL, majorDimension=2'],
31 ['wx', 'RadioButton', '-1, "radio button"'],
32 ['wx', 'Slider', '-1, 20, 0, 100'],
33 ['wx', 'Slider', '-1, 20, 0, 100, size=(400, -1)'],
34 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL'],
35 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS'],
36 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS, size=(400,-1)'],
37 ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL|wx.SL_LABELS'],
38 ]