git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			934 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			934 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # This file was created automatically by SWIG.
 | |
| # Don't modify this file, modify the SWIG interface instead.
 | |
| 
 | |
| """
 | |
| Various *gizmo* classes: `DynamicSashWindow`, `EditableListBox`,
 | |
| `LEDNumberCtrl`, `TreeListCtrl`, etc.
 | |
| """
 | |
| 
 | |
| import _gizmos
 | |
| 
 | |
| def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
 | |
|     if (name == "this"):
 | |
|         if isinstance(value, class_type):
 | |
|             self.__dict__[name] = value.this
 | |
|             if hasattr(value,"thisown"): self.__dict__["thisown"] = value.thisown
 | |
|             del value.thisown
 | |
|             return
 | |
|     method = class_type.__swig_setmethods__.get(name,None)
 | |
|     if method: return method(self,value)
 | |
|     if (not static) or hasattr(self,name) or (name == "thisown"):
 | |
|         self.__dict__[name] = value
 | |
|     else:
 | |
|         raise AttributeError("You cannot add attributes to %s" % self)
 | |
| 
 | |
| def _swig_setattr(self,class_type,name,value):
 | |
|     return _swig_setattr_nondynamic(self,class_type,name,value,0)
 | |
| 
 | |
| def _swig_getattr(self,class_type,name):
 | |
|     method = class_type.__swig_getmethods__.get(name,None)
 | |
|     if method: return method(self)
 | |
|     raise AttributeError,name
 | |
| 
 | |
| import types
 | |
| try:
 | |
|     _object = types.ObjectType
 | |
|     _newclass = 1
 | |
| except AttributeError:
 | |
|     class _object : pass
 | |
|     _newclass = 0
 | |
| del types
 | |
| 
 | |
| 
 | |
| def _swig_setattr_nondynamic_method(set):
 | |
|     def set_attr(self,name,value):
 | |
|         if hasattr(self,name) or (name in ("this", "thisown")):
 | |
|             set(self,name,value)
 | |
|         else:
 | |
|             raise AttributeError("You cannot add attributes to %s" % self)
 | |
|     return set_attr
 | |
| 
 | |
| 
 | |
| import _windows
 | |
| import _core
 | |
| import _controls
 | |
| import wx 
 | |
| __docfilter__ = wx._core.__DocFilter(globals()) 
 | |
| wxEVT_DYNAMIC_SASH_SPLIT = _gizmos.wxEVT_DYNAMIC_SASH_SPLIT
 | |
| wxEVT_DYNAMIC_SASH_UNIFY = _gizmos.wxEVT_DYNAMIC_SASH_UNIFY
 | |
| DS_MANAGE_SCROLLBARS = _gizmos.DS_MANAGE_SCROLLBARS
 | |
| DS_DRAG_CORNER = _gizmos.DS_DRAG_CORNER
 | |
| class DynamicSashSplitEvent(_core.CommandEvent):
 | |
|     """Proxy of C++ DynamicSashSplitEvent class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxDynamicSashSplitEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """__init__(self, Object target) -> DynamicSashSplitEvent"""
 | |
|         newobj = _gizmos.new_DynamicSashSplitEvent(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
| 
 | |
| class DynamicSashSplitEventPtr(DynamicSashSplitEvent):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = DynamicSashSplitEvent
 | |
| _gizmos.DynamicSashSplitEvent_swigregister(DynamicSashSplitEventPtr)
 | |
| cvar = _gizmos.cvar
 | |
| DynamicSashNameStr = cvar.DynamicSashNameStr
 | |
| EditableListBoxNameStr = cvar.EditableListBoxNameStr
 | |
| TreeListCtrlNameStr = cvar.TreeListCtrlNameStr
 | |
| 
 | |
| class DynamicSashUnifyEvent(_core.CommandEvent):
 | |
|     """Proxy of C++ DynamicSashUnifyEvent class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxDynamicSashUnifyEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """__init__(self, Object target) -> DynamicSashUnifyEvent"""
 | |
|         newobj = _gizmos.new_DynamicSashUnifyEvent(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
| 
 | |
| class DynamicSashUnifyEventPtr(DynamicSashUnifyEvent):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = DynamicSashUnifyEvent
 | |
| _gizmos.DynamicSashUnifyEvent_swigregister(DynamicSashUnifyEventPtr)
 | |
| 
 | |
| class DynamicSashWindow(_core.Window):
 | |
|     """Proxy of C++ DynamicSashWindow class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxDynamicSashWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, 
 | |
|             String name=DynamicSashNameStr) -> DynamicSashWindow
 | |
|         """
 | |
|         newobj = _gizmos.new_DynamicSashWindow(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self)
 | |
| 
 | |
|     def Create(*args, **kwargs):
 | |
|         """
 | |
|         Create(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER, 
 | |
|             String name=DynamicSashNameStr) -> bool
 | |
|         """
 | |
|         return _gizmos.DynamicSashWindow_Create(*args, **kwargs)
 | |
| 
 | |
|     def GetHScrollBar(*args, **kwargs):
 | |
|         """GetHScrollBar(self, Window child) -> ScrollBar"""
 | |
|         return _gizmos.DynamicSashWindow_GetHScrollBar(*args, **kwargs)
 | |
| 
 | |
|     def GetVScrollBar(*args, **kwargs):
 | |
|         """GetVScrollBar(self, Window child) -> ScrollBar"""
 | |
|         return _gizmos.DynamicSashWindow_GetVScrollBar(*args, **kwargs)
 | |
| 
 | |
| 
 | |
| class DynamicSashWindowPtr(DynamicSashWindow):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = DynamicSashWindow
 | |
| _gizmos.DynamicSashWindow_swigregister(DynamicSashWindowPtr)
 | |
| 
 | |
| def PreDynamicSashWindow(*args, **kwargs):
 | |
|     """PreDynamicSashWindow() -> DynamicSashWindow"""
 | |
|     val = _gizmos.new_PreDynamicSashWindow(*args, **kwargs)
 | |
|     val.thisown = 1
 | |
|     return val
 | |
| 
 | |
| EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT, 1 )
 | |
| EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY, 1 )
 | |
| 
 | |
| EL_ALLOW_NEW = _gizmos.EL_ALLOW_NEW
 | |
| EL_ALLOW_EDIT = _gizmos.EL_ALLOW_EDIT
 | |
| EL_ALLOW_DELETE = _gizmos.EL_ALLOW_DELETE
 | |
| class EditableListBox(_windows.Panel):
 | |
|     """Proxy of C++ EditableListBox class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxEditableListBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id=-1, String label=EmptyString, 
 | |
|             Point pos=DefaultPosition, Size size=DefaultSize, 
 | |
|             long style=wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE, 
 | |
|             String name=EditableListBoxNameStr) -> EditableListBox
 | |
|         """
 | |
|         newobj = _gizmos.new_EditableListBox(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self)
 | |
| 
 | |
|     def SetStrings(*args, **kwargs):
 | |
|         """SetStrings(self, wxArrayString strings)"""
 | |
|         return _gizmos.EditableListBox_SetStrings(*args, **kwargs)
 | |
| 
 | |
|     def GetStrings(*args, **kwargs):
 | |
|         """GetStrings(self) -> PyObject"""
 | |
|         return _gizmos.EditableListBox_GetStrings(*args, **kwargs)
 | |
| 
 | |
|     def GetListCtrl(*args, **kwargs):
 | |
|         """GetListCtrl(self) -> ListCtrl"""
 | |
|         return _gizmos.EditableListBox_GetListCtrl(*args, **kwargs)
 | |
| 
 | |
|     def GetDelButton(*args, **kwargs):
 | |
|         """GetDelButton(self) -> BitmapButton"""
 | |
|         return _gizmos.EditableListBox_GetDelButton(*args, **kwargs)
 | |
| 
 | |
|     def GetNewButton(*args, **kwargs):
 | |
|         """GetNewButton(self) -> BitmapButton"""
 | |
|         return _gizmos.EditableListBox_GetNewButton(*args, **kwargs)
 | |
| 
 | |
|     def GetUpButton(*args, **kwargs):
 | |
|         """GetUpButton(self) -> BitmapButton"""
 | |
|         return _gizmos.EditableListBox_GetUpButton(*args, **kwargs)
 | |
| 
 | |
|     def GetDownButton(*args, **kwargs):
 | |
|         """GetDownButton(self) -> BitmapButton"""
 | |
|         return _gizmos.EditableListBox_GetDownButton(*args, **kwargs)
 | |
| 
 | |
|     def GetEditButton(*args, **kwargs):
 | |
|         """GetEditButton(self) -> BitmapButton"""
 | |
|         return _gizmos.EditableListBox_GetEditButton(*args, **kwargs)
 | |
| 
 | |
| 
 | |
| class EditableListBoxPtr(EditableListBox):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = EditableListBox
 | |
| _gizmos.EditableListBox_swigregister(EditableListBoxPtr)
 | |
| 
 | |
| class RemotelyScrolledTreeCtrl(_controls.TreeCtrl):
 | |
|     """Proxy of C++ RemotelyScrolledTreeCtrl class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxRemotelyScrolledTreeCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize, 
 | |
|             long style=TR_HAS_BUTTONS) -> RemotelyScrolledTreeCtrl
 | |
|         """
 | |
|         newobj = _gizmos.new_RemotelyScrolledTreeCtrl(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self)
 | |
| 
 | |
|     def HideVScrollbar(*args, **kwargs):
 | |
|         """HideVScrollbar(self)"""
 | |
|         return _gizmos.RemotelyScrolledTreeCtrl_HideVScrollbar(*args, **kwargs)
 | |
| 
 | |
|     def AdjustRemoteScrollbars(*args, **kwargs):
 | |
|         """AdjustRemoteScrollbars(self)"""
 | |
|         return _gizmos.RemotelyScrolledTreeCtrl_AdjustRemoteScrollbars(*args, **kwargs)
 | |
| 
 | |
|     def GetScrolledWindow(*args, **kwargs):
 | |
|         """GetScrolledWindow(self) -> ScrolledWindow"""
 | |
|         return _gizmos.RemotelyScrolledTreeCtrl_GetScrolledWindow(*args, **kwargs)
 | |
| 
 | |
|     def ScrollToLine(*args, **kwargs):
 | |
|         """ScrollToLine(self, int posHoriz, int posVert)"""
 | |
|         return _gizmos.RemotelyScrolledTreeCtrl_ScrollToLine(*args, **kwargs)
 | |
| 
 | |
|     def SetCompanionWindow(*args, **kwargs):
 | |
|         """SetCompanionWindow(self, Window companion)"""
 | |
|         return _gizmos.RemotelyScrolledTreeCtrl_SetCompanionWindow(*args, **kwargs)
 | |
| 
 | |
|     def GetCompanionWindow(*args, **kwargs):
 | |
|         """GetCompanionWindow(self) -> Window"""
 | |
|         return _gizmos.RemotelyScrolledTreeCtrl_GetCompanionWindow(*args, **kwargs)
 | |
| 
 | |
| 
 | |
| class RemotelyScrolledTreeCtrlPtr(RemotelyScrolledTreeCtrl):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = RemotelyScrolledTreeCtrl
 | |
| _gizmos.RemotelyScrolledTreeCtrl_swigregister(RemotelyScrolledTreeCtrlPtr)
 | |
| 
 | |
| class TreeCompanionWindow(_core.Window):
 | |
