1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/ole/automtn.h
3 // Purpose: interface of wxAutomationObject
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
10 Automation object creation flags.
12 These flags can be used with wxAutomationObject::GetInstance().
16 enum wxAutomationInstanceFlags
19 Only use the existing instance, never create a new one.
21 This flag can be used to forbid the creation of a new instance if none
24 wxAutomationInstance_UseExistingOnly
= 0,
27 Create a new instance if there are no existing ones.
29 This flag corresponds to the default behaviour of
30 wxAutomationObject::GetInstance() and means that if getting an existing
31 instance failed, we should call wxAutomationObject::CreateInstance() to
34 wxAutomationInstance_CreateIfNeeded
= 1
39 @class wxAutomationObject
41 The @b wxAutomationObject class represents an OLE automation object containing
43 an IDispatch pointer. It contains a number of functions that make it easy to
45 automation operations, and set and get properties. The class makes heavy use of
48 The usage of these classes is quite close to OLE automation usage in Visual
50 high-level, and the application can specify multiple properties in a single
51 string. The following example
52 gets the current Excel instance, and if it exists, makes the active cell bold.
55 wxAutomationObject excelObject;
56 if (excelObject.GetInstance("Excel.Application"))
57 excelObject.PutProperty("ActiveCell.Font.Bold", @true);
60 Note that this class obviously works under Windows only.
69 class wxAutomationObject
: public wxObject
73 Constructor, taking an optional IDispatch pointer which will be released when
77 wxAutomationObject(WXIDISPATCH
* dispatchPtr
= NULL
);
80 Destructor. If the internal IDispatch pointer is non-null, it will be released.
82 ~wxAutomationObject();
86 Calls an automation method for this object. The first form takes a method name,
88 arguments, and an array of variants. The second form takes a method name and
90 constant references to variants. Since the variant class has constructors for
92 data types, and C++ provides temporary objects automatically, both of the
94 are syntactically valid:
96 Note that @a method can contain dot-separated property names, to save the
98 needing to call GetProperty several times using several temporary objects. For
101 wxVariant
CallMethod(const wxString
& method
, int noArgs
,
102 wxVariant args
[]) const;
103 const wxVariant
CallMethod(const wxString
& method
, ... ) const;
107 Creates a new object based on the ProgID, returning @true if the object was
108 successfully created,
111 bool CreateInstance(const wxString
& progId
) const;
114 Checks if the object is in a valid state.
116 Returns @true if the object was successfully initialized or @false if
117 it has no valid IDispatch pointer.
119 @see GetDispatchPtr()
124 Gets the IDispatch pointer.
126 Notice that the return value of this function is an untyped pointer but
127 it can be safely cast to @c IDispatch.
129 void* GetDispatchPtr() const;
132 Retrieves the current object associated with the specified ProgID, and
133 attaches the IDispatch pointer to this object.
135 If attaching to an existing object failed and @a flags includes
136 wxAutomationInstance_CreateIfNeeded flag, a new object will be created.
138 Returns @true if a pointer was successfully retrieved, @false
141 Note that this cannot cope with two instances of a given OLE object being
142 active simultaneously,
143 such as two copies of Excel running. Which object is referenced cannot
144 currently be specified.
146 @param progId COM ProgID, e.g. "Excel.Application"
147 @param flags The creation flags (this parameters was added in wxWidgets
150 bool GetInstance(const wxString
& progId
,
151 int flags
= wxAutomationInstance_CreateIfNeeded
) const;
154 Retrieves a property from this object, assumed to be a dispatch pointer, and
155 initialises @a obj with it.
156 To avoid having to deal with IDispatch pointers directly, use this function in
158 to GetProperty() when retrieving objects
160 Note that an IDispatch pointer is stored as a void* pointer in wxVariant
165 bool GetObject(wxAutomationObject
& obj
, const wxString
& property
,
167 wxVariant args
[] = NULL
) const;
171 Gets a property value from 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 wxVariant
GetProperty(const wxString
& property
, int noArgs
,
186 wxVariant args
[]) const;
187 const wxVariant
GetProperty(const wxString
& property
, ... ) const;
191 This function is a low-level implementation that allows access to the IDispatch
193 It is not meant to be called directly by the application, but is used by other
194 convenience functions.
197 The member function or property name.
199 Bitlist: may contain DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF,
202 Return value (ignored if there is no return value)
204 Number of arguments in args or ptrArgs.
206 If non-null, contains an array of variants.
208 If non-null, contains an array of constant pointers to variants.
210 @return @true if the operation was successful, @false otherwise.
212 @remarks Two types of argument array are provided, so that when possible
213 pointers are used for efficiency.
215 bool Invoke(const wxString
& member
, int action
,
216 wxVariant
& retValue
, int noArgs
,
218 const wxVariant
* ptrArgs
[] = 0) const;
222 Puts a property value into this object. The first form takes a property name,
224 arguments, and an array of variants. The second form takes a property name and
226 constant references to variants. Since the variant class has constructors for
228 data types, and C++ provides temporary objects automatically, both of the
230 are syntactically valid:
232 Note that @a property can contain dot-separated property names, to save the
234 needing to call GetProperty several times using several temporary objects.
236 bool PutProperty(const wxString
& property
, int noArgs
,
238 const bool PutProperty(const wxString
& property
, ... );
242 Sets the IDispatch pointer. This function does not check if there is already an
244 You may need to cast from IDispatch* to WXIDISPATCH* when calling this function.
246 void SetDispatchPtr(WXIDISPATCH
* dispatchPtr
);