]> git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/gizmos.py
reSWIGged
[wxWidgets.git] / wxPython / wxPython / gizmos.py
1 ## This file reverse renames symbols in the wx package to give
2 ## them their wx prefix again, for backwards compatibility.
3 ##
4 ## Generated by BuildRenamers in config.py
5
6 # This silly stuff here is so the wxPython.wx module doesn't conflict
7 # with the wx package. We need to import modules from the wx package
8 # here, then we'll put the wxPython.wx entry back in sys.modules.
9 import sys
10 _wx = None
11 if sys.modules.has_key('wxPython.wx'):
12 _wx = sys.modules['wxPython.wx']
13 del sys.modules['wxPython.wx']
14
15 import wx.gizmos
16
17 sys.modules['wxPython.wx'] = _wx
18 del sys, _wx
19
20
21 # Now assign all the reverse-renamed names:
22 wxDynamicSashNameStr = wx.gizmos.DynamicSashNameStr
23 wxEditableListBoxNameStr = wx.gizmos.EditableListBoxNameStr
24 wxTreeListCtrlNameStr = wx.gizmos.TreeListCtrlNameStr
25 wxStaticPictureNameStr = wx.gizmos.StaticPictureNameStr
26 wxDS_MANAGE_SCROLLBARS = wx.gizmos.DS_MANAGE_SCROLLBARS
27 wxDS_DRAG_CORNER = wx.gizmos.DS_DRAG_CORNER
28 wxEVT_DYNAMIC_SASH_SPLIT = wx.gizmos.wxEVT_DYNAMIC_SASH_SPLIT
29 wxEVT_DYNAMIC_SASH_UNIFY = wx.gizmos.wxEVT_DYNAMIC_SASH_UNIFY
30 wxDynamicSashSplitEvent = wx.gizmos.DynamicSashSplitEvent
31 wxDynamicSashSplitEventPtr = wx.gizmos.DynamicSashSplitEventPtr
32 wxDynamicSashUnifyEvent = wx.gizmos.DynamicSashUnifyEvent
33 wxDynamicSashUnifyEventPtr = wx.gizmos.DynamicSashUnifyEventPtr
34 wxDynamicSashWindow = wx.gizmos.DynamicSashWindow
35 wxDynamicSashWindowPtr = wx.gizmos.DynamicSashWindowPtr
36 wxPreDynamicSashWindow = wx.gizmos.PreDynamicSashWindow
37 wxEL_ALLOW_NEW = wx.gizmos.EL_ALLOW_NEW
38 wxEL_ALLOW_EDIT = wx.gizmos.EL_ALLOW_EDIT
39 wxEL_ALLOW_DELETE = wx.gizmos.EL_ALLOW_DELETE
40 wxEditableListBox = wx.gizmos.EditableListBox
41 wxEditableListBoxPtr = wx.gizmos.EditableListBoxPtr
42 wxRemotelyScrolledTreeCtrl = wx.gizmos.RemotelyScrolledTreeCtrl
43 wxRemotelyScrolledTreeCtrlPtr = wx.gizmos.RemotelyScrolledTreeCtrlPtr
44 wxTreeCompanionWindow = wx.gizmos.TreeCompanionWindow
45 wxTreeCompanionWindowPtr = wx.gizmos.TreeCompanionWindowPtr
46 wxTreeCompanionWindow = wx.gizmos.TreeCompanionWindow
47 wxThinSplitterWindow = wx.gizmos.ThinSplitterWindow
48 wxThinSplitterWindowPtr = wx.gizmos.ThinSplitterWindowPtr
49 wxSplitterScrolledWindow = wx.gizmos.SplitterScrolledWindow
50 wxSplitterScrolledWindowPtr = wx.gizmos.SplitterScrolledWindowPtr
51 wxLED_ALIGN_LEFT = wx.gizmos.LED_ALIGN_LEFT
52 wxLED_ALIGN_RIGHT = wx.gizmos.LED_ALIGN_RIGHT
53 wxLED_ALIGN_CENTER = wx.gizmos.LED_ALIGN_CENTER
54 wxLED_ALIGN_MASK = wx.gizmos.LED_ALIGN_MASK
55 wxLED_DRAW_FADED = wx.gizmos.LED_DRAW_FADED
56 wxLEDNumberCtrl = wx.gizmos.LEDNumberCtrl
57 wxLEDNumberCtrlPtr = wx.gizmos.LEDNumberCtrlPtr
58 wxPreLEDNumberCtrl = wx.gizmos.PreLEDNumberCtrl
59 wxTL_ALIGN_LEFT = wx.gizmos.TL_ALIGN_LEFT
60 wxTL_ALIGN_RIGHT = wx.gizmos.TL_ALIGN_RIGHT
61 wxTL_ALIGN_CENTER = wx.gizmos.TL_ALIGN_CENTER
62 wxTREE_HITTEST_ONITEMCOLUMN = wx.gizmos.TREE_HITTEST_ONITEMCOLUMN
63 wxTL_SEARCH_VISIBLE = wx.gizmos.TL_SEARCH_VISIBLE
64 wxTL_SEARCH_LEVEL = wx.gizmos.TL_SEARCH_LEVEL
65 wxTL_SEARCH_FULL = wx.gizmos.TL_SEARCH_FULL
66 wxTL_SEARCH_PARTIAL = wx.gizmos.TL_SEARCH_PARTIAL
67 wxTL_SEARCH_NOCASE = wx.gizmos.TL_SEARCH_NOCASE
68 wxTR_DONT_ADJUST_MAC = wx.gizmos.TR_DONT_ADJUST_MAC
69 wxTreeListColumnInfo = wx.gizmos.TreeListColumnInfo
70 wxTreeListColumnInfoPtr = wx.gizmos.TreeListColumnInfoPtr
71 wxTreeListCtrl = wx.gizmos.TreeListCtrl
72 wxTreeListCtrlPtr = wx.gizmos.TreeListCtrlPtr
73 wxTreeListCtrl = wx.gizmos.TreeListCtrl
74 wxPreTreeListCtrl = wx.gizmos.PreTreeListCtrl
75 wxSCALE_HORIZONTAL = wx.gizmos.SCALE_HORIZONTAL
76 wxSCALE_VERTICAL = wx.gizmos.SCALE_VERTICAL
77 wxSCALE_UNIFORM = wx.gizmos.SCALE_UNIFORM
78 wxSCALE_CUSTOM = wx.gizmos.SCALE_CUSTOM
79 wxStaticPicture = wx.gizmos.StaticPicture
80 wxStaticPicturePtr = wx.gizmos.StaticPicturePtr
81 wxPreStaticPicture = wx.gizmos.PreStaticPicture
82
83
84 d = globals()
85 for k, v in wx.gizmos.__dict__.iteritems():
86 if k.startswith('EVT'):
87 d[k] = v
88 del d, k, v
89
90
91