]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/activexwrapper.py
1 #----------------------------------------------------------------------
2 # Name: wxPython.lib.activexwrapper
3 # Purpose: a wxWindow derived class that can hold an ActiveX control
8 # Copyright: (c) 2000 by Total Control Software
9 # Licence: wxWindows license
10 #----------------------------------------------------------------------
12 from wxPython
.wx
import *
16 import pywin
.mfc
.activex
17 import win32com
.client
19 raise ImportError( "ActiveXWrapper requires PythonWin. Please install the win32all-xxx.exe package.")
21 ##from win32con import WS_TABSTOP, WS_VISIBLE
22 WS_TABSTOP
= 0x00010000
23 WS_VISIBLE
= 0x10000000
25 #----------------------------------------------------------------------
28 def MakeActiveXClass(CoClass
, eventClass
=None, eventObj
=None):
30 Dynamically construct a new class that derives from wxWindow, the
31 ActiveX control and the appropriate COM classes. This new class
32 can be used just like the wxWindow class, but will also respond
33 appropriately to the methods and properties of the COM object. If
34 this class, a derived class or a mix-in class has method names
35 that match the COM object's event names, they will be called
38 CoClass -- A COM control class from a module generated by
39 makepy.py from a COM TypeLibrary. Can also accept a
42 eventClass -- If given, this class will be added to the set of
43 base classes that the new class is drived from. It is
44 good for mix-in classes for catching events.
46 eventObj -- If given, this object will be searched for attributes
47 by the new class's __getattr__ method, (like a mix-in
48 object.) This is useful if you want to catch COM
49 callbacks in an existing object, (such as the parent
55 if type(CoClass
) == type(""):
56 # use the CLSID to get the real class
57 CoClass
= win32com
.client
.CLSIDToClass(CoClass
)
59 # determine the base classes
60 axEventClass
= CoClass
.default_source
61 baseClasses
= [wxWindow
, pywin
.mfc
.activex
.Control
, CoClass
, axEventClass
]
63 baseClasses
.append(eventClass
)
64 baseClasses
= tuple(baseClasses
)
66 # define the class attributes
67 className
= 'AXControl_'+CoClass
.__name
__
68 classDict
= { '__init__' : axw__init__
,
69 '__getattr__' : axw__getattr__
,
70 'axw_OnSize' : axw_OnSize
,
73 '_eventBase' : axEventClass
,
74 '_eventObj' : eventObj
,
75 'Cleanup' : axw_Cleanup
,
78 # make a new class object
80 classObj
= new
.classobj(className
, baseClasses
, classDict
)
86 # These functions will be used as methods in the new class
87 def axw__init__(self
, parent
, ID
, pos
=wxDefaultPosition
, size
=wxDefaultSize
, style
=0):
89 pywin
.mfc
.activex
.Control
.__init
__(self
)
90 wxWindow
.__init
__(self
, parent
, -1, pos
, size
, style
)
92 win32ui
.EnableControlContainer()
93 self
._eventObj
= self
._eventObj
# move from class to instance
95 # create a pythonwin wrapper around this wxWindow
96 handle
= self
.GetHandle()
97 self
._wnd
= win32ui
.CreateWindowFromHandle(handle
)
101 self
.CreateControl(self
._name
, WS_TABSTOP | WS_VISIBLE
,
102 (0, 0, sz
.width
, sz
.height
), self
._wnd
, ID
)
104 # init the ax events part of the object
105 self
._eventBase
.__init
__(self
, self
._dispobj
_)
107 # hook some wx events
108 EVT_SIZE(self
, self
.axw_OnSize
)
109 EVT_ERASE_BACKGROUND(self
, self
.axw_OEB
)
112 def axw__getattr__(self
, attr
):
114 return pywin
.mfc
.activex
.Control
.__getattr
__(self
, attr
)
115 except AttributeError:
117 eo
= self
.__dict
__['_eventObj']
118 return getattr(eo
, attr
)
119 except AttributeError:
120 raise AttributeError('Attribute not found: %s' % attr
)
123 def axw_OnSize(self
, event
):
124 sz
= self
.GetClientSize() # get wxWindow size
125 self
.MoveWindow((0, 0, sz
.width
, sz
.height
), 1) # move the AXControl
128 def axw_OEB(self
, event
):
132 def axw_Cleanup(self
):