|     """Proxy of C++ TreeCompanionWindow class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxPyTreeCompanionWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=0) -> TreeCompanionWindow
 | |
|         """
 | |
|         newobj = _gizmos.new_TreeCompanionWindow(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self);self._setCallbackInfo(self, TreeCompanionWindow)
 | |
| 
 | |
|     def _setCallbackInfo(*args, **kwargs):
 | |
|         """_setCallbackInfo(self, PyObject self, PyObject _class)"""
 | |
|         return _gizmos.TreeCompanionWindow__setCallbackInfo(*args, **kwargs)
 | |
| 
 | |
|     def GetTreeCtrl(*args, **kwargs):
 | |
|         """GetTreeCtrl(self) -> RemotelyScrolledTreeCtrl"""
 | |
|         return _gizmos.TreeCompanionWindow_GetTreeCtrl(*args, **kwargs)
 | |
| 
 | |
|     def SetTreeCtrl(*args, **kwargs):
 | |
|         """SetTreeCtrl(self, RemotelyScrolledTreeCtrl treeCtrl)"""
 | |
|         return _gizmos.TreeCompanionWindow_SetTreeCtrl(*args, **kwargs)
 | |
| 
 | |
| 
 | |
| class TreeCompanionWindowPtr(TreeCompanionWindow):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = TreeCompanionWindow
 | |
| _gizmos.TreeCompanionWindow_swigregister(TreeCompanionWindowPtr)
 | |
| 
 | |
| class ThinSplitterWindow(_windows.SplitterWindow):
 | |
|     """Proxy of C++ ThinSplitterWindow class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxThinSplitterWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=wxSP_3D|wxCLIP_CHILDREN) -> ThinSplitterWindow
 | |
|         """
 | |
|         newobj = _gizmos.new_ThinSplitterWindow(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self)
 | |
| 
 | |
| 
 | |
| class ThinSplitterWindowPtr(ThinSplitterWindow):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = ThinSplitterWindow
 | |
| _gizmos.ThinSplitterWindow_swigregister(ThinSplitterWindowPtr)
 | |
| 
 | |
| class SplitterScrolledWindow(_windows.ScrolledWindow):
 | |
|     """Proxy of C++ SplitterScrolledWindow class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxSplitterScrolledWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=0) -> SplitterScrolledWindow
 | |
|         """
 | |
|         newobj = _gizmos.new_SplitterScrolledWindow(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self)
 | |
| 
 | |
| 
 | |
| class SplitterScrolledWindowPtr(SplitterScrolledWindow):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = SplitterScrolledWindow
 | |
| _gizmos.SplitterScrolledWindow_swigregister(SplitterScrolledWindowPtr)
 | |
| 
 | |
| LED_ALIGN_LEFT = _gizmos.LED_ALIGN_LEFT
 | |
| LED_ALIGN_RIGHT = _gizmos.LED_ALIGN_RIGHT
 | |
| LED_ALIGN_CENTER = _gizmos.LED_ALIGN_CENTER
 | |
| LED_ALIGN_MASK = _gizmos.LED_ALIGN_MASK
 | |
| LED_DRAW_FADED = _gizmos.LED_DRAW_FADED
 | |
| class LEDNumberCtrl(_core.Control):
 | |
|     """Proxy of C++ LEDNumberCtrl class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxLEDNumberCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -> LEDNumberCtrl
 | |
|         """
 | |
|         newobj = _gizmos.new_LEDNumberCtrl(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self)
 | |
| 
 | |
|     def Create(*args, **kwargs):
 | |
|         """
 | |
|         Create(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -> bool
 | |
| 
 | |
|         Do the 2nd phase and create the GUI control.
 | |
|         """
 | |
|         return _gizmos.LEDNumberCtrl_Create(*args, **kwargs)
 | |
| 
 | |
|     def GetAlignment(*args, **kwargs):
 | |
|         """GetAlignment(self) -> int"""
 | |
|         return _gizmos.LEDNumberCtrl_GetAlignment(*args, **kwargs)
 | |
| 
 | |
|     def GetDrawFaded(*args, **kwargs):
 | |
|         """GetDrawFaded(self) -> bool"""
 | |
|         return _gizmos.LEDNumberCtrl_GetDrawFaded(*args, **kwargs)
 | |
| 
 | |
|     def GetValue(*args, **kwargs):
 | |
|         """GetValue(self) -> String"""
 | |
|         return _gizmos.LEDNumberCtrl_GetValue(*args, **kwargs)
 | |
| 
 | |
|     def SetAlignment(*args, **kwargs):
 | |
|         """SetAlignment(self, int Alignment, bool Redraw=True)"""
 | |
|         return _gizmos.LEDNumberCtrl_SetAlignment(*args, **kwargs)
 | |
| 
 | |
|     def SetDrawFaded(*args, **kwargs):
 | |
|         """SetDrawFaded(self, bool DrawFaded, bool Redraw=True)"""
 | |
|         return _gizmos.LEDNumberCtrl_SetDrawFaded(*args, **kwargs)
 | |
| 
 | |
|     def SetValue(*args, **kwargs):
 | |
|         """SetValue(self, String Value, bool Redraw=True)"""
 | |
|         return _gizmos.LEDNumberCtrl_SetValue(*args, **kwargs)
 | |
| 
 | |
| 
 | |
| class LEDNumberCtrlPtr(LEDNumberCtrl):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = LEDNumberCtrl
 | |
| _gizmos.LEDNumberCtrl_swigregister(LEDNumberCtrlPtr)
 | |
| 
 | |
| def PreLEDNumberCtrl(*args, **kwargs):
 | |
|     """PreLEDNumberCtrl() -> LEDNumberCtrl"""
 | |
|     val = _gizmos.new_PreLEDNumberCtrl(*args, **kwargs)
 | |
