Support for Toplevel window

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13428 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2002-01-07 00:44:31 +00:00
parent c9782ca3af
commit 3011bf2bdc
5 changed files with 126 additions and 128 deletions

View File

@@ -23,6 +23,13 @@
#include <os2.h>
// ---------------------------------------------------------------------------
// forward declarations
// ---------------------------------------------------------------------------
#ifndef CW_USEDEFAULT
# define CW_USEDEFAULT ((int)0x80000000)
#endif
// ---------------------------------------------------------------------------
// forward declarations
// ---------------------------------------------------------------------------
@@ -247,21 +254,15 @@ public:
virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return FALSE; };
// returns TRUE if the window has been created
bool OS2Create( WXHWND hParent
,PSZ zClass
,const wxChar* zTitle
,WXDWORD dwStyle
,long lX
,long lY
,long lWidth
,long lHeight
,WXHWND hOwner
,WXHWND hZOrder
,unsigned long lId
,void* pCtlData = NULL
,void* pPresParams = NULL
,WXDWORD dwExStyle = 0L
);
bool OS2Create( PSZ zClass
,const char* zTitle
,WXDWORD dwStyle
,const wxPoint& rPos
,const wxSize& rSize
,void* pCtlData
,WXDWORD dwExStyle
,bool bIsChild
);
virtual bool OS2Command( WXUINT uParam
,WXWORD nId
);