]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/tests/widgets.cfg
added configure check for wcsdup(), there are too many Unix systems without it
[wxWidgets.git] / wxPython / tests / widgets.cfg
... / ...
CommitLineData
1[
2['wx', 'BitmapButton', '-1, wx.Bitmap("image.png")', ''],
3['wx', 'Button', '-1, "default"', 'w.SetDefault()'],
4['wx', 'Button', '-1, "larger font"', 'w.SetFont(wx.Font(20, wx.SWISS, wx.NORMAL, wx.NORMAL))\n\n\n'],
5['wx', 'Button', '-1, "normal"', ''],
6['wx', 'Button', '-1, "with a longer, longer label"', ''],
7['wx', 'Button', 'wx.ID_SAVE', ''],
8['wx', 'CheckBox', '-1, "checkbox with longer label"', ''],
9['wx', 'CheckBox', '-1, "checkbox"', ''],
10['wx', 'CheckListBox', '-1, size=(100,-1), choices="one two three four five six seven eight".split()', ''],
11['wx', 'Choice', '-1, choices="one two three four five six seven eight".split()', ''],
12['wx', 'Choice', '-1, size=(50,-1), choices="one two three four five six seven eight".split()', ''],
13['wx', 'ComboBox', '-1, value="default", choices="one two three four five six seven eight".split()', ''],
14['wx', 'ComboBox', '-1, value="default", size=(75,-1), choices="one two three four five six seven eight".split()', ''],
15['wx', 'ComboBox', '-1, value="read-only", style=wx.CB_READONLY, choices="read-only one two three four five six seven eight".split()', ''],
16['wx', 'Gauge', '-1, 100', 'w.SetValue(40)'],
17['wx', 'Gauge', '-1, 100, style=wx.GA_VERTICAL', 'w.SetValue(60)'],
18['wx', 'ListBox', '-1, choices="one two three four five six seven eight".split()', ''],
19['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))'],
20['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))'],
21['wx', 'Notebook', '', 'p = wx.Panel(w)\np.SetMinSize((150,150))\nw.AddPage(p, "test")\n'],
22['wx', 'Panel', 'size=(150,150)', ''],
23['wx', 'RadioBox', '-1, "label", choices="one two three four".split()', ''],
24['wx', 'RadioBox', '-1, "label", majorDimension=2, choices="one two three four five six seven eight".split()', ''],
25['wx', 'RadioBox', '-1, "label", style=wx.RA_VERTICAL, choices="one two three four".split()', ''],
26['wx', 'RadioBox', '-1, "label", style=wx.RA_VERTICAL, majorDimension=2, choices="one two three four five six seven eight".split()', ''],
27['wx', 'RadioButton', '-1, "radio button"', ''],
28['wx', 'ScrollBar', '', ''],
29['wx', 'ScrollBar', 'style=wx.SB_VERTICAL', ''],
30['wx', 'Slider', '-1, 20, 0, 100', ''],
31['wx', 'Slider', '-1, 20, 0, 100, size=(400, -1)', ''],
32['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS', ''],
33['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_LABELS, size=(400,-1)', ''],
34['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL', ''],
35['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL|wx.SL_LABELS', ''],
36['wx', 'SpinButton', 'style=wx.SP_HORIZONTAL', ''],
37['wx', 'SpinButton', 'style=wx.SP_VERTICAL', ''],
38['wx', 'SpinCtrl', '', ''],
39['wx', 'SpinCtrl', 'size=(50, -1)', ''],
40['wx', 'StaticBitmap', '-1, wx.Bitmap(testImage)', ''],
41['wx', 'StaticBitmap', '-1, wx.Bitmap(testImage), style=wx.SUNKEN_BORDER', ''],
42['wx', 'StaticBox', '-1, "a longer label"', ''],
43['wx', 'StaticBox', '-1, "label"', ''],
44['wx', 'StaticBox', '-1, "with a size", size=(100,75)', ''],
45['wx', 'StaticLine', '-1, size=(-1,100), style=wx.LI_VERTICAL', ''],
46['wx', 'StaticLine', '-1, size=(100,-1), style=wx.LI_HORIZONTAL', ''],
47['wx', 'StaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'],
48['wx', 'StaticText', '-1, "normal"', ''],
49['wx', 'StaticText', '-1, "normal"', 'w.SetLabel("This is a longer label")'],
50['wx', 'TextCtrl', '-1, "default"', ''],
51['wx', 'TextCtrl', '-1, "larger size", size=(200, -1)', ''],
52['wx', 'TextCtrl', '-1, "small", size=(30,-1)', ''],
53['wx', 'TextCtrl', '-1, "some\\ndefault text\\n", size=(200, -1), style=wx.TE_MULTILINE', 'w.AppendText("Here is some more text\\n")'],
54['wx', 'TreeCtrl', '', ''],
55['wx.calendar', 'CalendarCtrl', '-1', ''],
56['wx.calendar', 'CalendarCtrl', '-1', 'w.SetFont(wx.Font(12, wx.SWISS, wx.NORMAL, wx.NORMAL))\n'],
57['wx.calendar', 'CalendarCtrl', '-1, style=wx.calendar.CAL_SEQUENTIAL_MONTH_SELECTION', ''],
58['wx.grid', 'Grid', '', 'w.CreateGrid(5,5)\n'],
59['wx.grid', 'Grid', 'size=(400,200)', 'w.CreateGrid(100,50)\n'],
60['wx.lib.stattext', 'GenStaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'],
61]