|     val.thisown = 1
 | |
|     return val
 | |
| 
 | |
| TL_ALIGN_LEFT = _gizmos.TL_ALIGN_LEFT
 | |
| TL_ALIGN_RIGHT = _gizmos.TL_ALIGN_RIGHT
 | |
| TL_ALIGN_CENTER = _gizmos.TL_ALIGN_CENTER
 | |
| TREE_HITTEST_ONITEMCOLUMN = _gizmos.TREE_HITTEST_ONITEMCOLUMN
 | |
| TL_SEARCH_VISIBLE = _gizmos.TL_SEARCH_VISIBLE
 | |
| TL_SEARCH_LEVEL = _gizmos.TL_SEARCH_LEVEL
 | |
| TL_SEARCH_FULL = _gizmos.TL_SEARCH_FULL
 | |
| TL_SEARCH_PARTIAL = _gizmos.TL_SEARCH_PARTIAL
 | |
| TL_SEARCH_NOCASE = _gizmos.TL_SEARCH_NOCASE
 | |
| TR_DONT_ADJUST_MAC = _gizmos.TR_DONT_ADJUST_MAC
 | |
| wx.TR_DONT_ADJUST_MAC = TR_DONT_ADJUST_MAC 
 | |
| class TreeListColumnInfo(_core.Object):
 | |
|     """Proxy of C++ TreeListColumnInfo class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxTreeListColumnInfo instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, String text=EmptyString, int image=-1, size_t width=100, 
 | |
|             bool shown=True, int alignment=TL_ALIGN_LEFT) -> TreeListColumnInfo
 | |
|         """
 | |
|         newobj = _gizmos.new_TreeListColumnInfo(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|     def GetShown(*args, **kwargs):
 | |
|         """GetShown(self) -> bool"""
 | |
|         return _gizmos.TreeListColumnInfo_GetShown(*args, **kwargs)
 | |
| 
 | |
|     def GetAlignment(*args, **kwargs):
 | |
|         """GetAlignment(self) -> int"""
 | |
|         return _gizmos.TreeListColumnInfo_GetAlignment(*args, **kwargs)
 | |
| 
 | |
|     def GetText(*args, **kwargs):
 | |
|         """GetText(self) -> String"""
 | |
|         return _gizmos.TreeListColumnInfo_GetText(*args, **kwargs)
 | |
| 
 | |
|     def GetImage(*args, **kwargs):
 | |
|         """GetImage(self) -> int"""
 | |
|         return _gizmos.TreeListColumnInfo_GetImage(*args, **kwargs)
 | |
| 
 | |
|     def GetSelectedImage(*args, **kwargs):
 | |
|         """GetSelectedImage(self) -> int"""
 | |
|         return _gizmos.TreeListColumnInfo_GetSelectedImage(*args, **kwargs)
 | |
| 
 | |
|     def GetWidth(*args, **kwargs):
 | |
|         """GetWidth(self) -> size_t"""
 | |
|         return _gizmos.TreeListColumnInfo_GetWidth(*args, **kwargs)
 | |
| 
 | |
|     def SetShown(*args, **kwargs):
 | |
|         """SetShown(self, bool shown)"""
 | |
|         return _gizmos.TreeListColumnInfo_SetShown(*args, **kwargs)
 | |
| 
 | |
|     def SetAlignment(*args, **kwargs):
 | |
|         """SetAlignment(self, int alignment)"""
 | |
|         return _gizmos.TreeListColumnInfo_SetAlignment(*args, **kwargs)
 | |
| 
 | |
|     def SetText(*args, **kwargs):
 | |
|         """SetText(self, String text)"""
 | |
|         return _gizmos.TreeListColumnInfo_SetText(*args, **kwargs)
 | |
| 
 | |
|     def SetImage(*args, **kwargs):
 | |
|         """SetImage(self, int image)"""
 | |
|         return _gizmos.TreeListColumnInfo_SetImage(*args, **kwargs)
 | |
| 
 | |
|     def SetSelectedImage(*args, **kwargs):
 | |
|         """SetSelectedImage(self, int image)"""
 | |
|         return _gizmos.TreeListColumnInfo_SetSelectedImage(*args, **kwargs)
 | |
| 
 | |
|     def SetWidth(*args, **kwargs):
 | |
|         """SetWidth(self, size_t with)"""
 | |
|         return _gizmos.TreeListColumnInfo_SetWidth(*args, **kwargs)
 | |
| 
 | |
| 
 | |
| class TreeListColumnInfoPtr(TreeListColumnInfo):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = TreeListColumnInfo
 | |
| _gizmos.TreeListColumnInfo_swigregister(TreeListColumnInfoPtr)
 | |
| 
 | |
| class TreeListCtrl(_core.Control):
 | |
|     """Proxy of C++ TreeListCtrl class"""
 | |
|     def __repr__(self):
 | |
|         return "<%s.%s; proxy of C++ wxPyTreeListCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         """
 | |
|         __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 | |
|             Validator validator=DefaultValidator, 
 | |
|             String name=TreeListCtrlNameStr) -> TreeListCtrl
 | |
|         """
 | |
|         newobj = _gizmos.new_TreeListCtrl(*args, **kwargs)
 | |
|         self.this = newobj.this
 | |
|         self.thisown = 1
 | |
|         del newobj.thisown
 | |
|         self._setOORInfo(self);self._setCallbackInfo(self, TreeListCtrl)
 | |
| 
 | |
|     def Create(*args, **kwargs):
 | |
|         """
 | |
|         Create(self, Window parent, int id=-1, Point pos=DefaultPosition, 
 | |
|             Size size=DefaultSize, long style=TR_DEFAULT_STYLE, 
 | |
|             Validator validator=DefaultValidator, 
 | |
|             String name=TreeListCtrlNameStr) -> bool
 | |
