]> git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/PyCrust/wxd/Controls.py
1d1fad0210ef9d9444fdf62ad5af67fd1278af72
[wxWidgets.git] / wxPython / wxPython / lib / PyCrust / wxd / Controls.py
1 """Decorator classes for documentation and shell scripting.
2 """
3
4 __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
5 __cvsid__ = "$Id$"
6 __revision__ = "$Revision$"[11:-2]
7
8
9 # These are not the real wxPython classes. These are Python versions
10 # for documentation purposes. They are also used to apply docstrings
11 # to the real wxPython classes, which are SWIG-generated wrappers for
12 # C-language classes.
13
14
15 from Base import Object
16 import Parameters as wx
17 from Window import Window
18
19 try:
20 True
21 except NameError:
22 True = 1==1
23 False = 1==0
24
25
26 class Control(Window):
27 """Base class for a control or 'widget'.
28
29 A control is generally a small window which processes user input
30 and/or displays one or more item of data."""
31
32 def __init__(self, parent, id, pos=wx.DefaultPosition,
33 size=wx.DefaultSize, style=0,
34 validator=wx.DefaultValidator, name='control'):
35 """Create a Control instance."""
36 pass
37
38 def Command(self, event):
39 """Simulates the effect of the user issuing a command to the
40 item. See CommandEvent."""
41 pass
42
43 def Create(self, parent, id, pos=wx.DefaultPosition,
44 size=wx.DefaultSize, style=0,
45 validator=wx.DefaultValidator, name='control'):
46 """Create a Control instance."""
47 pass
48
49 def GetLabel(self):
50 """Return the string label for the control."""
51 pass
52
53 def SetLabel(self, label):
54 """Set the string label for the control."""
55 pass
56
57
58 class PyControl(Control):
59 """"""
60
61 def __init__(self):
62 """"""
63 pass
64
65 def _setCallbackInfo(self):
66 """"""
67 pass
68
69 def base_AcceptsFocus(self):
70 """"""
71 pass
72
73 def base_AcceptsFocusFromKeyboard(self):
74 """"""
75 pass
76
77 def base_AddChild(self):
78 """"""
79 pass
80
81 def base_DoGetBestSize(self):
82 """"""
83 pass
84
85 def base_DoGetClientSize(self):
86 """"""
87 pass
88
89 def base_DoGetPosition(self):
90 """"""
91 pass
92
93 def base_DoGetSize(self):
94 """"""
95 pass
96
97 def base_DoGetVirtualSize(self):
98 """"""
99 pass
100
101 def base_DoMoveWindow(self):
102 """"""
103 pass
104
105 def base_DoSetClientSize(self):
106 """"""
107 pass
108
109 def base_DoSetSize(self):
110 """"""
111 pass
112
113 def base_DoSetVirtualSize(self):
114 """"""
115 pass
116
117 def base_GetMaxSize(self):
118 """"""
119 pass
120
121 def base_InitDialog(self):
122 """"""
123 pass
124
125 def base_RemoveChild(self):
126 """"""
127 pass
128
129 def base_TransferDataFromWindow(self):
130 """"""
131 pass
132
133 def base_TransferDataToWindow(self):
134 """"""
135 pass
136
137 def base_Validate(self):
138 """"""
139 pass
140
141
142 class ControlWithItems(Control):
143 """"""
144
145 def Append(self):
146 """"""
147 pass
148
149 def AppendItems(self):
150 """"""
151 pass
152
153 def Delete(self):
154 """"""
155 pass
156
157 def FindString(self):
158 """"""
159 pass
160
161 def GetClientData(self):
162 """"""
163 pass
164
165 def GetCount(self):
166 """"""
167 pass
168
169 def GetSelection(self):
170 """"""
171 pass
172
173 def GetString(self):
174 """"""
175 pass
176
177 def GetStringSelection(self):
178 """"""
179 pass
180
181 def Number(self):
182 """"""
183 pass
184
185 def Select(self):
186 """"""
187 pass
188
189 def SetClientData(self):
190 """"""
191 pass
192
193 def SetString(self):
194 """"""
195 pass
196
197 def __init__(self):
198 """"""
199 pass
200
201
202 class Button(Control):
203 """A button is a control that contains a text string, and is one
204 of the most common elements of a GUI. It may be placed on a
205 dialog box or panel, or indeed almost any other window.
206
207 Styles
208 ------
209
210 BU_LEFT: Left-justifies the label. WIN32 only.
211
212 BU_TOP: Aligns the label to the top of the button. WIN32 only.
213
214 BU_RIGHT: Right-justifies the bitmap label. WIN32 only.
215
216 BU_BOTTOM: Aligns the label to the bottom of the button. WIN32
217 only.
218
219 BU_EXACTFIT: Creates the button as small as possible instead of
220 making it of the standard size (which is the default behaviour.)
221
222 Events
223 ------
224
225 EVT_BUTTON(win,id,func): Sent when the button is clicked."""
226
227 def __init__(self, parent, id, label, pos=wx.DefaultPosition,
228 size=wx.DefaultSize, style=0,
229 validator=wx.DefaultValidator, name='button'):
230 """Create and show a button.
231
232 parent: Parent window. Must not be None.
233 id: Button identifier. A value of -1 indicates a default value.
234 label: The text to be displayed on the button.
235 pos: The button position on it's parent.
236 size: Button size. If the default size (-1, -1) is specified
237 then the button is sized appropriately for the text.
238 style: Window style. See Button.
239 validator: Window validator.
240 name: Window name."""
241 pass
242
243 def Create(self, parent, id, label, pos=wx.DefaultPosition,
244 size=wx.DefaultSize, style=0,
245 validator=wx.DefaultValidator, name='button'):
246 """Create and show a button."""
247 pass
248
249 def SetBackgroundColour(self):
250 """"""
251 pass
252
253 def SetDefault(self):
254 """Set the button to be the default item for the panel or
255 dialog box.
256
257 Under Windows, only dialog box buttons respond to this
258 function. As normal under Windows and Motif, pressing return
259 causes the default button to be depressed when the return key
260 is pressed. See also Window.SetFocus which sets the keyboard
261 focus for windows and text panel items, and
262 Panel.SetDefaultItem."""
263 pass
264
265 def SetForegroundColour(self):
266 """"""
267 pass
268
269
270 class BitmapButton(Button):
271 """"""
272
273 def Create(self):
274 """"""
275 pass
276
277 def GetBitmapDisabled(self):
278 """"""
279 pass
280
281 def GetBitmapFocus(self):
282 """"""
283 pass
284
285 def GetBitmapLabel(self):
286 """"""
287 pass
288
289 def GetBitmapSelected(self):
290 """"""
291 pass
292
293 def GetMarginX(self):
294 """"""
295 pass
296
297 def GetMarginY(self):
298 """"""
299 pass
300
301 def SetBitmapDisabled(self):
302 """"""
303 pass
304
305 def SetBitmapFocus(self):
306 """"""
307 pass
308
309 def SetBitmapLabel(self):
310 """"""
311 pass
312
313 def SetBitmapSelected(self):
314 """"""
315 pass
316
317 def SetMargins(self):
318 """"""
319 pass
320
321 def __init__(self):
322 """"""
323 pass
324
325
326 class CheckBox(Control):
327 """"""
328
329 def __init__(self):
330 """"""
331 pass
332
333 def Create(self):
334 """"""
335 pass
336
337 def GetValue(self):
338 """"""
339 pass
340
341 def IsChecked(self):
342 """"""
343 pass
344
345 def SetValue(self):
346 """"""
347 pass
348
349
350 class Choice(ControlWithItems):
351 """"""
352
353 def __init__(self):
354 """"""
355 pass
356
357 def Clear(self):
358 """"""
359 pass
360
361 def Create(self):
362 """"""
363 pass
364
365 def GetColumns(self):
366 """"""
367 pass
368
369 def Select(self):
370 """"""
371 pass
372
373 def SetColumns(self):
374 """"""
375 pass
376
377 def SetSelection(self):
378 """"""
379 pass
380
381 def SetString(self):
382 """"""
383 pass
384
385 def SetStringSelection(self):
386 """"""
387 pass
388
389
390 class Gauge(Control):
391 """"""
392
393 def Create(self):
394 """"""
395 pass
396
397 def GetBezelFace(self):
398 """"""
399 pass
400
401 def GetRange(self):
402 """"""
403 pass
404
405 def GetShadowWidth(self):
406 """"""
407 pass
408
409 def GetValue(self):
410 """"""
411 pass
412
413 def SetBezelFace(self):
414 """"""
415 pass
416
417 def SetRange(self):
418 """"""
419 pass
420
421 def SetShadowWidth(self):
422 """"""
423 pass
424
425 def SetValue(self):
426 """"""
427 pass
428
429 def __init__(self):
430 """"""
431 pass
432
433
434 class GenericDirCtrl(Control):
435 """"""
436
437 def Create(self):
438 """"""
439 pass
440
441 def ExpandPath(self):
442 """"""
443 pass
444
445 def GetDefaultPath(self):
446 """"""
447 pass
448
449 def GetFilePath(self):
450 """"""
451 pass
452
453 def GetFilter(self):
454 """"""
455 pass
456
457 def GetFilterIndex(self):
458 """"""
459 pass
460
461 def GetFilterListCtrl(self):
462 """"""
463 pass
464
465 def GetPath(self):
466 """"""
467 pass
468
469 def GetRootId(self):
470 """"""
471 pass
472
473 def GetShowHidden(self):
474 """"""
475 pass
476
477 def GetTreeCtrl(self):
478 """"""
479 pass
480
481 def SetDefaultPath(self):
482 """"""
483 pass
484
485 def SetFilter(self):
486 """"""
487 pass
488
489 def SetFilterIndex(self):
490 """"""
491 pass
492
493 def SetPath(self):
494 """"""
495 pass
496
497 def ShowHidden(self):
498 """"""
499 pass
500
501 def __init__(self):
502 """"""
503 pass
504
505
506 class ListBox(ControlWithItems):
507 """"""
508
509 def Clear(self):
510 """"""
511 pass
512
513 def Create(self):
514 """"""
515 pass
516
517 def Deselect(self):
518 """"""
519 pass
520
521 def GetSelections(self):
522 """"""
523 pass
524
525 def InsertItems(self):
526 """"""
527 pass
528
529 def IsSelected(self):
530 """"""
531 pass
532
533 def Selected(self):
534 """"""
535 pass
536
537 def Set(self):
538 """"""
539 pass
540
541 def SetFirstItem(self):
542 """"""
543 pass
544
545 def SetFirstItemStr(self):
546 """"""
547 pass
548
549 def SetSelection(self):
550 """"""
551 pass
552
553 def SetString(self):
554 """"""
555 pass
556
557 def SetStringSelection(self):
558 """"""
559 pass
560
561 def __init__(self):
562 """"""
563 pass
564
565
566 class CheckListBox(ListBox):
567 """"""
568
569 def __init__(self):
570 """"""
571 pass
572
573 def Check(self):
574 """"""
575 pass
576
577 def Create(self):
578 """"""
579 pass
580
581 def GetItemHeight(self):
582 """"""
583 pass
584
585 def HitTest(self):
586 """"""
587 pass
588
589 def HitTestXY(self):
590 """"""
591 pass
592
593 def InsertItems(self):
594 """"""
595 pass
596
597 def IsChecked(self):
598 """"""
599 pass
600
601
602 class ListCtrl(Control):
603 """"""
604
605 def Append(self):
606 """"""
607 pass
608
609 def Arrange(self):
610 """"""
611 pass
612
613 def AssignImageList(self):
614 """"""
615 pass
616
617 def ClearAll(self):
618 """"""
619 pass
620
621 def ClearColumnImage(self):
622 """"""
623 pass
624
625 def Create(self):
626 """"""
627 pass
628
629 def DeleteAllColumns(self):
630 """"""
631 pass
632
633 def DeleteAllItems(self):
634 """"""
635 pass
636
637 def DeleteColumn(self):
638 """"""
639 pass
640
641 def DeleteItem(self):
642 """"""
643 pass
644
645 def EnsureVisible(self):
646 """"""
647 pass
648
649 def FindItem(self):
650 """"""
651 pass
652
653 def FindItemAtPos(self):
654 """"""
655 pass
656
657 def FindItemData(self):
658 """"""
659 pass
660
661 def Focus(self):
662 """"""
663 pass
664
665 def GetColumn(self):
666 """"""
667 pass
668
669 def GetColumnCount(self):
670 """"""
671 pass
672
673 def GetColumnWidth(self):
674 """"""
675 pass
676
677 def GetCountPerPage(self):
678 """"""
679 pass
680
681 def GetFirstSelected(self):
682 """"""
683 pass
684
685 def GetFocusedItem(self):
686 """"""
687 pass
688
689 def GetImageList(self):
690 """"""
691 pass
692
693 def GetItem(self):
694 """"""
695 pass
696
697 def GetItemBackgroundColour(self):
698 """"""
699 pass
700
701 def GetItemCount(self):
702 """"""
703 pass
704
705 def GetItemData(self):
706 """"""
707 pass
708
709 def GetItemPosition(self):
710 """"""
711 pass
712
713 def GetItemRect(self):
714 """"""
715 pass
716
717 def GetItemSpacing(self):
718 """"""
719 pass
720
721 def GetItemState(self):
722 """"""
723 pass
724
725 def GetItemText(self):
726 """"""
727 pass
728
729 def GetItemTextColour(self):
730 """"""
731 pass
732
733 def GetMainWindow(self):
734 """"""
735 pass
736
737 def GetNextItem(self):
738 """"""
739 pass
740
741 def GetNextSelected(self):
742 """"""
743 pass
744
745 def GetSelectedItemCount(self):
746 """"""
747 pass
748
749 def GetTextColour(self):
750 """"""
751 pass
752
753 def GetTopItem(self):
754 """"""
755 pass
756
757 def HitTest(self):
758 """"""
759 pass
760
761 def InsertColumn(self):
762 """"""
763 pass
764
765 def InsertColumnInfo(self):
766 """"""
767 pass
768
769 def InsertImageItem(self):
770 """"""
771 pass
772
773 def InsertImageStringItem(self):
774 """"""
775 pass
776
777 def InsertItem(self):
778 """"""
779 pass
780
781 def InsertStringItem(self):
782 """"""
783 pass
784
785 def IsSelected(self):
786 """"""
787 pass
788
789 def IsVirtual(self):
790 """"""
791 pass
792
793 def RefreshItem(self):
794 """"""
795 pass
796
797 def RefreshItems(self):
798 """"""
799 pass
800
801 def ScrollList(self):
802 """"""
803 pass
804
805 def Select(self):
806 """"""
807 pass
808
809 def SetBackgroundColour(self):
810 """"""
811 pass
812
813 def SetColumn(self):
814 """"""
815 pass
816
817 def SetColumnImage(self):
818 """"""
819 pass
820
821 def SetColumnWidth(self):
822 """"""
823 pass
824
825 def SetForegroundColour(self):
826 """"""
827 pass
828
829 def SetImageList(self):
830 """"""
831 pass
832
833 def SetItem(self):
834 """"""
835 pass
836
837 def SetItemBackgroundColour(self):
838 """"""
839 pass
840
841 def SetItemCount(self):
842 """"""
843 pass
844
845 def SetItemData(self):
846 """"""
847 pass
848
849 def SetItemImage(self):
850 """"""
851 pass
852
853 def SetItemPosition(self):
854 """"""
855 pass
856
857 def SetItemState(self):
858 """"""
859 pass
860
861 def SetItemText(self):
862 """"""
863 pass
864
865 def SetItemTextColour(self):
866 """"""
867 pass
868
869 def SetSingleStyle(self):
870 """"""
871 pass
872
873 def SetStringItem(self):
874 """"""
875 pass
876
877 def SetTextColour(self):
878 """"""
879 pass
880
881 def SetWindowStyleFlag(self):
882 """"""
883 pass
884
885 def SortItems(self):
886 """"""
887 pass
888
889 def __init__(self):
890 """"""
891 pass
892
893 def _setCallbackInfo(self):
894 """"""
895 pass
896
897
898 class ListItem(Object):
899 """"""
900
901 def Clear(self):
902 """"""
903 pass
904
905 def ClearAttributes(self):
906 """"""
907 pass
908
909 def GetAlign(self):
910 """"""
911 pass
912
913 def GetAttributes(self):
914 """"""
915 pass
916
917 def GetBackgroundColour(self):
918 """"""
919 pass
920
921 def GetColumn(self):
922 """"""
923 pass
924
925 def GetData(self):
926 """"""
927 pass
928
929 def GetFont(self):
930 """"""
931 pass
932
933 def GetId(self):
934 """"""
935 pass
936
937 def GetImage(self):
938 """"""
939 pass
940
941 def GetMask(self):
942 """"""
943 pass
944
945 def GetState(self):
946 """"""
947 pass
948
949 def GetText(self):
950 """"""
951 pass
952
953 def GetTextColour(self):
954 """"""
955 pass
956
957 def GetWidth(self):
958 """"""
959 pass
960
961 def HasAttributes(self):
962 """"""
963 pass
964
965 def SetAlign(self):
966 """"""
967 pass
968
969 def SetBackgroundColour(self):
970 """"""
971 pass
972
973 def SetColumn(self):
974 """"""
975 pass
976
977 def SetData(self):
978 """"""
979 pass
980
981 def SetFont(self):
982 """"""
983 pass
984
985 def SetId(self):
986 """"""
987 pass
988
989 def SetImage(self):
990 """"""
991 pass
992
993 def SetMask(self):
994 """"""
995 pass
996
997 def SetState(self):
998 """"""
999 pass
1000
1001 def SetStateMask(self):
1002 """"""
1003 pass
1004
1005 def SetText(self):
1006 """"""
1007 pass
1008
1009 def SetTextColour(self):
1010 """"""
1011 pass
1012
1013 def SetWidth(self):
1014 """"""
1015 pass
1016
1017 def __del__(self):
1018 """"""
1019 pass
1020
1021 def __getattr__(self):
1022 """"""
1023 pass
1024
1025 def __init__(self):
1026 """"""
1027 pass
1028
1029 def __setattr__(self):
1030 """"""
1031 pass
1032
1033
1034 class ListItemAttr:
1035 """"""
1036
1037 def GetBackgroundColour(self):
1038 """"""
1039 pass
1040
1041 def GetFont(self):
1042 """"""
1043 pass
1044
1045 def GetTextColour(self):
1046 """"""
1047 pass
1048
1049 def HasBackgroundColour(self):
1050 """"""
1051 pass
1052
1053 def HasFont(self):
1054 """"""
1055 pass
1056
1057 def HasTextColour(self):
1058 """"""
1059 pass
1060
1061 def SetBackgroundColour(self):
1062 """"""
1063 pass
1064
1065 def SetFont(self):
1066 """"""
1067 pass
1068
1069 def SetTextColour(self):
1070 """"""
1071 pass
1072
1073 def __init__(self):
1074 """"""
1075 pass
1076
1077
1078 class ListView(ListCtrl):
1079 """"""
1080
1081 def ClearColumnImage(self):
1082 """"""
1083 pass
1084
1085 def Create(self):
1086 """"""
1087 pass
1088
1089 def Focus(self):
1090 """"""
1091 pass
1092
1093 def GetFirstSelected(self):
1094 """"""
1095 pass
1096
1097 def GetFocusedItem(self):
1098 """"""
1099 pass
1100
1101 def GetNextSelected(self):
1102 """"""
1103 pass
1104
1105 def IsSelected(self):
1106 """"""
1107 pass
1108
1109 def Select(self):
1110 """"""
1111 pass
1112
1113 def SetColumnImage(self):
1114 """"""
1115 pass
1116
1117 def __init__(self):
1118 """"""
1119 pass
1120
1121
1122 class Notebook(Control):
1123
1124 def __init__(self, parent, id, pos=wx.DefaultPosition,
1125 size=wx.DefaultSize, style=0, name=wx.PyNOTEBOOK_NAME):
1126 """"""
1127 pass
1128
1129 def AddPage(self, pPage, strText, bSelect=False, imageId=-1):
1130 """"""
1131 pass
1132
1133 def AdvanceSelection(self, bForward=True):
1134 """"""
1135 pass
1136
1137 def AssignImageList(self, imageList) :
1138 """"""
1139 pass
1140
1141 def Create(self, parent, id, pos=wx.DefaultPosition,
1142 size=wx.DefaultSize, style=0, name=wx.PyNOTEBOOK_NAME):
1143 """"""
1144 pass
1145
1146 def DeleteAllPages(self):
1147 """"""
1148 pass
1149
1150 def DeletePage(self, nPage):
1151 """"""
1152 pass
1153
1154 def GetImageList(self):
1155 """"""
1156 pass
1157
1158 def GetPage(self, nPage):
1159 """"""
1160 pass
1161
1162 def GetPageCount(self):
1163 """"""
1164 pass
1165
1166 def GetPageImage(self, nPage):
1167 """"""
1168 pass
1169
1170 def GetPageText(self, nPage):
1171 """"""
1172 pass
1173
1174 def GetRowCount(self):
1175 """"""
1176 pass
1177
1178 def GetSelection(self):
1179 """"""
1180 pass
1181
1182 def InsertPage(self, nPage, pPage, strText, bSelect=False, imageId=-1):
1183 """"""
1184 pass
1185
1186 def RemovePage(self, nPage):
1187 """"""
1188 pass
1189
1190 def ResizeChildren(self):
1191 """"""
1192 pass
1193
1194 def SetImageList(self, imageList):
1195 """"""
1196 pass
1197
1198 def SetPadding(self, padding):
1199 """"""
1200 pass
1201
1202 def SetPageImage(self, nPage, nImage):
1203 """"""
1204 pass
1205
1206 def SetPageSize(self, size):
1207 """"""
1208 pass
1209
1210 def SetPageText(self, nPage, strText):
1211 """"""
1212 pass
1213
1214 def SetSelection(self, nPage):
1215 """"""
1216 pass
1217
1218
1219 class RadioBox(Control):
1220 """"""
1221
1222 def Create(self):
1223 """"""
1224 pass
1225
1226 def Enable(self):
1227 """"""
1228 pass
1229
1230 def EnableItem(self):
1231 """"""
1232 pass
1233
1234 def FindString(self):
1235 """"""
1236 pass
1237
1238 def GetCount(self):
1239 """"""
1240 pass
1241
1242 def GetItemLabel(self):
1243 """"""
1244 pass
1245
1246 def GetSelection(self):
1247 """"""
1248 pass
1249
1250 def GetString(self):
1251 """"""
1252 pass
1253
1254 def GetStringSelection(self):
1255 """"""
1256 pass
1257
1258 def Number(self):
1259 """"""
1260 pass
1261
1262 def SetItemLabel(self):
1263 """"""
1264 pass
1265
1266 def SetSelection(self):
1267 """"""
1268 pass
1269
1270 def SetStringSelection(self):
1271 """"""
1272 pass
1273
1274 def Show(self):
1275 """"""
1276 pass
1277
1278 def ShowItem(self):
1279 """"""
1280 pass
1281
1282 def __init__(self):
1283 """"""
1284 pass
1285
1286
1287 class RadioButton(Control):
1288 """"""
1289
1290 def Create(self):
1291 """"""
1292 pass
1293
1294 def GetValue(self):
1295 """"""
1296 pass
1297
1298 def SetValue(self):
1299 """"""
1300 pass
1301
1302 def __init__(self):
1303 """"""
1304 pass
1305
1306
1307 class ScrollBar(Control):
1308 """"""
1309
1310 def Create(self):
1311 """"""
1312 pass
1313
1314 def GetPageSize(self):
1315 """"""
1316 pass
1317
1318 def GetRange(self):
1319 """"""
1320 pass
1321
1322 def GetThumbLength(self):
1323 """"""
1324 pass
1325
1326 def GetThumbPosition(self):
1327 """"""
1328 pass
1329
1330 def GetThumbSize(self):
1331 """"""
1332 pass
1333
1334 def IsVertical(self):
1335 """"""
1336 pass
1337
1338 def SetScrollbar(self):
1339 """"""
1340 pass
1341
1342 def SetThumbPosition(self):
1343 """"""
1344 pass
1345
1346 def __init__(self):
1347 """"""
1348 pass
1349
1350
1351 class Slider(Control):
1352 """"""
1353
1354 def ClearSel(self):
1355 """"""
1356 pass
1357
1358 def ClearTicks(self):
1359 """"""
1360 pass
1361
1362 def Create(self):
1363 """"""
1364 pass
1365
1366 def GetLineSize(self):
1367 """"""
1368 pass
1369
1370 def GetMax(self):
1371 """"""
1372 pass
1373
1374 def GetMin(self):
1375 """"""
1376 pass
1377
1378 def GetPageSize(self):
1379 """"""
1380 pass
1381
1382 def GetSelEnd(self):
1383 """"""
1384 pass
1385
1386 def GetSelStart(self):
1387 """"""
1388 pass
1389
1390 def GetThumbLength(self):
1391 """"""
1392 pass
1393
1394 def GetTickFreq(self):
1395 """"""
1396 pass
1397
1398 def GetValue(self):
1399 """"""
1400 pass
1401
1402 def SetLineSize(self):
1403 """"""
1404 pass
1405
1406 def SetPageSize(self):
1407 """"""
1408 pass
1409
1410 def SetRange(self):
1411 """"""
1412 pass
1413
1414 def SetSelection(self):
1415 """"""
1416 pass
1417
1418 def SetThumbLength(self):
1419 """"""
1420 pass
1421
1422 def SetTick(self):
1423 """"""
1424 pass
1425
1426 def SetTickFreq(self):
1427 """"""
1428 pass
1429
1430 def SetValue(self):
1431 """"""
1432 pass
1433
1434 def __init__(self):
1435 """"""
1436 pass
1437
1438
1439 class SpinButton(Control):
1440 """"""
1441
1442 def Create(self):
1443 """"""
1444 pass
1445
1446 def GetMax(self):
1447 """"""
1448 pass
1449
1450 def GetMin(self):
1451 """"""
1452 pass
1453
1454 def GetValue(self):
1455 """"""
1456 pass
1457
1458 def SetRange(self):
1459 """"""
1460 pass
1461
1462 def SetValue(self):
1463 """"""
1464 pass
1465
1466 def __init__(self):
1467 """"""
1468 pass
1469
1470
1471 class SpinCtrl(SpinButton):
1472 """"""
1473
1474 def Create(self):
1475 """"""
1476 pass
1477
1478 def GetMax(self):
1479 """"""
1480 pass
1481
1482 def GetMin(self):
1483 """"""
1484 pass
1485
1486 def GetValue(self):
1487 """"""
1488 pass
1489
1490 def SetRange(self):
1491 """"""
1492 pass
1493
1494 def SetValue(self):
1495 """"""
1496 pass
1497
1498 def __init__(self):
1499 """"""
1500 pass
1501
1502
1503 class StaticBitmap(Control):
1504 """"""
1505
1506 def Create(self):
1507 """"""
1508 pass
1509
1510 def GetBitmap(self):
1511 """"""
1512 pass
1513
1514 def SetBitmap(self):
1515 """"""
1516 pass
1517
1518 def SetIcon(self):
1519 """"""
1520 pass
1521
1522 def __init__(self):
1523 """"""
1524 pass
1525
1526
1527 class StaticBox(Control):
1528 """"""
1529
1530 def Create(self):
1531 """"""
1532 pass
1533
1534 def __init__(self):
1535 """"""
1536 pass
1537
1538
1539 class StaticLine(Control):
1540 """"""
1541
1542 def Create(self):
1543 """"""
1544 pass
1545
1546 def __init__(self):
1547 """"""
1548 pass
1549
1550
1551 class StaticText(Control):
1552 """"""
1553
1554 def Create(self):
1555 """"""
1556 pass
1557
1558 def GetLabel(self):
1559 """"""
1560 pass
1561
1562 def SetLabel(self):
1563 """"""
1564 pass
1565
1566 def __init__(self):
1567 """"""
1568 pass
1569
1570
1571 class TextAttr:
1572 """"""
1573
1574 def GetBackgroundColour(self):
1575 """"""
1576 pass
1577
1578 def GetFont(self):
1579 """"""
1580 pass
1581
1582 def GetTextColour(self):
1583 """"""
1584 pass
1585
1586 def HasBackgroundColour(self):
1587 """"""
1588 pass
1589
1590 def HasFont(self):
1591 """"""
1592 pass
1593
1594 def HasTextColour(self):
1595 """"""
1596 pass
1597
1598 def IsDefault(self):
1599 """"""
1600 pass
1601
1602 def SetBackgroundColour(self):
1603 """"""
1604 pass
1605
1606 def SetFont(self):
1607 """"""
1608 pass
1609
1610 def SetTextColour(self):
1611 """"""
1612 pass
1613
1614 def __del__(self):
1615 """"""
1616 pass
1617
1618 def __init__(self):
1619 """"""
1620 pass
1621
1622
1623 class TextCtrl(Control):
1624 """"""
1625
1626 def AppendText(self):
1627 """"""
1628 pass
1629
1630 def CanCopy(self):
1631 """"""
1632 pass
1633
1634 def CanCut(self):
1635 """"""
1636 pass
1637
1638 def CanPaste(self):
1639 """"""
1640 pass
1641
1642 def CanRedo(self):
1643 """"""
1644 pass
1645
1646 def CanUndo(self):
1647 """"""
1648 pass
1649
1650 def Clear(self):
1651 """"""
1652 pass
1653
1654 def Copy(self):
1655 """"""
1656 pass
1657
1658 def Create(self):
1659 """"""
1660 pass
1661
1662 def Cut(self):
1663 """"""
1664 pass
1665
1666 def DiscardEdits(self):
1667 """"""
1668 pass
1669
1670 def EmulateKeyPress(self):
1671 """"""
1672 pass
1673
1674 def GetDefaultStyle(self):
1675 """"""
1676 pass
1677
1678 def GetInsertionPoint(self):
1679 """"""
1680 pass
1681
1682 def GetLastPosition(self):
1683 """"""
1684 pass
1685
1686 def GetLineLength(self):
1687 """"""
1688 pass
1689
1690 def GetLineText(self):
1691 """"""
1692 pass
1693
1694 def GetNumberOfLines(self):
1695 """"""
1696 pass
1697
1698 def GetRange(self):
1699 """"""
1700 pass
1701
1702 def GetSelection(self):
1703 """"""
1704 pass
1705
1706 def GetString(self):
1707 """"""
1708 pass
1709
1710 def GetStringSelection(self):
1711 """"""
1712 pass
1713
1714 def GetValue(self):
1715 """"""
1716 pass
1717
1718 def IsEditable(self):
1719 """"""
1720 pass
1721
1722 def IsModified(self):
1723 """"""
1724 pass
1725
1726 def IsMultiLine(self):
1727 """"""
1728 pass
1729
1730 def IsSingleLine(self):
1731 """"""
1732 pass
1733
1734 def LoadFile(self):
1735 """"""
1736 pass
1737
1738 def Paste(self):
1739 """"""
1740 pass
1741
1742 def PositionToXY(self):
1743 """"""
1744 pass
1745
1746 def Redo(self):
1747 """"""
1748 pass
1749
1750 def Remove(self):
1751 """"""
1752 pass
1753
1754 def Replace(self):
1755 """"""
1756 pass
1757
1758 def SaveFile(self):
1759 """"""
1760 pass
1761
1762 def SelectAll(self):
1763 """"""
1764 pass
1765
1766 def SetDefaultStyle(self):
1767 """"""
1768 pass
1769
1770 def SetEditable(self):
1771 """"""
1772 pass
1773
1774 def SetInsertionPoint(self):
1775 """"""
1776 pass
1777
1778 def SetInsertionPointEnd(self):
1779 """"""
1780 pass
1781
1782 def SetMaxLength(self):
1783 """"""
1784 pass
1785
1786 def SetSelection(self):
1787 """"""
1788 pass
1789
1790 def SetStyle(self):
1791 """"""
1792 pass
1793
1794 def SetValue(self):
1795 """"""
1796 pass
1797
1798 def ShowPosition(self):
1799 """"""
1800 pass
1801
1802 def Undo(self):
1803 """"""
1804 pass
1805
1806 def WriteText(self):
1807 """"""
1808 pass
1809
1810 def XYToPosition(self):
1811 """"""
1812 pass
1813
1814 def __init__(self):
1815 """"""
1816 pass
1817
1818 def write(self):
1819 """"""
1820 pass
1821
1822
1823 class ToggleButton(Control):
1824 """"""
1825
1826 def Create(self):
1827 """"""
1828 pass
1829
1830 def GetValue(self):
1831 """"""
1832 pass
1833
1834 def SetLabel(self):
1835 """"""
1836 pass
1837
1838 def SetValue(self):
1839 """"""
1840 pass
1841
1842 def __init__(self):
1843 """"""
1844 pass
1845
1846