]>
git.saurik.com Git - wxWidgets.git/blob - interface/msw/ole/automtn.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/ole/automtn.h
3 // Purpose: interface of wxAutomationObject
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxAutomationObject
11 @headerfile ole/automtn.h wx/msw/ole/automtn.h
13 The @b wxAutomationObject class represents an OLE automation object containing
15 an IDispatch pointer. It contains a number of functions that make it easy to
17 automation operations, and set and get properties. The class makes heavy use of
20 The usage of these classes is quite close to OLE automation usage in Visual
22 high-level, and the application can specify multiple properties in a single
23 string. The following example
24 gets the current Excel instance, and if it exists, makes the active cell bold.
27 wxAutomationObject excelObject;
28 if (excelObject.GetInstance("Excel.Application"))
29 excelObject.PutProperty("ActiveCell.Font.Bold", @true);
32 Note that this class obviously works under Windows only.
41 class wxAutomationObject
: public wxObject
45 Constructor, taking an optional IDispatch pointer which will be released when
49 wxAutomationObject(WXIDISPATCH
* dispatchPtr
= NULL
);
52 Destructor. If the internal IDispatch pointer is non-null, it will be released.
54 ~wxAutomationObject();
58 Calls an automation method for this object. The first form takes a method name,
60 arguments, and an array of variants. The second form takes a method name and
62 constant references to variants. Since the variant class has constructors for
64 data types, and C++ provides temporary objects automatically, both of the
66 are syntactically valid:
68 Note that @a method can contain dot-separated property names, to save the
70 needing to call GetProperty several times using several temporary objects. For
73 wxVariant
CallMethod(const wxString
& method
, int noArgs
,
74 wxVariant args
[]) const;
75 const wxVariant
CallMethod(const wxString
& method
, ... ) const;
79 Creates a new object based on the class id, returning @true if the object was
83 bool CreateInstance(const wxString
& classId
) const;
86 Gets the IDispatch pointer.
88 IDispatch
* GetDispatchPtr() const;
91 Retrieves the current object associated with a class id, and attaches the
93 to this object. Returns @true if a pointer was successfully retrieved, @false
95 Note that this cannot cope with two instances of a given OLE object being
96 active simultaneously,
97 such as two copies of Excel running. Which object is referenced cannot
98 currently be specified.
100 bool GetInstance(const wxString
& classId
) const;
103 Retrieves a property from this object, assumed to be a dispatch pointer, and
104 initialises @a obj with it.
105 To avoid having to deal with IDispatch pointers directly, use this function in
107 to GetProperty() when retrieving objects
109 Note that an IDispatch pointer is stored as a void* pointer in wxVariant
114 bool GetObject(wxAutomationObject
& obj
, const wxString
& property
,
116 wxVariant args
[] = NULL
) const;
120 Gets a property value from this object. The first form takes a property name,
122 arguments, and an array of variants. The second form takes a property name and
124 constant references to variants. Since the variant class has constructors for
126 data types, and C++ provides temporary objects automatically, both of the
128 are syntactically valid:
130 Note that @a property can contain dot-separated property names, to save the
132 needing to call GetProperty several times using several temporary objects.
134 wxVariant
GetProperty(const wxString
& property
, int noArgs
,
135 wxVariant args
[]) const;
136 const wxVariant
GetProperty(const wxString
& property
, ... ) const;
140 This function is a low-level implementation that allows access to the IDispatch
142 It is not meant to be called directly by the application, but is used by other
143 convenience functions.
146 The member function or property name.
148 Bitlist: may contain DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF,
151 Return value (ignored if there is no return value)
153 Number of arguments in args or ptrArgs.
155 If non-null, contains an array of variants.
157 If non-null, contains an array of constant pointers to variants.
159 @returns @true if the operation was successful, @false otherwise.
161 @remarks Two types of argument array are provided, so that when possible
162 pointers are used for efficiency.
164 bool Invoke(const wxString
& member
, int action
,
165 wxVariant
& retValue
, int noArgs
,
167 const wxVariant
* ptrArgs
[] = 0) const;
171 Puts a property value into this object. The first form takes a property name,
173 arguments, and an array of variants. The second form takes a property name and
175 constant references to variants. Since the variant class has constructors for
177 data types, and C++ provides temporary objects automatically, both of the
179 are syntactically valid:
181 Note that @a property can contain dot-separated property names, to save the
183 needing to call GetProperty several times using several temporary objects.
185 bool PutProperty(const wxString
& property
, int noArgs
,
187 const bool PutProperty(const wxString
& property
, ... );
191 Sets the IDispatch pointer. This function does not check if there is already an
193 You may need to cast from IDispatch* to WXIDISPATCH* when calling this function.
195 void SetDispatchPtr(WXIDISPATCH
* dispatchPtr
);