| 
 | |
|         Do the 2nd phase and create the GUI control.
 | |
|         """
 | |
|         return _gizmos.TreeListCtrl_Create(*args, **kwargs)
 | |
| 
 | |
|     def _setCallbackInfo(*args, **kwargs):
 | |
|         """_setCallbackInfo(self, PyObject self, PyObject _class)"""
 | |
|         return _gizmos.TreeListCtrl__setCallbackInfo(*args, **kwargs)
 | |
| 
 | |
|     def GetCount(*args, **kwargs):
 | |
|         """GetCount(self) -> size_t"""
 | |
|         return _gizmos.TreeListCtrl_GetCount(*args, **kwargs)
 | |
| 
 | |
|     def GetIndent(*args, **kwargs):
 | |
|         """GetIndent(self) -> unsigned int"""
 | |
|         return _gizmos.TreeListCtrl_GetIndent(*args, **kwargs)
 | |
| 
 | |
|     def SetIndent(*args, **kwargs):
 | |
|         """SetIndent(self, unsigned int indent)"""
 | |
|         return _gizmos.TreeListCtrl_SetIndent(*args, **kwargs)
 | |
| 
 | |
|     def GetLineSpacing(*args, **kwargs):
 | |
|         """GetLineSpacing(self) -> unsigned int"""
 | |
|         return _gizmos.TreeListCtrl_GetLineSpacing(*args, **kwargs)
 | |
| 
 | |
|     def SetLineSpacing(*args, **kwargs):
 | |
|         """SetLineSpacing(self, unsigned int spacing)"""
 | |
|         return _gizmos.TreeListCtrl_SetLineSpacing(*args, **kwargs)
 | |
| 
 | |
|     def GetImageList(*args, **kwargs):
 | |
|         """GetImageList(self) -> ImageList"""
 | |
|         return _gizmos.TreeListCtrl_GetImageList(*args, **kwargs)
 | |
| 
 | |
|     def GetStateImageList(*args, **kwargs):
 | |
|         """GetStateImageList(self) -> ImageList"""
 | |
|         return _gizmos.TreeListCtrl_GetStateImageList(*args, **kwargs)
 | |
| 
 | |
|     def GetButtonsImageList(*args, **kwargs):
 | |
|         """GetButtonsImageList(self) -> ImageList"""
 | |
|         return _gizmos.TreeListCtrl_GetButtonsImageList(*args, **kwargs)
 | |
| 
 | |
|     def SetImageList(*args, **kwargs):
 | |
|         """SetImageList(self, ImageList imageList)"""
 | |
|         return _gizmos.TreeListCtrl_SetImageList(*args, **kwargs)
 | |
| 
 | |
|     def SetStateImageList(*args, **kwargs):
 | |
|         """SetStateImageList(self, ImageList imageList)"""
 | |
|         return _gizmos.TreeListCtrl_SetStateImageList(*args, **kwargs)
 | |
| 
 | |
|     def SetButtonsImageList(*args, **kwargs):
 | |
|         """SetButtonsImageList(self, ImageList imageList)"""
 | |
|         return _gizmos.TreeListCtrl_SetButtonsImageList(*args, **kwargs)
 | |
| 
 | |
|     def AssignImageList(*args, **kwargs):
 | |
|         """AssignImageList(self, ImageList imageList)"""
 | |
|         return _gizmos.TreeListCtrl_AssignImageList(*args, **kwargs)
 | |
| 
 | |
|     def AssignStateImageList(*args, **kwargs):
 | |
|         """AssignStateImageList(self, ImageList imageList)"""
 | |
|         return _gizmos.TreeListCtrl_AssignStateImageList(*args, **kwargs)
 | |
| 
 | |
|     def AssignButtonsImageList(*args, **kwargs):
 | |
|         """AssignButtonsImageList(self, ImageList imageList)"""
 | |
|         return _gizmos.TreeListCtrl_AssignButtonsImageList(*args, **kwargs)
 | |
| 
 | |
|     def AddColumn(*args, **kwargs):
 | |
|         """AddColumn(self, String text)"""
 | |
|         return _gizmos.TreeListCtrl_AddColumn(*args, **kwargs)
 | |
| 
 | |
|     def AddColumnInfo(*args, **kwargs):
 | |
|         """AddColumnInfo(self, TreeListColumnInfo col)"""
 | |
|         return _gizmos.TreeListCtrl_AddColumnInfo(*args, **kwargs)
 | |
| 
 | |
|     def InsertColumn(*args, **kwargs):
 | |
|         """InsertColumn(self, size_t before, String text)"""
 | |
|         return _gizmos.TreeListCtrl_InsertColumn(*args, **kwargs)
 | |
| 
 | |
|     def InsertColumnInfo(*args, **kwargs):
 | |
|         """InsertColumnInfo(self, size_t before, TreeListColumnInfo col)"""
 | |
|         return _gizmos.TreeListCtrl_InsertColumnInfo(*args, **kwargs)
 | |
| 
 | |
|     def RemoveColumn(*args, **kwargs):
 | |
|         """RemoveColumn(self, size_t column)"""
 | |
|         return _gizmos.TreeListCtrl_RemoveColumn(*args, **kwargs)
 | |
| 
 | |
|     def GetColumnCount(*args, **kwargs):
 | |
|         """GetColumnCount(self) -> size_t"""
 | |
|         return _gizmos.TreeListCtrl_GetColumnCount(*args, **kwargs)
 | |
| 
 | |
|     def SetColumnWidth(*args, **kwargs):
 | |
|         """SetColumnWidth(self, size_t column, size_t width)"""
 | |
|         return _gizmos.TreeListCtrl_SetColumnWidth(*args, **kwargs)
 | |
| 
 | |
|     def GetColumnWidth(*args, **kwargs):
 | |
|         """GetColumnWidth(self, size_t column) -> int"""
 | |
|         return _gizmos.TreeListCtrl_GetColumnWidth(*args, **kwargs)
 | |
| 
 | |
|     def SetMainColumn(*args, **kwargs):
 | |
|         """SetMainColumn(self, size_t column)"""
 | |
|         return _gizmos.TreeListCtrl_SetMainColumn(*args, **kwargs)
 | |
| 
 | |
|     def GetMainColumn(*args, **kwargs):
 | |
|         """GetMainColumn(self) -> size_t"""
 | |
|         return _gizmos.TreeListCtrl_GetMainColumn(*args, **kwargs)
 | |
| 
 | |
|     def SetColumnText(*args, **kwargs):
 | |
|         """SetColumnText(self, size_t column, String text)"""
 | |
|         return _gizmos.TreeListCtrl_SetColumnText(*args, **kwargs)
 | |
| 
 | |
|     def GetColumnText(*args, **kwargs):
 | |
|         """GetColumnText(self, size_t column) -> String"""
 | |
|         return _gizmos.TreeListCtrl_GetColumnText(*args, **kwargs)
 | |
| 
 | |
|     def SetColumn(*args, **kwargs):
 | |
|         """SetColumn(self, size_t column, TreeListColumnInfo info)"""
 | |
|         return _gizmos.TreeListCtrl_SetColumn(*args, **kwargs)
 | |
| 
 | |
|     def GetColumn(*args, **kwargs):
 | |
|         """GetColumn(self, size_t column) -> TreeListColumnInfo"""
 | |
|         return _gizmos.TreeListCtrl_GetColumn(*args, **kwargs)
 | |
| 
 | |
|     def SetColumnAlignment(*args, **kwargs):
 | |
|         """SetColumnAlignment(self, size_t column, int align)"""
 | |
|         return _gizmos.TreeListCtrl_SetColumnAlignment(*args, **kwargs)
 | |
| 
 | |
|     def GetColumnAlignment(*args, **kwargs):
 | |
|         """GetColumnAlignment(self, size_t column) -> int"""
 | |
|         return _gizmos.TreeListCtrl_GetColumnAlignment(*args, **kwargs)
 | |
| 
 | |
|     def SetColumnImage(*args, **kwargs):
 | |
|         """SetColumnImage(self, size_t column, int image)"""
 | |
|         return _gizmos.TreeListCtrl_SetColumnImage(*args, **kwargs)
 | |
| 
 | |
|     def GetColumnImage(*args, **kwargs):
 | |
|         """GetColumnImage(self, size_t column) -> int"""
 | |
|         return _gizmos.TreeListCtrl_GetColumnImage(*args, **kwargs)
 | |
| 
 | |
|     def ShowColumn(*args, **kwargs):
 | |
|         """ShowColumn(self, size_t column, bool shown)"""
 | |
|         return _gizmos.TreeListCtrl_ShowColumn(*args, **kwargs)
 | |
| 
 | |
|     def IsColumnShown(*args, **kwargs):
 | |
|         """IsColumnShown(self, size_t column) -> bool"""
 | |
|         return _gizmos.TreeListCtrl_IsColumnShown(*args, **kwargs)
 | |
| 
 | |
|     def GetItemText(*args, **kwargs):
 | |
|         """GetItemText(self, TreeItemId item, int column=-1) -> String"""
 | |
|         return _gizmos.TreeListCtrl_GetItemText(*args, **kwargs)
 | |
| 
 | |
|     def GetItemImage(*args, **kwargs):
 | |
|         """GetItemImage(self, TreeItemId item, int column=-1, int which=TreeItemIcon_Normal) -> int"""
 | |
|         return _gizmos.TreeListCtrl_GetItemImage(*args, **kwargs)
 | |
| 
 | |
|     def SetItemText(*args, **kwargs):
 | |
|         """SetItemText(self, TreeItemId item, String text, int column=-1)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemText(*args, **kwargs)
 | |
