]> git.saurik.com Git - wxWidgets.git/blame - wxPython/misc/widgetLayoutTest.cfg
move the nodefault option into _defs.i too.
[wxWidgets.git] / wxPython / misc / widgetLayoutTest.cfg
CommitLineData
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()'],
7d9f33e2 6['wx', 'Button', '-1, "larger font"', 'w.SetFont(wx.Font(20, wx.SWISS, wx.NORMAL, wx.NORMAL))\n\n\n'],
8d786745 7['wx', 'CheckBox', '-1, "checkbox"', ''],
2f1189cf 8['wx', 'CheckBox', '-1, "checkbox with longer label"', ''],
a24dc1a8
RD
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()', ''],
2f1189cf
RD
11['wx', 'Choice', '-1, size=(50,-1), choices="one two three four five six seven eight".split()', ''],
12['wx', 'ComboBox', '-1, value="default", choices="one two three four five six seven eight".split()', ''],
13['wx', 'ComboBox', '-1, value="default", size=(75,-1), choices="one two three four five six seven eight".split()', ''],
ab4b69b9 14['wx', 'ComboBox', '-1, value="read-only", style=wx.CB_READONLY, choices="read-only one two three four five six seven eight".split()', ''],
6dc779e8
RD
15['wx', 'Gauge', '-1, 100', 'w.SetValue(40)'],
16['wx', 'Gauge', '-1, 100, style=wx.GA_VERTICAL', 'w.SetValue(60)'],
a24dc1a8 17['wx', 'ListBox', '-1, choices="one two three four five six seven eight".split()', ''],
afacf84f 18['wx', 'ListCtrl', 'style=wx.LC_REPORT', 'w.InsertColumn(0, "Col1")\nw.InsertStringItem(0, "Item 0")\nw.InsertStringItem(0, "Item 1")\n#w.SetSizeHints((200,100))'],
6dc779e8 19['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))'],
df4192e3 20['wx', 'Notebook', '', 'p = wx.Panel(w)\np.SetMinSize((150,150))\nw.AddPage(p, "test")\n'],
0886039f 21['wx', 'Panel', 'size=(150,150)', ''],
2f1189cf
RD
22['wx', 'RadioBox', '-1, "label", majorDimension=2, choices="one two three four five six seven eight".split()', ''],
23['wx', 'RadioBox', '-1, "label", style=wx.RA_VERTICAL, majorDimension=2, choices="one two three four five six seven eight".split()', ''],
0886039f 24['wx', 'RadioBox', '-1, "label", choices="one two three four".split()', ''],
2f1189cf 25['wx', 'RadioBox', '-1, "label", style=wx.RA_VERTICAL, choices="one two three four".split()', ''],
a24dc1a8 26['wx', 'RadioButton', '-1, "radio button"', ''],
0886039f
RD
27['wx', 'ScrollBar', '', ''],
28['wx', 'ScrollBar', 'style=wx.SB_VERTICAL', ''],
a24dc1a8
RD
29['wx', 'Slider', '-1, 20, 0, 100', ''],
30['wx', 'Slider', '-1, 20, 0, 100, size=(400, -1)', ''],
a24dc1a8
RD
31['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS', ''],
32['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS, size=(400,-1)', ''],
0886039f 33['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL', ''],
a24dc1a8 34['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL|wx.SL_LABELS', ''],
0886039f
RD
35['wx', 'SpinButton', 'style=wx.SP_HORIZONTAL', ''],
36['wx', 'SpinButton', 'style=wx.SP_VERTICAL', ''],
37['wx', 'SpinCtrl', '', ''],
8d786745 38['wx', 'SpinCtrl', 'size=(50, -1)', ''],
0886039f 39['wx', 'StaticBitmap', '-1, wx.Bitmap("image.png")', ''],
8d786745
RD
40['wx', 'StaticBox', '-1, "a longer label"', ''],
41['wx', 'StaticBox', '-1, "label"', ''],
42['wx', 'StaticBox', '-1, "with a size", size=(100,75)', ''],
43['wx', 'StaticLine', '-1, size=(-1,100), style=wx.LI_VERTICAL', ''],
44['wx', 'StaticLine', '-1, size=(100,-1), style=wx.LI_HORIZONTAL', ''],
45['wx', 'StaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'],
a24dc1a8 46['wx', 'StaticText', '-1, "normal"', ''],
98c09285 47['wx', 'StaticText', '-1, "normal"', 'w.SetLabel("This is a longer label")'],
0886039f
RD
48['wx', 'TextCtrl', '-1, "default"', ''],
49['wx', 'TextCtrl', '-1, "larger size", size=(200, -1)', ''],
50['wx', 'TextCtrl', '-1, "small", size=(30,-1)', ''],
d58faf6a 51['wx', 'TextCtrl', '-1, "some\\ndefault text\\n", size=(200, -1), style=wx.TE_MULTILINE', 'w.AppendText("Here is some more text\\n")'],
0886039f 52['wx', 'TreeCtrl', '', ''],
8d786745 53['wx.calendar', 'CalendarCtrl', '-1', ''],
2f1189cf 54['wx.calendar', 'CalendarCtrl', '-1, style=wx.calendar.CAL_SEQUENTIAL_MONTH_SELECTION', ''],
a39c03f9 55['wx.calendar', 'CalendarCtrl', '-1', 'w.SetFont(wx.Font(12, wx.SWISS, wx.NORMAL, wx.NORMAL))\n'],
9e70f342 56['wx.lib.stattext', 'GenStaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'],
644dcd57
RD
57['wx.grid', 'Grid', '', 'w.CreateGrid(5,5)\n'],
58['wx.grid', 'Grid', 'size=(400,200)', 'w.CreateGrid(100,50)\n'],
a8d55739 59]