| 1 | [ |
| 2 | ['wx', 'BitmapButton', '-1, wx.Bitmap("image.png")', ''], |
| 3 | ['wx', 'Button', '-1, "normal"', ''], |
| 4 | ['wx', 'Button', '-1, "with a longer, longer label"', ''], |
| 5 | ['wx', 'Button', '-1, "default"', 'w.SetDefault()'], |
| 6 | ['wx', 'Button', '-1, "larger font"', 'w.SetFont(wx.Font(20, wx.SWISS, wx.NORMAL, wx.NORMAL))\n\n\n'], |
| 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', '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()', ''], |
| 14 | ['wx', 'ComboBox', '-1, value="read-only", style=wx.CB_READONLY, choices="read-only one two three four five six seven eight".split()', ''], |
| 15 | ['wx', 'Gauge', '-1, 100', 'w.SetValue(40)'], |
| 16 | ['wx', 'Gauge', '-1, 100, style=wx.GA_VERTICAL', 'w.SetValue(60)'], |
| 17 | ['wx', 'ListBox', '-1, choices="one two three four five six seven eight".split()', ''], |
| 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))'], |
| 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))'], |
| 20 | ['wx', 'Notebook', '', 'p = wx.Panel(w)\np.SetMinSize((150,150))\nw.AddPage(p, "test")\n'], |
| 21 | ['wx', 'Panel', 'size=(150,150)', ''], |
| 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()', ''], |
| 24 | ['wx', 'RadioBox', '-1, "label", choices="one two three four".split()', ''], |
| 25 | ['wx', 'RadioBox', '-1, "label", style=wx.RA_VERTICAL, choices="one two three four".split()', ''], |
| 26 | ['wx', 'RadioButton', '-1, "radio button"', ''], |
| 27 | ['wx', 'ScrollBar', '', ''], |
| 28 | ['wx', 'ScrollBar', 'style=wx.SB_VERTICAL', ''], |
| 29 | ['wx', 'Slider', '-1, 20, 0, 100', ''], |
| 30 | ['wx', 'Slider', '-1, 20, 0, 100, size=(400, -1)', ''], |
| 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)', ''], |
| 33 | ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL', ''], |
| 34 | ['wx', 'Slider', '-1, 20, 0, 100, style=wx.SL_VERTICAL|wx.SL_LABELS', ''], |
| 35 | ['wx', 'SpinButton', 'style=wx.SP_HORIZONTAL', ''], |
| 36 | ['wx', 'SpinButton', 'style=wx.SP_VERTICAL', ''], |
| 37 | ['wx', 'SpinCtrl', '', ''], |
| 38 | ['wx', 'SpinCtrl', 'size=(50, -1)', ''], |
| 39 | ['wx', 'StaticBitmap', '-1, wx.Bitmap("image.png")', ''], |
| 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'], |
| 46 | ['wx', 'StaticText', '-1, "normal"', ''], |
| 47 | ['wx', 'StaticText', '-1, "normal"', 'w.SetLabel("This is a longer label")'], |
| 48 | ['wx', 'TextCtrl', '-1, "default"', ''], |
| 49 | ['wx', 'TextCtrl', '-1, "larger size", size=(200, -1)', ''], |
| 50 | ['wx', 'TextCtrl', '-1, "small", size=(30,-1)', ''], |
| 51 | ['wx', 'TextCtrl', '-1, "some\\ndefault text\\n", size=(200, -1), style=wx.TE_MULTILINE', 'w.AppendText("Here is some more text\\n")'], |
| 52 | ['wx', 'TreeCtrl', '', ''], |
| 53 | ['wx.calendar', 'CalendarCtrl', '-1', ''], |
| 54 | ['wx.calendar', 'CalendarCtrl', '-1, style=wx.calendar.CAL_SEQUENTIAL_MONTH_SELECTION', ''], |
| 55 | ['wx.calendar', 'CalendarCtrl', '-1', 'w.SetFont(wx.Font(12, wx.SWISS, wx.NORMAL, wx.NORMAL))\n'], |
| 56 | ['wx.lib.stattext', 'GenStaticText', '-1, "New font"', 'f = wx.Font(18, wx.SWISS, wx.NORMAL, wx.BOLD)\nw.SetFont(f)\n'], |
| 57 | ['wx.grid', 'Grid', '', 'w.CreateGrid(5,5)\n'], |
| 58 | ['wx.grid', 'Grid', 'size=(400,200)', 'w.CreateGrid(100,50)\n'], |
| 59 | ['wx', 'Button', 'wx.ID_SAVE', ''], |
| 60 | ] |