| 
 | |
|     def SetItemImage(*args, **kwargs):
 | |
|         """SetItemImage(self, TreeItemId item, int image, int column=-1, int which=TreeItemIcon_Normal)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemImage(*args, **kwargs)
 | |
| 
 | |
|     def GetItemData(*args, **kwargs):
 | |
|         """GetItemData(self, TreeItemId item) -> TreeItemData"""
 | |
|         return _gizmos.TreeListCtrl_GetItemData(*args, **kwargs)
 | |
| 
 | |
|     def SetItemData(*args, **kwargs):
 | |
|         """SetItemData(self, TreeItemId item, TreeItemData data)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemData(*args, **kwargs)
 | |
| 
 | |
|     def GetItemPyData(*args, **kwargs):
 | |
|         """GetItemPyData(self, TreeItemId item) -> PyObject"""
 | |
|         return _gizmos.TreeListCtrl_GetItemPyData(*args, **kwargs)
 | |
| 
 | |
|     def SetItemPyData(*args, **kwargs):
 | |
|         """SetItemPyData(self, TreeItemId item, PyObject obj)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemPyData(*args, **kwargs)
 | |
| 
 | |
|     GetPyData = GetItemPyData 
 | |
|     SetPyData = SetItemPyData 
 | |
|     def SetItemHasChildren(*args, **kwargs):
 | |
|         """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemHasChildren(*args, **kwargs)
 | |
| 
 | |
|     def SetItemBold(*args, **kwargs):
 | |
|         """SetItemBold(self, TreeItemId item, bool bold=True)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemBold(*args, **kwargs)
 | |
| 
 | |
|     def SetItemTextColour(*args, **kwargs):
 | |
|         """SetItemTextColour(self, TreeItemId item, Colour colour)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemTextColour(*args, **kwargs)
 | |
| 
 | |
|     def SetItemBackgroundColour(*args, **kwargs):
 | |
