]>
Commit | Line | Data |
---|---|---|
1 | # This file was created automatically by SWIG. | |
2 | # Don't modify this file, modify the SWIG interface instead. | |
3 | ||
4 | """ | |
5 | Various *gizmo* classes: `DynamicSashWindow`, `EditableListBox`, | |
6 | `LEDNumberCtrl`, `TreeListCtrl`, etc. | |
7 | """ | |
8 | ||
9 | import _gizmos | |
10 | ||
11 | import _windows | |
12 | import _core | |
13 | import _controls | |
14 | wx = _core | |
15 | __docfilter__ = wx.__DocFilter(globals()) | |
16 | wxEVT_DYNAMIC_SASH_SPLIT = _gizmos.wxEVT_DYNAMIC_SASH_SPLIT | |
17 | wxEVT_DYNAMIC_SASH_UNIFY = _gizmos.wxEVT_DYNAMIC_SASH_UNIFY | |
18 | DS_MANAGE_SCROLLBARS = _gizmos.DS_MANAGE_SCROLLBARS | |
19 | DS_DRAG_CORNER = _gizmos.DS_DRAG_CORNER | |
20 | class DynamicSashSplitEvent(_core.CommandEvent): | |
21 | def __repr__(self): | |
22 | return "<%s.%s; proxy of C++ wxDynamicSashSplitEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
23 | def __init__(self, *args, **kwargs): | |
24 | """__init__(self, Object target) -> DynamicSashSplitEvent""" | |
25 | newobj = _gizmos.new_DynamicSashSplitEvent(*args, **kwargs) | |
26 | self.this = newobj.this | |
27 | self.thisown = 1 | |
28 | del newobj.thisown | |
29 | ||
30 | class DynamicSashSplitEventPtr(DynamicSashSplitEvent): | |
31 | def __init__(self, this): | |
32 | self.this = this | |
33 | if not hasattr(self,"thisown"): self.thisown = 0 | |
34 | self.__class__ = DynamicSashSplitEvent | |
35 | _gizmos.DynamicSashSplitEvent_swigregister(DynamicSashSplitEventPtr) | |
36 | cvar = _gizmos.cvar | |
37 | DynamicSashNameStr = cvar.DynamicSashNameStr | |
38 | EditableListBoxNameStr = cvar.EditableListBoxNameStr | |
39 | TreeListCtrlNameStr = cvar.TreeListCtrlNameStr | |
40 | ||
41 | class DynamicSashUnifyEvent(_core.CommandEvent): | |
42 | def __repr__(self): | |
43 | return "<%s.%s; proxy of C++ wxDynamicSashUnifyEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
44 | def __init__(self, *args, **kwargs): | |
45 | """__init__(self, Object target) -> DynamicSashUnifyEvent""" | |
46 | newobj = _gizmos.new_DynamicSashUnifyEvent(*args, **kwargs) | |
47 | self.this = newobj.this | |
48 | self.thisown = 1 | |
49 | del newobj.thisown | |
50 | ||
51 | class DynamicSashUnifyEventPtr(DynamicSashUnifyEvent): | |
52 | def __init__(self, this): | |
53 | self.this = this | |
54 | if not hasattr(self,"thisown"): self.thisown = 0 | |
55 | self.__class__ = DynamicSashUnifyEvent | |
56 | _gizmos.DynamicSashUnifyEvent_swigregister(DynamicSashUnifyEventPtr) | |
57 | ||
58 | class DynamicSashWindow(_core.Window): | |
59 | def __repr__(self): | |
60 | return "<%s.%s; proxy of C++ wxDynamicSashWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
61 | def __init__(self, *args, **kwargs): | |
62 | """ | |
63 | __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, | |
64 | long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, | |
65 | String name=DynamicSashNameStr) -> DynamicSashWindow | |
66 | """ | |
67 | newobj = _gizmos.new_DynamicSashWindow(*args, **kwargs) | |
68 | self.this = newobj.this | |
69 | self.thisown = 1 | |
70 | del newobj.thisown | |
71 | self._setOORInfo(self) | |
72 | ||
73 | def Create(*args, **kwargs): | |
74 | """ | |
75 | Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, | |
76 | long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, | |
77 | String name=DynamicSashNameStr) -> bool | |
78 | """ | |
79 | return _gizmos.DynamicSashWindow_Create(*args, **kwargs) | |
80 | ||
81 | def GetHScrollBar(*args, **kwargs): | |
82 | """GetHScrollBar(self, Window child) -> ScrollBar""" | |
83 | return _gizmos.DynamicSashWindow_GetHScrollBar(*args, **kwargs) | |
84 | ||
85 | def GetVScrollBar(*args, **kwargs): | |
86 | """GetVScrollBar(self, Window child) -> ScrollBar""" | |
87 | return _gizmos.DynamicSashWindow_GetVScrollBar(*args, **kwargs) | |
88 | ||
89 | ||
90 | class DynamicSashWindowPtr(DynamicSashWindow): | |
91 | def __init__(self, this): | |
92 | self.this = this | |
93 | if not hasattr(self,"thisown"): self.thisown = 0 | |
94 | self.__class__ = DynamicSashWindow | |
95 | _gizmos.DynamicSashWindow_swigregister(DynamicSashWindowPtr) | |
96 | ||
97 | def PreDynamicSashWindow(*args, **kwargs): | |
98 | """PreDynamicSashWindow() -> DynamicSashWindow""" | |
99 | val = _gizmos.new_PreDynamicSashWindow(*args, **kwargs) | |
100 | val.thisown = 1 | |
101 | return val | |
102 | ||
103 | EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT, 1 ) | |
104 | EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY, 1 ) | |
105 | ||
106 | EL_ALLOW_NEW = _gizmos.EL_ALLOW_NEW | |
107 | EL_ALLOW_EDIT = _gizmos.EL_ALLOW_EDIT | |
108 | EL_ALLOW_DELETE = _gizmos.EL_ALLOW_DELETE | |
109 | class EditableListBox(_windows.Panel): | |
110 | def __repr__(self): | |
111 | return "<%s.%s; proxy of C++ wxEditableListBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
112 | def __init__(self, *args, **kwargs): | |
113 | """ | |
114 | __init__(self, Window parent, int id, String label, Point pos=DefaultPosition, | |
115 | Size size=DefaultSize, long style=wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE, | |
116 | String name=EditableListBoxNameStr) -> EditableListBox | |
117 | """ | |
118 | newobj = _gizmos.new_EditableListBox(*args, **kwargs) | |
119 | self.this = newobj.this | |
120 | self.thisown = 1 | |
121 | del newobj.thisown | |
122 | self._setOORInfo(self) | |
123 | ||
124 | def SetStrings(*args, **kwargs): | |
125 | """SetStrings(self, wxArrayString strings)""" | |
126 | return _gizmos.EditableListBox_SetStrings(*args, **kwargs) | |
127 | ||
128 | def GetStrings(*args, **kwargs): | |
129 | """GetStrings(self) -> PyObject""" | |
130 | return _gizmos.EditableListBox_GetStrings(*args, **kwargs) | |
131 | ||
132 | def GetListCtrl(*args, **kwargs): | |
133 | """GetListCtrl(self) -> wxListCtrl""" | |
134 | return _gizmos.EditableListBox_GetListCtrl(*args, **kwargs) | |
135 | ||
136 | def GetDelButton(*args, **kwargs): | |
137 | """GetDelButton(self) -> BitmapButton""" | |
138 | return _gizmos.EditableListBox_GetDelButton(*args, **kwargs) | |
139 | ||
140 | def GetNewButton(*args, **kwargs): | |
141 | """GetNewButton(self) -> BitmapButton""" | |
142 | return _gizmos.EditableListBox_GetNewButton(*args, **kwargs) | |
143 | ||
144 | def GetUpButton(*args, **kwargs): | |
145 | """GetUpButton(self) -> BitmapButton""" | |
146 | return _gizmos.EditableListBox_GetUpButton(*args, **kwargs) | |
147 | ||
148 | def GetDownButton(*args, **kwargs): | |
149 | """GetDownButton(self) -> BitmapButton""" | |
150 | return _gizmos.EditableListBox_GetDownButton(*args, **kwargs) | |
151 | ||
152 | def GetEditButton(*args, **kwargs): | |
153 | """GetEditButton(self) -> BitmapButton""" | |
154 | return _gizmos.EditableListBox_GetEditButton(*args, **kwargs) | |
155 | ||
156 | ||
157 | class EditableListBoxPtr(EditableListBox): | |
158 | def __init__(self, this): | |
159 | self.this = this | |
160 | if not hasattr(self,"thisown"): self.thisown = 0 | |
161 | self.__class__ = EditableListBox | |
162 | _gizmos.EditableListBox_swigregister(EditableListBoxPtr) | |
163 | ||
164 | class RemotelyScrolledTreeCtrl(_controls.TreeCtrl): | |
165 | def __repr__(self): | |
166 | return "<%s.%s; proxy of C++ wxRemotelyScrolledTreeCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
167 | def __init__(self, *args, **kwargs): | |
168 | """ | |
169 | __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, | |
170 | long style=TR_HAS_BUTTONS) -> RemotelyScrolledTreeCtrl | |
171 | """ | |
172 | newobj = _gizmos.new_RemotelyScrolledTreeCtrl(*args, **kwargs) | |
173 | self.this = newobj.this | |
174 | self.thisown = 1 | |
175 | del newobj.thisown | |
176 | self._setOORInfo(self) | |
177 | ||
178 | def HideVScrollbar(*args, **kwargs): | |
179 | """HideVScrollbar(self)""" | |
180 | return _gizmos.RemotelyScrolledTreeCtrl_HideVScrollbar(*args, **kwargs) | |
181 | ||
182 | def AdjustRemoteScrollbars(*args, **kwargs): | |
183 | """AdjustRemoteScrollbars(self)""" | |
184 | return _gizmos.RemotelyScrolledTreeCtrl_AdjustRemoteScrollbars(*args, **kwargs) | |
185 | ||
186 | def GetScrolledWindow(*args, **kwargs): | |
187 | """GetScrolledWindow(self) -> ScrolledWindow""" | |
188 | return _gizmos.RemotelyScrolledTreeCtrl_GetScrolledWindow(*args, **kwargs) | |
189 | ||
190 | def ScrollToLine(*args, **kwargs): | |
191 | """ScrollToLine(self, int posHoriz, int posVert)""" | |
192 | return _gizmos.RemotelyScrolledTreeCtrl_ScrollToLine(*args, **kwargs) | |
193 | ||
194 | def SetCompanionWindow(*args, **kwargs): | |
195 | """SetCompanionWindow(self, Window companion)""" | |
196 | return _gizmos.RemotelyScrolledTreeCtrl_SetCompanionWindow(*args, **kwargs) | |
197 | ||
198 | def GetCompanionWindow(*args, **kwargs): | |
199 | """GetCompanionWindow(self) -> Window""" | |
200 | return _gizmos.RemotelyScrolledTreeCtrl_GetCompanionWindow(*args, **kwargs) | |
201 | ||
202 | ||
203 | class RemotelyScrolledTreeCtrlPtr(RemotelyScrolledTreeCtrl): | |
204 | def __init__(self, this): | |
205 | self.this = this | |
206 | if not hasattr(self,"thisown"): self.thisown = 0 | |
207 | self.__class__ = RemotelyScrolledTreeCtrl | |
208 | _gizmos.RemotelyScrolledTreeCtrl_swigregister(RemotelyScrolledTreeCtrlPtr) | |
209 | ||
210 | class TreeCompanionWindow(_core.Window): | |
211 | def __repr__(self): | |
212 | return "<%s.%s; proxy of C++ wxPyTreeCompanionWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
213 | def __init__(self, *args, **kwargs): | |
214 | """ | |
215 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
216 | Size size=DefaultSize, long style=0) -> TreeCompanionWindow | |
217 | """ | |
218 | newobj = _gizmos.new_TreeCompanionWindow(*args, **kwargs) | |
219 | self.this = newobj.this | |
220 | self.thisown = 1 | |
221 | del newobj.thisown | |
222 | self._setOORInfo(self);self._setCallbackInfo(self, TreeCompanionWindow) | |
223 | ||
224 | def _setCallbackInfo(*args, **kwargs): | |
225 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
226 | return _gizmos.TreeCompanionWindow__setCallbackInfo(*args, **kwargs) | |
227 | ||
228 | def GetTreeCtrl(*args, **kwargs): | |
229 | """GetTreeCtrl(self) -> RemotelyScrolledTreeCtrl""" | |
230 | return _gizmos.TreeCompanionWindow_GetTreeCtrl(*args, **kwargs) | |
231 | ||
232 | def SetTreeCtrl(*args, **kwargs): | |
233 | """SetTreeCtrl(self, RemotelyScrolledTreeCtrl treeCtrl)""" | |
234 | return _gizmos.TreeCompanionWindow_SetTreeCtrl(*args, **kwargs) | |
235 | ||
236 | ||
237 | class TreeCompanionWindowPtr(TreeCompanionWindow): | |
238 | def __init__(self, this): | |
239 | self.this = this | |
240 | if not hasattr(self,"thisown"): self.thisown = 0 | |
241 | self.__class__ = TreeCompanionWindow | |
242 | _gizmos.TreeCompanionWindow_swigregister(TreeCompanionWindowPtr) | |
243 | ||
244 | class ThinSplitterWindow(_windows.SplitterWindow): | |
245 | def __repr__(self): | |
246 | return "<%s.%s; proxy of C++ wxThinSplitterWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
247 | def __init__(self, *args, **kwargs): | |
248 | """ | |
249 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
250 | Size size=DefaultSize, long style=wxSP_3D|wxCLIP_CHILDREN) -> ThinSplitterWindow | |
251 | """ | |
252 | newobj = _gizmos.new_ThinSplitterWindow(*args, **kwargs) | |
253 | self.this = newobj.this | |
254 | self.thisown = 1 | |
255 | del newobj.thisown | |
256 | self._setOORInfo(self) | |
257 | ||
258 | ||
259 | class ThinSplitterWindowPtr(ThinSplitterWindow): | |
260 | def __init__(self, this): | |
261 | self.this = this | |
262 | if not hasattr(self,"thisown"): self.thisown = 0 | |
263 | self.__class__ = ThinSplitterWindow | |
264 | _gizmos.ThinSplitterWindow_swigregister(ThinSplitterWindowPtr) | |
265 | ||
266 | class SplitterScrolledWindow(_windows.ScrolledWindow): | |
267 | def __repr__(self): | |
268 | return "<%s.%s; proxy of C++ wxSplitterScrolledWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
269 | def __init__(self, *args, **kwargs): | |
270 | """ | |
271 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
272 | Size size=DefaultSize, long style=0) -> SplitterScrolledWindow | |
273 | """ | |
274 | newobj = _gizmos.new_SplitterScrolledWindow(*args, **kwargs) | |
275 | self.this = newobj.this | |
276 | self.thisown = 1 | |
277 | del newobj.thisown | |
278 | self._setOORInfo(self) | |
279 | ||
280 | ||
281 | class SplitterScrolledWindowPtr(SplitterScrolledWindow): | |
282 | def __init__(self, this): | |
283 | self.this = this | |
284 | if not hasattr(self,"thisown"): self.thisown = 0 | |
285 | self.__class__ = SplitterScrolledWindow | |
286 | _gizmos.SplitterScrolledWindow_swigregister(SplitterScrolledWindowPtr) | |
287 | ||
288 | LED_ALIGN_LEFT = _gizmos.LED_ALIGN_LEFT | |
289 | LED_ALIGN_RIGHT = _gizmos.LED_ALIGN_RIGHT | |
290 | LED_ALIGN_CENTER = _gizmos.LED_ALIGN_CENTER | |
291 | LED_ALIGN_MASK = _gizmos.LED_ALIGN_MASK | |
292 | LED_DRAW_FADED = _gizmos.LED_DRAW_FADED | |
293 | class LEDNumberCtrl(_core.Control): | |
294 | def __repr__(self): | |
295 | return "<%s.%s; proxy of C++ wxLEDNumberCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
296 | def __init__(self, *args, **kwargs): | |
297 | """ | |
298 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
299 | Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -> LEDNumberCtrl | |
300 | """ | |
301 | newobj = _gizmos.new_LEDNumberCtrl(*args, **kwargs) | |
302 | self.this = newobj.this | |
303 | self.thisown = 1 | |
304 | del newobj.thisown | |
305 | self._setOORInfo(self) | |
306 | ||
307 | def Create(*args, **kwargs): | |
308 | """ | |
309 | Create(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
310 | Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -> bool | |
311 | """ | |
312 | return _gizmos.LEDNumberCtrl_Create(*args, **kwargs) | |
313 | ||
314 | def GetAlignment(*args, **kwargs): | |
315 | """GetAlignment(self) -> int""" | |
316 | return _gizmos.LEDNumberCtrl_GetAlignment(*args, **kwargs) | |
317 | ||
318 | def GetDrawFaded(*args, **kwargs): | |
319 | """GetDrawFaded(self) -> bool""" | |
320 | return _gizmos.LEDNumberCtrl_GetDrawFaded(*args, **kwargs) | |
321 | ||
322 | def GetValue(*args, **kwargs): | |
323 | """GetValue(self) -> String""" | |
324 | return _gizmos.LEDNumberCtrl_GetValue(*args, **kwargs) | |
325 | ||
326 | def SetAlignment(*args, **kwargs): | |
327 | """SetAlignment(self, int Alignment, bool Redraw=true)""" | |
328 | return _gizmos.LEDNumberCtrl_SetAlignment(*args, **kwargs) | |
329 | ||
330 | def SetDrawFaded(*args, **kwargs): | |
331 | """SetDrawFaded(self, bool DrawFaded, bool Redraw=true)""" | |
332 | return _gizmos.LEDNumberCtrl_SetDrawFaded(*args, **kwargs) | |
333 | ||
334 | def SetValue(*args, **kwargs): | |
335 | """SetValue(self, String Value, bool Redraw=true)""" | |
336 | return _gizmos.LEDNumberCtrl_SetValue(*args, **kwargs) | |
337 | ||
338 | ||
339 | class LEDNumberCtrlPtr(LEDNumberCtrl): | |
340 | def __init__(self, this): | |
341 | self.this = this | |
342 | if not hasattr(self,"thisown"): self.thisown = 0 | |
343 | self.__class__ = LEDNumberCtrl | |
344 | _gizmos.LEDNumberCtrl_swigregister(LEDNumberCtrlPtr) | |
345 | ||
346 | def PreLEDNumberCtrl(*args, **kwargs): | |
347 | """PreLEDNumberCtrl() -> LEDNumberCtrl""" | |
348 | val = _gizmos.new_PreLEDNumberCtrl(*args, **kwargs) | |
349 | val.thisown = 1 | |
350 | return val | |
351 | ||
352 | TL_ALIGN_LEFT = _gizmos.TL_ALIGN_LEFT | |
353 | TL_ALIGN_RIGHT = _gizmos.TL_ALIGN_RIGHT | |
354 | TL_ALIGN_CENTER = _gizmos.TL_ALIGN_CENTER | |
355 | TREE_HITTEST_ONITEMCOLUMN = _gizmos.TREE_HITTEST_ONITEMCOLUMN | |
356 | TL_SEARCH_VISIBLE = _gizmos.TL_SEARCH_VISIBLE | |
357 | TL_SEARCH_LEVEL = _gizmos.TL_SEARCH_LEVEL | |
358 | TL_SEARCH_FULL = _gizmos.TL_SEARCH_FULL | |
359 | TL_SEARCH_PARTIAL = _gizmos.TL_SEARCH_PARTIAL | |
360 | TL_SEARCH_NOCASE = _gizmos.TL_SEARCH_NOCASE | |
361 | class TreeListColumnInfo(_core.Object): | |
362 | def __repr__(self): | |
363 | return "<%s.%s; proxy of C++ wxTreeListColumnInfo instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
364 | def __init__(self, *args, **kwargs): | |
365 | """ | |
366 | __init__(self, String text=EmptyString, int image=-1, size_t width=100, | |
367 | bool shown=True, int alignment=TL_ALIGN_LEFT) -> TreeListColumnInfo | |
368 | """ | |
369 | newobj = _gizmos.new_TreeListColumnInfo(*args, **kwargs) | |
370 | self.this = newobj.this | |
371 | self.thisown = 1 | |
372 | del newobj.thisown | |
373 | def GetShown(*args, **kwargs): | |
374 | """GetShown(self) -> bool""" | |
375 | return _gizmos.TreeListColumnInfo_GetShown(*args, **kwargs) | |
376 | ||
377 | def GetAlignment(*args, **kwargs): | |
378 | """GetAlignment(self) -> int""" | |
379 | return _gizmos.TreeListColumnInfo_GetAlignment(*args, **kwargs) | |
380 | ||
381 | def GetText(*args, **kwargs): | |
382 | """GetText(self) -> String""" | |
383 | return _gizmos.TreeListColumnInfo_GetText(*args, **kwargs) | |
384 | ||
385 | def GetImage(*args, **kwargs): | |
386 | """GetImage(self) -> int""" | |
387 | return _gizmos.TreeListColumnInfo_GetImage(*args, **kwargs) | |
388 | ||
389 | def GetSelectedImage(*args, **kwargs): | |
390 | """GetSelectedImage(self) -> int""" | |
391 | return _gizmos.TreeListColumnInfo_GetSelectedImage(*args, **kwargs) | |
392 | ||
393 | def GetWidth(*args, **kwargs): | |
394 | """GetWidth(self) -> size_t""" | |
395 | return _gizmos.TreeListColumnInfo_GetWidth(*args, **kwargs) | |
396 | ||
397 | def SetShown(*args, **kwargs): | |
398 | """SetShown(self, bool shown)""" | |
399 | return _gizmos.TreeListColumnInfo_SetShown(*args, **kwargs) | |
400 | ||
401 | def SetAlignment(*args, **kwargs): | |
402 | """SetAlignment(self, int alignment)""" | |
403 | return _gizmos.TreeListColumnInfo_SetAlignment(*args, **kwargs) | |
404 | ||
405 | def SetText(*args, **kwargs): | |
406 | """SetText(self, String text)""" | |
407 | return _gizmos.TreeListColumnInfo_SetText(*args, **kwargs) | |
408 | ||
409 | def SetImage(*args, **kwargs): | |
410 | """SetImage(self, int image)""" | |
411 | return _gizmos.TreeListColumnInfo_SetImage(*args, **kwargs) | |
412 | ||
413 | def SetSelectedImage(*args, **kwargs): | |
414 | """SetSelectedImage(self, int image)""" | |
415 | return _gizmos.TreeListColumnInfo_SetSelectedImage(*args, **kwargs) | |
416 | ||
417 | def SetWidth(*args, **kwargs): | |
418 | """SetWidth(self, size_t with)""" | |
419 | return _gizmos.TreeListColumnInfo_SetWidth(*args, **kwargs) | |
420 | ||
421 | ||
422 | class TreeListColumnInfoPtr(TreeListColumnInfo): | |
423 | def __init__(self, this): | |
424 | self.this = this | |
425 | if not hasattr(self,"thisown"): self.thisown = 0 | |
426 | self.__class__ = TreeListColumnInfo | |
427 | _gizmos.TreeListColumnInfo_swigregister(TreeListColumnInfoPtr) | |
428 | ||
429 | class TreeListCtrl(_core.Control): | |
430 | def __repr__(self): | |
431 | return "<%s.%s; proxy of C++ wxPyTreeListCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
432 | def __init__(self, *args, **kwargs): | |
433 | """ | |
434 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
435 | Size size=DefaultSize, long style=TR_DEFAULT_STYLE, | |
436 | Validator validator=DefaultValidator, | |
437 | String name=TreeListCtrlNameStr) -> TreeListCtrl | |
438 | """ | |
439 | newobj = _gizmos.new_TreeListCtrl(*args, **kwargs) | |
440 | self.this = newobj.this | |
441 | self.thisown = 1 | |
442 | del newobj.thisown | |
443 | self._setOORInfo(self);self._setCallbackInfo(self, TreeListCtrl) | |
444 | ||
445 | def Create(*args, **kwargs): | |
446 | """ | |
447 | Create(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
448 | Size size=DefaultSize, long style=TR_DEFAULT_STYLE, | |
449 | Validator validator=DefaultValidator, | |
450 | String name=TreeListCtrlNameStr) -> bool | |
451 | ||
452 | Do the 2nd phase and create the GUI control. | |
453 | """ | |
454 | return _gizmos.TreeListCtrl_Create(*args, **kwargs) | |
455 | ||
456 | def _setCallbackInfo(*args, **kwargs): | |
457 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
458 | return _gizmos.TreeListCtrl__setCallbackInfo(*args, **kwargs) | |
459 | ||
460 | def GetCount(*args, **kwargs): | |
461 | """GetCount(self) -> size_t""" | |
462 | return _gizmos.TreeListCtrl_GetCount(*args, **kwargs) | |
463 | ||
464 | def GetIndent(*args, **kwargs): | |
465 | """GetIndent(self) -> unsigned int""" | |
466 | return _gizmos.TreeListCtrl_GetIndent(*args, **kwargs) | |
467 | ||
468 | def SetIndent(*args, **kwargs): | |
469 | """SetIndent(self, unsigned int indent)""" | |
470 | return _gizmos.TreeListCtrl_SetIndent(*args, **kwargs) | |
471 | ||
472 | def GetLineSpacing(*args, **kwargs): | |
473 | """GetLineSpacing(self) -> unsigned int""" | |
474 | return _gizmos.TreeListCtrl_GetLineSpacing(*args, **kwargs) | |
475 | ||
476 | def SetLineSpacing(*args, **kwargs): | |
477 | """SetLineSpacing(self, unsigned int spacing)""" | |
478 | return _gizmos.TreeListCtrl_SetLineSpacing(*args, **kwargs) | |
479 | ||
480 | def GetImageList(*args, **kwargs): | |
481 | """GetImageList(self) -> ImageList""" | |
482 | return _gizmos.TreeListCtrl_GetImageList(*args, **kwargs) | |
483 | ||
484 | def GetStateImageList(*args, **kwargs): | |
485 | """GetStateImageList(self) -> ImageList""" | |
486 | return _gizmos.TreeListCtrl_GetStateImageList(*args, **kwargs) | |
487 | ||
488 | def GetButtonsImageList(*args, **kwargs): | |
489 | """GetButtonsImageList(self) -> ImageList""" | |
490 | return _gizmos.TreeListCtrl_GetButtonsImageList(*args, **kwargs) | |
491 | ||
492 | def SetImageList(*args, **kwargs): | |
493 | """SetImageList(self, ImageList imageList)""" | |
494 | return _gizmos.TreeListCtrl_SetImageList(*args, **kwargs) | |
495 | ||
496 | def SetStateImageList(*args, **kwargs): | |
497 | """SetStateImageList(self, ImageList imageList)""" | |
498 | return _gizmos.TreeListCtrl_SetStateImageList(*args, **kwargs) | |
499 | ||
500 | def SetButtonsImageList(*args, **kwargs): | |
501 | """SetButtonsImageList(self, ImageList imageList)""" | |
502 | return _gizmos.TreeListCtrl_SetButtonsImageList(*args, **kwargs) | |
503 | ||
504 | def AssignImageList(*args, **kwargs): | |
505 | """AssignImageList(self, ImageList imageList)""" | |
506 | return _gizmos.TreeListCtrl_AssignImageList(*args, **kwargs) | |
507 | ||
508 | def AssignStateImageList(*args, **kwargs): | |
509 | """AssignStateImageList(self, ImageList imageList)""" | |
510 | return _gizmos.TreeListCtrl_AssignStateImageList(*args, **kwargs) | |
511 | ||
512 | def AssignButtonsImageList(*args, **kwargs): | |
513 | """AssignButtonsImageList(self, ImageList imageList)""" | |
514 | return _gizmos.TreeListCtrl_AssignButtonsImageList(*args, **kwargs) | |
515 | ||
516 | def AddColumn(*args, **kwargs): | |
517 | """AddColumn(self, String text)""" | |
518 | return _gizmos.TreeListCtrl_AddColumn(*args, **kwargs) | |
519 | ||
520 | def AddColumnInfo(*args, **kwargs): | |
521 | """AddColumnInfo(self, TreeListColumnInfo col)""" | |
522 | return _gizmos.TreeListCtrl_AddColumnInfo(*args, **kwargs) | |
523 | ||
524 | def InsertColumn(*args, **kwargs): | |
525 | """InsertColumn(self, size_t before, String text)""" | |
526 | return _gizmos.TreeListCtrl_InsertColumn(*args, **kwargs) | |
527 | ||
528 | def InsertColumnInfo(*args, **kwargs): | |
529 | """InsertColumnInfo(self, size_t before, TreeListColumnInfo col)""" | |
530 | return _gizmos.TreeListCtrl_InsertColumnInfo(*args, **kwargs) | |
531 | ||
532 | def RemoveColumn(*args, **kwargs): | |
533 | """RemoveColumn(self, size_t column)""" | |
534 | return _gizmos.TreeListCtrl_RemoveColumn(*args, **kwargs) | |
535 | ||
536 | def GetColumnCount(*args, **kwargs): | |
537 | """GetColumnCount(self) -> size_t""" | |
538 | return _gizmos.TreeListCtrl_GetColumnCount(*args, **kwargs) | |
539 | ||
540 | def SetColumnWidth(*args, **kwargs): | |
541 | """SetColumnWidth(self, size_t column, size_t width)""" | |
542 | return _gizmos.TreeListCtrl_SetColumnWidth(*args, **kwargs) | |
543 | ||
544 | def GetColumnWidth(*args, **kwargs): | |
545 | """GetColumnWidth(self, size_t column) -> int""" | |
546 | return _gizmos.TreeListCtrl_GetColumnWidth(*args, **kwargs) | |
547 | ||
548 | def SetMainColumn(*args, **kwargs): | |
549 | """SetMainColumn(self, size_t column)""" | |
550 | return _gizmos.TreeListCtrl_SetMainColumn(*args, **kwargs) | |
551 | ||
552 | def GetMainColumn(*args, **kwargs): | |
553 | """GetMainColumn(self) -> size_t""" | |
554 | return _gizmos.TreeListCtrl_GetMainColumn(*args, **kwargs) | |
555 | ||
556 | def SetColumnText(*args, **kwargs): | |
557 | """SetColumnText(self, size_t column, String text)""" | |
558 | return _gizmos.TreeListCtrl_SetColumnText(*args, **kwargs) | |
559 | ||
560 | def GetColumnText(*args, **kwargs): | |
561 | """GetColumnText(self, size_t column) -> String""" | |
562 | return _gizmos.TreeListCtrl_GetColumnText(*args, **kwargs) | |
563 | ||
564 | def SetColumn(*args, **kwargs): | |
565 | """SetColumn(self, size_t column, TreeListColumnInfo info)""" | |
566 | return _gizmos.TreeListCtrl_SetColumn(*args, **kwargs) | |
567 | ||
568 | def GetColumn(*args, **kwargs): | |
569 | """GetColumn(self, size_t column) -> TreeListColumnInfo""" | |
570 | return _gizmos.TreeListCtrl_GetColumn(*args, **kwargs) | |
571 | ||
572 | def SetColumnAlignment(*args, **kwargs): | |
573 | """SetColumnAlignment(self, size_t column, int align)""" | |
574 | return _gizmos.TreeListCtrl_SetColumnAlignment(*args, **kwargs) | |
575 | ||
576 | def GetColumnAlignment(*args, **kwargs): | |
577 | """GetColumnAlignment(self, size_t column) -> int""" | |
578 | return _gizmos.TreeListCtrl_GetColumnAlignment(*args, **kwargs) | |
579 | ||
580 | def SetColumnImage(*args, **kwargs): | |
581 | """SetColumnImage(self, size_t column, int image)""" | |
582 | return _gizmos.TreeListCtrl_SetColumnImage(*args, **kwargs) | |
583 | ||
584 | def GetColumnImage(*args, **kwargs): | |
585 | """GetColumnImage(self, size_t column) -> int""" | |
586 | return _gizmos.TreeListCtrl_GetColumnImage(*args, **kwargs) | |
587 | ||
588 | def ShowColumn(*args, **kwargs): | |
589 | """ShowColumn(self, size_t column, bool shown)""" | |
590 | return _gizmos.TreeListCtrl_ShowColumn(*args, **kwargs) | |
591 | ||
592 | def IsColumnShown(*args, **kwargs): | |
593 | """IsColumnShown(self, size_t column) -> bool""" | |
594 | return _gizmos.TreeListCtrl_IsColumnShown(*args, **kwargs) | |
595 | ||
596 | def GetItemText(*args, **kwargs): | |
597 | """GetItemText(self, TreeItemId item, int column=-1) -> String""" | |
598 | return _gizmos.TreeListCtrl_GetItemText(*args, **kwargs) | |
599 | ||
600 | def GetItemImage(*args, **kwargs): | |
601 | """GetItemImage(self, TreeItemId item, int column=-1, int which=TreeItemIcon_Normal) -> int""" | |
602 | return _gizmos.TreeListCtrl_GetItemImage(*args, **kwargs) | |
603 | ||
604 | def SetItemText(*args, **kwargs): | |
605 | """SetItemText(self, TreeItemId item, String text, int column=-1)""" | |
606 | return _gizmos.TreeListCtrl_SetItemText(*args, **kwargs) | |
607 | ||
608 | def SetItemImage(*args, **kwargs): | |
609 | """SetItemImage(self, TreeItemId item, int image, int column=-1, int which=TreeItemIcon_Normal)""" | |
610 | return _gizmos.TreeListCtrl_SetItemImage(*args, **kwargs) | |
611 | ||
612 | def GetItemData(*args, **kwargs): | |
613 | """GetItemData(self, TreeItemId item) -> TreeItemData""" | |
614 | return _gizmos.TreeListCtrl_GetItemData(*args, **kwargs) | |
615 | ||
616 | def SetItemData(*args, **kwargs): | |
617 | """SetItemData(self, TreeItemId item, TreeItemData data)""" | |
618 | return _gizmos.TreeListCtrl_SetItemData(*args, **kwargs) | |
619 | ||
620 | def GetItemPyData(*args, **kwargs): | |
621 | """GetItemPyData(self, TreeItemId item) -> PyObject""" | |
622 | return _gizmos.TreeListCtrl_GetItemPyData(*args, **kwargs) | |
623 | ||
624 | def SetItemPyData(*args, **kwargs): | |
625 | """SetItemPyData(self, TreeItemId item, PyObject obj)""" | |
626 | return _gizmos.TreeListCtrl_SetItemPyData(*args, **kwargs) | |
627 | ||
628 | GetPyData = GetItemPyData | |
629 | SetPyData = SetItemPyData | |
630 | def SetItemHasChildren(*args, **kwargs): | |
631 | """SetItemHasChildren(self, TreeItemId item, bool has=True)""" | |
632 | return _gizmos.TreeListCtrl_SetItemHasChildren(*args, **kwargs) | |
633 | ||
634 | def SetItemBold(*args, **kwargs): | |
635 | """SetItemBold(self, TreeItemId item, bool bold=True)""" | |
636 | return _gizmos.TreeListCtrl_SetItemBold(*args, **kwargs) | |
637 | ||
638 | def SetItemTextColour(*args, **kwargs): | |
639 | """SetItemTextColour(self, TreeItemId item, Colour colour)""" | |
640 | return _gizmos.TreeListCtrl_SetItemTextColour(*args, **kwargs) | |
641 | ||
642 | def SetItemBackgroundColour(*args, **kwargs): | |
643 | """SetItemBackgroundColour(self, TreeItemId item, Colour colour)""" | |
644 | return _gizmos.TreeListCtrl_SetItemBackgroundColour(*args, **kwargs) | |
645 | ||
646 | def SetItemFont(*args, **kwargs): | |
647 | """SetItemFont(self, TreeItemId item, Font font)""" | |
648 | return _gizmos.TreeListCtrl_SetItemFont(*args, **kwargs) | |
649 | ||
650 | def GetItemBold(*args, **kwargs): | |
651 | """GetItemBold(self, TreeItemId item) -> bool""" | |
652 | return _gizmos.TreeListCtrl_GetItemBold(*args, **kwargs) | |
653 | ||
654 | def GetItemTextColour(*args, **kwargs): | |
655 | """GetItemTextColour(self, TreeItemId item) -> Colour""" | |
656 | return _gizmos.TreeListCtrl_GetItemTextColour(*args, **kwargs) | |
657 | ||
658 | def GetItemBackgroundColour(*args, **kwargs): | |
659 | """GetItemBackgroundColour(self, TreeItemId item) -> Colour""" | |
660 | return _gizmos.TreeListCtrl_GetItemBackgroundColour(*args, **kwargs) | |
661 | ||
662 | def GetItemFont(*args, **kwargs): | |
663 | """GetItemFont(self, TreeItemId item) -> Font""" | |
664 | return _gizmos.TreeListCtrl_GetItemFont(*args, **kwargs) | |
665 | ||
666 | def IsVisible(*args, **kwargs): | |
667 | """IsVisible(self, TreeItemId item) -> bool""" | |
668 | return _gizmos.TreeListCtrl_IsVisible(*args, **kwargs) | |
669 | ||
670 | def ItemHasChildren(*args, **kwargs): | |
671 | """ItemHasChildren(self, TreeItemId item) -> bool""" | |
672 | return _gizmos.TreeListCtrl_ItemHasChildren(*args, **kwargs) | |
673 | ||
674 | def IsExpanded(*args, **kwargs): | |
675 | """IsExpanded(self, TreeItemId item) -> bool""" | |
676 | return _gizmos.TreeListCtrl_IsExpanded(*args, **kwargs) | |
677 | ||
678 | def IsSelected(*args, **kwargs): | |
679 | """IsSelected(self, TreeItemId item) -> bool""" | |
680 | return _gizmos.TreeListCtrl_IsSelected(*args, **kwargs) | |
681 | ||
682 | def IsBold(*args, **kwargs): | |
683 | """IsBold(self, TreeItemId item) -> bool""" | |
684 | return _gizmos.TreeListCtrl_IsBold(*args, **kwargs) | |
685 | ||
686 | def GetChildrenCount(*args, **kwargs): | |
687 | """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t""" | |
688 | return _gizmos.TreeListCtrl_GetChildrenCount(*args, **kwargs) | |
689 | ||
690 | def GetRootItem(*args, **kwargs): | |
691 | """GetRootItem(self) -> TreeItemId""" | |
692 | return _gizmos.TreeListCtrl_GetRootItem(*args, **kwargs) | |
693 | ||
694 | def GetSelection(*args, **kwargs): | |
695 | """GetSelection(self) -> TreeItemId""" | |
696 | return _gizmos.TreeListCtrl_GetSelection(*args, **kwargs) | |
697 | ||
698 | def GetSelections(*args, **kwargs): | |
699 | """GetSelections(self) -> PyObject""" | |
700 | return _gizmos.TreeListCtrl_GetSelections(*args, **kwargs) | |
701 | ||
702 | def GetItemParent(*args, **kwargs): | |
703 | """GetItemParent(self, TreeItemId item) -> TreeItemId""" | |
704 | return _gizmos.TreeListCtrl_GetItemParent(*args, **kwargs) | |
705 | ||
706 | def GetFirstChild(*args, **kwargs): | |
707 | """GetFirstChild(self, TreeItemId item) -> PyObject""" | |
708 | return _gizmos.TreeListCtrl_GetFirstChild(*args, **kwargs) | |
709 | ||
710 | def GetNextChild(*args, **kwargs): | |
711 | """GetNextChild(self, TreeItemId item, void cookie) -> PyObject""" | |
712 | return _gizmos.TreeListCtrl_GetNextChild(*args, **kwargs) | |
713 | ||
714 | def GetLastChild(*args, **kwargs): | |
715 | """GetLastChild(self, TreeItemId item) -> TreeItemId""" | |
716 | return _gizmos.TreeListCtrl_GetLastChild(*args, **kwargs) | |
717 | ||
718 | def GetNextSibling(*args, **kwargs): | |
719 | """GetNextSibling(self, TreeItemId item) -> TreeItemId""" | |
720 | return _gizmos.TreeListCtrl_GetNextSibling(*args, **kwargs) | |
721 | ||
722 | def GetPrevSibling(*args, **kwargs): | |
723 | """GetPrevSibling(self, TreeItemId item) -> TreeItemId""" | |
724 | return _gizmos.TreeListCtrl_GetPrevSibling(*args, **kwargs) | |
725 | ||
726 | def GetFirstVisibleItem(*args, **kwargs): | |
727 | """GetFirstVisibleItem(self) -> TreeItemId""" | |
728 | return _gizmos.TreeListCtrl_GetFirstVisibleItem(*args, **kwargs) | |
729 | ||
730 | def GetNextVisible(*args, **kwargs): | |
731 | """GetNextVisible(self, TreeItemId item) -> TreeItemId""" | |
732 | return _gizmos.TreeListCtrl_GetNextVisible(*args, **kwargs) | |
733 | ||
734 | def GetPrevVisible(*args, **kwargs): | |
735 | """GetPrevVisible(self, TreeItemId item) -> TreeItemId""" | |
736 | return _gizmos.TreeListCtrl_GetPrevVisible(*args, **kwargs) | |
737 | ||
738 | def GetNext(*args, **kwargs): | |
739 | """GetNext(self, TreeItemId item) -> TreeItemId""" | |
740 | return _gizmos.TreeListCtrl_GetNext(*args, **kwargs) | |
741 | ||
742 | def AddRoot(*args, **kwargs): | |
743 | """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId""" | |
744 | return _gizmos.TreeListCtrl_AddRoot(*args, **kwargs) | |
745 | ||
746 | def PrependItem(*args, **kwargs): | |
747 | """ | |
748 | PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1, | |
749 | TreeItemData data=None) -> TreeItemId | |
750 | """ | |
751 | return _gizmos.TreeListCtrl_PrependItem(*args, **kwargs) | |
752 | ||
753 | def InsertItem(*args, **kwargs): | |
754 | """ | |
755 | InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text, | |
756 | int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId | |
757 | """ | |
758 | return _gizmos.TreeListCtrl_InsertItem(*args, **kwargs) | |
759 | ||
760 | def InsertItemBefore(*args, **kwargs): | |
761 | """ | |
762 | InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1, | |
763 | int selectedImage=-1, TreeItemData data=None) -> TreeItemId | |
764 | """ | |
765 | return _gizmos.TreeListCtrl_InsertItemBefore(*args, **kwargs) | |
766 | ||
767 | def AppendItem(*args, **kwargs): | |
768 | """ | |
769 | AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1, | |
770 | TreeItemData data=None) -> TreeItemId | |
771 | """ | |
772 | return _gizmos.TreeListCtrl_AppendItem(*args, **kwargs) | |
773 | ||
774 | def Delete(*args, **kwargs): | |
775 | """Delete(self, TreeItemId item)""" | |
776 | return _gizmos.TreeListCtrl_Delete(*args, **kwargs) | |
777 | ||
778 | def DeleteChildren(*args, **kwargs): | |
779 | """DeleteChildren(self, TreeItemId item)""" | |
780 | return _gizmos.TreeListCtrl_DeleteChildren(*args, **kwargs) | |
781 | ||
782 | def DeleteAllItems(*args, **kwargs): | |
783 | """DeleteAllItems(self)""" | |
784 | return _gizmos.TreeListCtrl_DeleteAllItems(*args, **kwargs) | |
785 | ||
786 | def Expand(*args, **kwargs): | |
787 | """Expand(self, TreeItemId item)""" | |
788 | return _gizmos.TreeListCtrl_Expand(*args, **kwargs) | |
789 | ||
790 | def ExpandAll(*args, **kwargs): | |
791 | """ExpandAll(self, TreeItemId item)""" | |
792 | return _gizmos.TreeListCtrl_ExpandAll(*args, **kwargs) | |
793 | ||
794 | def Collapse(*args, **kwargs): | |
795 | """Collapse(self, TreeItemId item)""" | |
796 | return _gizmos.TreeListCtrl_Collapse(*args, **kwargs) | |
797 | ||
798 | def CollapseAndReset(*args, **kwargs): | |
799 | """CollapseAndReset(self, TreeItemId item)""" | |
800 | return _gizmos.TreeListCtrl_CollapseAndReset(*args, **kwargs) | |
801 | ||
802 | def Toggle(*args, **kwargs): | |
803 | """Toggle(self, TreeItemId item)""" | |
804 | return _gizmos.TreeListCtrl_Toggle(*args, **kwargs) | |
805 | ||
806 | def Unselect(*args, **kwargs): | |
807 | """Unselect(self)""" | |
808 | return _gizmos.TreeListCtrl_Unselect(*args, **kwargs) | |
809 | ||
810 | def UnselectAll(*args, **kwargs): | |
811 | """UnselectAll(self)""" | |
812 | return _gizmos.TreeListCtrl_UnselectAll(*args, **kwargs) | |
813 | ||
814 | def SelectItem(*args, **kwargs): | |
815 | """SelectItem(self, TreeItemId item, bool unselect_others=True, bool extended_select=False)""" | |
816 | return _gizmos.TreeListCtrl_SelectItem(*args, **kwargs) | |
817 | ||
818 | def SelectAll(*args, **kwargs): | |
819 | """SelectAll(self, bool extended_select=False)""" | |
820 | return _gizmos.TreeListCtrl_SelectAll(*args, **kwargs) | |
821 | ||
822 | def EnsureVisible(*args, **kwargs): | |
823 | """EnsureVisible(self, TreeItemId item)""" | |
824 | return _gizmos.TreeListCtrl_EnsureVisible(*args, **kwargs) | |
825 | ||
826 | def ScrollTo(*args, **kwargs): | |
827 | """ScrollTo(self, TreeItemId item)""" | |
828 | return _gizmos.TreeListCtrl_ScrollTo(*args, **kwargs) | |
829 | ||
830 | def HitTest(*args, **kwargs): | |
831 | """HitTest(self, Point point, int OUTPUT, int OUTPUT) -> TreeItemId""" | |
832 | return _gizmos.TreeListCtrl_HitTest(*args, **kwargs) | |
833 | ||
834 | def GetBoundingRect(*args, **kwargs): | |
835 | """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject""" | |
836 | return _gizmos.TreeListCtrl_GetBoundingRect(*args, **kwargs) | |
837 | ||
838 | def EditLabel(*args, **kwargs): | |
839 | """EditLabel(self, TreeItemId item)""" | |
840 | return _gizmos.TreeListCtrl_EditLabel(*args, **kwargs) | |
841 | ||
842 | def Edit(*args, **kwargs): | |
843 | """Edit(self, TreeItemId item)""" | |
844 | return _gizmos.TreeListCtrl_Edit(*args, **kwargs) | |
845 | ||
846 | def SortChildren(*args, **kwargs): | |
847 | """SortChildren(self, TreeItemId item)""" | |
848 | return _gizmos.TreeListCtrl_SortChildren(*args, **kwargs) | |
849 | ||
850 | def FindItem(*args, **kwargs): | |
851 | """FindItem(self, TreeItemId item, String str, int flags=0) -> TreeItemId""" | |
852 | return _gizmos.TreeListCtrl_FindItem(*args, **kwargs) | |
853 | ||
854 | def GetHeaderWindow(*args, **kwargs): | |
855 | """GetHeaderWindow(self) -> Window""" | |
856 | return _gizmos.TreeListCtrl_GetHeaderWindow(*args, **kwargs) | |
857 | ||
858 | def GetMainWindow(*args, **kwargs): | |
859 | """GetMainWindow(self) -> Window""" | |
860 | return _gizmos.TreeListCtrl_GetMainWindow(*args, **kwargs) | |
861 | ||
862 | ||
863 | class TreeListCtrlPtr(TreeListCtrl): | |
864 | def __init__(self, this): | |
865 | self.this = this | |
866 | if not hasattr(self,"thisown"): self.thisown = 0 | |
867 | self.__class__ = TreeListCtrl | |
868 | _gizmos.TreeListCtrl_swigregister(TreeListCtrlPtr) | |
869 | ||
870 | def PreTreeListCtrl(*args, **kwargs): | |
871 | """PreTreeListCtrl() -> TreeListCtrl""" | |
872 | val = _gizmos.new_PreTreeListCtrl(*args, **kwargs) | |
873 | val.thisown = 1 | |
874 | return val | |
875 | ||
876 |