removed @NULL,@true,@false tags from the function prototypes; fixed * and & displacing in the prototypes; changed @param as discussed on wx-dev; use @see instead of @sa; better indentation for @returns,@remarks,@see paragraphs; other misc fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9,15 +9,15 @@
|
||||
/**
|
||||
@class wxActiveXEvent
|
||||
@headerfile ole/activex.h wx/msw/ole/activex.h
|
||||
|
||||
|
||||
An event class for handling activex events passed from
|
||||
wxActiveXContainer. ActiveX events are basically
|
||||
a function call with the parameters passed through an array of wxVariants along
|
||||
with a return value that is a wxVariant itself. What type the parameters or
|
||||
return value are depends on the context (i.e. what the .idl specifies).
|
||||
|
||||
|
||||
Note that unlike the third party wxActiveX function names are not supported.
|
||||
|
||||
|
||||
@library{wxbase}
|
||||
@category{FIXME}
|
||||
*/
|
||||
@@ -55,24 +55,24 @@ public:
|
||||
/**
|
||||
@class wxActiveXContainer
|
||||
@headerfile ole/activex.h wx/msw/ole/activex.h
|
||||
|
||||
|
||||
wxActiveXContainer is a host for an activex control on Windows (and
|
||||
as such is a platform-specific class). Note that the HWND that the class
|
||||
contains is the actual HWND of the activex control so using dynamic events
|
||||
and connecting to wxEVT_SIZE, for example, will recieve the actual size
|
||||
message sent to the control.
|
||||
|
||||
|
||||
It is somewhat similar to the ATL class CAxWindow in operation.
|
||||
|
||||
|
||||
The size of the activex control's content is generally gauranteed to be that
|
||||
of the client size of the parent of this wxActiveXContainer.
|
||||
|
||||
|
||||
You can also process activex events through wxEVT_ACTIVEX or the
|
||||
corresponding message map macro EVT_ACTIVEX.
|
||||
|
||||
|
||||
@library{wxbase}
|
||||
@category{FIXME}
|
||||
|
||||
|
||||
@seealso
|
||||
wxActiveXEvent
|
||||
*/
|
||||
@@ -82,14 +82,12 @@ public:
|
||||
/**
|
||||
Creates this activex container.
|
||||
|
||||
@param parent
|
||||
parent of this control. Must not be @NULL.
|
||||
|
||||
@param iid
|
||||
COM IID of pUnk to query. Must be a valid interface to an activex control.
|
||||
|
||||
@param pUnk
|
||||
Interface of activex control
|
||||
@param parent
|
||||
parent of this control. Must not be @NULL.
|
||||
@param iid
|
||||
COM IID of pUnk to query. Must be a valid interface to an activex control.
|
||||
@param pUnk
|
||||
Interface of activex control
|
||||
*/
|
||||
wxActiveXContainer(wxWindow* parent, REFIID iid, IUnknown* pUnk);
|
||||
};
|
||||
|
Reference in New Issue
Block a user