|         """SetItemBackgroundColour(self, TreeItemId item, Colour colour)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemBackgroundColour(*args, **kwargs)
 | |
| 
 | |
|     def SetItemFont(*args, **kwargs):
 | |
|         """SetItemFont(self, TreeItemId item, Font font)"""
 | |
|         return _gizmos.TreeListCtrl_SetItemFont(*args, **kwargs)
 | |
| 
 | |
|     def GetItemBold(*args, **kwargs):
 | |
|         """GetItemBold(self, TreeItemId item) -> bool"""
 | |
|         return _gizmos.TreeListCtrl_GetItemBold(*args, **kwargs)
 | |
| 
 | |
|     def GetItemTextColour(*args, **kwargs):
 | |
|         """GetItemTextColour(self, TreeItemId item) -> Colour"""
 | |
|         return _gizmos.TreeListCtrl_GetItemTextColour(*args, **kwargs)
 | |
| 
 | |
|     def GetItemBackgroundColour(*args, **kwargs):
 | |
|         """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
 | |
|         return _gizmos.TreeListCtrl_GetItemBackgroundColour(*args, **kwargs)
 | |
| 
 | |
|     def GetItemFont(*args, **kwargs):
 | |
|         """GetItemFont(self, TreeItemId item) -> Font"""
 | |
|         return _gizmos.TreeListCtrl_GetItemFont(*args, **kwargs)
 | |
| 
 | |
|     def IsVisible(*args, **kwargs):
 | |
|         """IsVisible(self, TreeItemId item) -> bool"""
 | |
|         return _gizmos.TreeListCtrl_IsVisible(*args, **kwargs)
 | |
| 
 | |
|     def ItemHasChildren(*args, **kwargs):
 | |
|         """ItemHasChildren(self, TreeItemId item) -> bool"""
 | |
|         return _gizmos.TreeListCtrl_ItemHasChildren(*args, **kwargs)
 | |
| 
 | |
|     def IsExpanded(*args, **kwargs):
 | |
|         """IsExpanded(self, TreeItemId item) -> bool"""
 | |
|         return _gizmos.TreeListCtrl_IsExpanded(*args, **kwargs)
 | |
| 
 | |
|     def IsSelected(*args, **kwargs):
 | |
|         """IsSelected(self, TreeItemId item) -> bool"""
 | |
|         return _gizmos.TreeListCtrl_IsSelected(*args, **kwargs)
 | |
| 
 | |
|     def IsBold(*args, **kwargs):
 | |
|         """IsBold(self, TreeItemId item) -> bool"""
 | |
|         return _gizmos.TreeListCtrl_IsBold(*args, **kwargs)
 | |
| 
 | |
|     def GetChildrenCount(*args, **kwargs):
 | |
|         """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
 | |
|         return _gizmos.TreeListCtrl_GetChildrenCount(*args, **kwargs)
 | |
| 
 | |
|     def GetRootItem(*args, **kwargs):
 | |
|         """GetRootItem(self) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetRootItem(*args, **kwargs)
 | |
| 
 | |
|     def GetSelection(*args, **kwargs):
 | |
|         """GetSelection(self) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetSelection(*args, **kwargs)
 | |
| 
 | |
|     def GetSelections(*args, **kwargs):
 | |
|         """GetSelections(self) -> PyObject"""
 | |
|         return _gizmos.TreeListCtrl_GetSelections(*args, **kwargs)
 | |
| 
 | |
|     def GetItemParent(*args, **kwargs):
 | |
|         """GetItemParent(self, TreeItemId item) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetItemParent(*args, **kwargs)
 | |
| 
 | |
|     def GetFirstChild(*args, **kwargs):
 | |
|         """GetFirstChild(self, TreeItemId item) -> PyObject"""
 | |
|         return _gizmos.TreeListCtrl_GetFirstChild(*args, **kwargs)
 | |
| 
 | |
|     def GetNextChild(*args, **kwargs):
 | |
|         """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
 | |
|         return _gizmos.TreeListCtrl_GetNextChild(*args, **kwargs)
 | |
| 
 | |
|     def GetLastChild(*args, **kwargs):
 | |
|         """GetLastChild(self, TreeItemId item) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetLastChild(*args, **kwargs)
 | |
| 
 | |
|     def GetNextSibling(*args, **kwargs):
 | |
|         """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetNextSibling(*args, **kwargs)
 | |
| 
 | |
|     def GetPrevSibling(*args, **kwargs):
 | |
|         """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetPrevSibling(*args, **kwargs)
 | |
| 
 | |
|     def GetFirstVisibleItem(*args, **kwargs):
 | |
|         """GetFirstVisibleItem(self) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetFirstVisibleItem(*args, **kwargs)
 | |
| 
 | |
|     def GetNextVisible(*args, **kwargs):
 | |
|         """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetNextVisible(*args, **kwargs)
 | |
| 
 | |
|     def GetPrevVisible(*args, **kwargs):
 | |
|         """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetPrevVisible(*args, **kwargs)
 | |
| 
 | |
|     def GetNext(*args, **kwargs):
 | |
|         """GetNext(self, TreeItemId item) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_GetNext(*args, **kwargs)
 | |
| 
 | |
|     def AddRoot(*args, **kwargs):
 | |
|         """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_AddRoot(*args, **kwargs)
 | |
| 
 | |
|     def PrependItem(*args, **kwargs):
 | |
|         """
 | |
|         PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1, 
 | |
|             TreeItemData data=None) -> TreeItemId
 | |
|         """
 | |
|         return _gizmos.TreeListCtrl_PrependItem(*args, **kwargs)
 | |
| 
 | |
|     def InsertItem(*args, **kwargs):
 | |
|         """
 | |
|         InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text, 
 | |
|             int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
 | |
