]> git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/activex.py
RemoveItem should return the same object it is passed, but adjusted
[wxWidgets.git] / wxPython / wxPython / activex.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.activex
16
17 sys.modules['wxPython.wx'] = _wx
18 del sys, _wx
19
20
21 # Now assign all the reverse-renamed names:
22 CLSID = wx.activex.CLSID
23 wxParamX = wx.activex.ParamX
24 wxFuncX = wx.activex.FuncX
25 wxPropX = wx.activex.PropX
26 wxParamXArray = wx.activex.ParamXArray
27 wxFuncXArray = wx.activex.FuncXArray
28 wxPropXArray = wx.activex.PropXArray
29 wxActiveXWindow = wx.activex.ActiveXWindow
30 RegisterActiveXEvent = wx.activex.RegisterActiveXEvent
31 wxActiveXEvent = wx.activex.ActiveXEvent
32 wxIEHtmlWindowBase = wx.activex.IEHtmlWindowBase
33
34
35 d = globals()
36 for k, v in wx.activex.__dict__.iteritems():
37 if k.startswith('EVT'):
38 d[k] = v
39 del d, k, v
40
41
42