|         """
 | |
|         return _gizmos.TreeListCtrl_InsertItem(*args, **kwargs)
 | |
| 
 | |
|     def InsertItemBefore(*args, **kwargs):
 | |
|         """
 | |
|         InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1, 
 | |
|             int selectedImage=-1, TreeItemData data=None) -> TreeItemId
 | |
|         """
 | |
|         return _gizmos.TreeListCtrl_InsertItemBefore(*args, **kwargs)
 | |
| 
 | |
|     def AppendItem(*args, **kwargs):
 | |
|         """
 | |
|         AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1, 
 | |
|             TreeItemData data=None) -> TreeItemId
 | |
|         """
 | |
|         return _gizmos.TreeListCtrl_AppendItem(*args, **kwargs)
 | |
| 
 | |
|     def Delete(*args, **kwargs):
 | |
|         """Delete(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_Delete(*args, **kwargs)
 | |
| 
 | |
|     def DeleteChildren(*args, **kwargs):
 | |
|         """DeleteChildren(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_DeleteChildren(*args, **kwargs)
 | |
| 
 | |
|     def DeleteAllItems(*args, **kwargs):
 | |
|         """DeleteAllItems(self)"""
 | |
|         return _gizmos.TreeListCtrl_DeleteAllItems(*args, **kwargs)
 | |
| 
 | |
|     def Expand(*args, **kwargs):
 | |
|         """Expand(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_Expand(*args, **kwargs)
 | |
| 
 | |
|     def ExpandAll(*args, **kwargs):
 | |
|         """ExpandAll(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_ExpandAll(*args, **kwargs)
 | |
| 
 | |
|     def Collapse(*args, **kwargs):
 | |
|         """Collapse(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_Collapse(*args, **kwargs)
 | |
| 
 | |
|     def CollapseAndReset(*args, **kwargs):
 | |
|         """CollapseAndReset(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_CollapseAndReset(*args, **kwargs)
 | |
| 
 | |
|     def Toggle(*args, **kwargs):
 | |
|         """Toggle(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_Toggle(*args, **kwargs)
 | |
| 
 | |
|     def Unselect(*args, **kwargs):
 | |
|         """Unselect(self)"""
 | |
|         return _gizmos.TreeListCtrl_Unselect(*args, **kwargs)
 | |
| 
 | |
|     def UnselectAll(*args, **kwargs):
 | |
|         """UnselectAll(self)"""
 | |
|         return _gizmos.TreeListCtrl_UnselectAll(*args, **kwargs)
 | |
| 
 | |
|     def SelectItem(*args, **kwargs):
 | |
|         """SelectItem(self, TreeItemId item, bool unselect_others=True, bool extended_select=False)"""
 | |
|         return _gizmos.TreeListCtrl_SelectItem(*args, **kwargs)
 | |
| 
 | |
|     def SelectAll(*args, **kwargs):
 | |
|         """SelectAll(self, bool extended_select=False)"""
 | |
|         return _gizmos.TreeListCtrl_SelectAll(*args, **kwargs)
 | |
| 
 | |
|     def EnsureVisible(*args, **kwargs):
 | |
|         """EnsureVisible(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_EnsureVisible(*args, **kwargs)
 | |
| 
 | |
|     def ScrollTo(*args, **kwargs):
 | |
|         """ScrollTo(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_ScrollTo(*args, **kwargs)
 | |
| 
 | |
|     def HitTest(*args, **kwargs):
 | |
|         """HitTest(self, Point point, int OUTPUT, int OUTPUT) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_HitTest(*args, **kwargs)
 | |
| 
 | |
|     def GetBoundingRect(*args, **kwargs):
 | |
|         """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
 | |
|         return _gizmos.TreeListCtrl_GetBoundingRect(*args, **kwargs)
 | |
| 
 | |
|     def EditLabel(*args, **kwargs):
 | |
|         """EditLabel(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_EditLabel(*args, **kwargs)
 | |
| 
 | |
|     def Edit(*args, **kwargs):
 | |
|         """Edit(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_Edit(*args, **kwargs)
 | |
| 
 | |
|     def SortChildren(*args, **kwargs):
 | |
|         """SortChildren(self, TreeItemId item)"""
 | |
|         return _gizmos.TreeListCtrl_SortChildren(*args, **kwargs)
 | |
| 
 | |
|     def FindItem(*args, **kwargs):
 | |
|         """FindItem(self, TreeItemId item, String str, int flags=0) -> TreeItemId"""
 | |
|         return _gizmos.TreeListCtrl_FindItem(*args, **kwargs)
 | |
| 
 | |
|     def GetHeaderWindow(*args, **kwargs):
 | |
|         """GetHeaderWindow(self) -> Window"""
 | |
|         return _gizmos.TreeListCtrl_GetHeaderWindow(*args, **kwargs)
 | |
| 
 | |
|     def GetMainWindow(*args, **kwargs):
 | |
|         """GetMainWindow(self) -> ScrolledWindow"""
 | |
|         return _gizmos.TreeListCtrl_GetMainWindow(*args, **kwargs)
 | |
| 
 | |
| 
 | |
| class TreeListCtrlPtr(TreeListCtrl):
 | |
|     def __init__(self, this):
 | |
|         self.this = this
 | |
|         if not hasattr(self,"thisown"): self.thisown = 0
 | |
|         self.__class__ = TreeListCtrl
 | |
| _gizmos.TreeListCtrl_swigregister(TreeListCtrlPtr)
 | |
| 
 | |
| def PreTreeListCtrl(*args, **kwargs):
 | |
|     """PreTreeListCtrl() -> TreeListCtrl"""
 | |
|     val = _gizmos.new_PreTreeListCtrl(*args, **kwargs)
 | |
|     val.thisown = 1
 | |
|     return val
 | |
| 
 | |
| 
 |