blob: 44e64ff4175d60cd1a11b14e829b39e42ddf437b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// File: WNT_WClass.cxx
// Copyright: Open Cascade 2008
#include <windows.h>
#include <WNT_WClass.ixx>
#include <InterfaceGraphic_WNT.hxx>
#include <string.h>
//=======================================================================
//function : WNT_WClass
//purpose :
//=======================================================================
WNT_WClass::WNT_WClass (
const Standard_CString aClassName,
const Standard_Address aWndProc,
const WNT_Uint& aStyle,
const Standard_Integer aClassExtra,
const Standard_Integer aWindowExtra,
const Aspect_Handle aCursor,
const Aspect_Handle anIcon,
const Standard_CString aMenuName
) {
WNDCLASS wc;
hInstance = GetModuleHandle ( NULL );
wc.style = aStyle;
wc.lpfnWndProc = ( aWndProc ) ? ( WNDPROC )aWndProc : DefWindowProc;
wc.cbClsExtra = aClassExtra;
wc.cbWndExtra = aWindowExtra + sizeof ( WINDOW_DATA* );
wc.hInstance = ( HINSTANCE )hInstance;
wc.hIcon = ( anIcon ) ? ( HICON )anIcon :
LoadIcon ( NULL, IDI_APPLICATION );
wc.hCursor = ( aCursor ) ? ( HCURSOR )aCursor :
LoadCursor ( NULL, IDC_NO );
wc.hbrBackground = 0;
wc.lpszMenuName = aMenuName;
wc.lpszClassName = aClassName;
if ( !RegisterClass ( &wc ) )
WNT_ClassDefinitionError :: Raise ( "Unable to register window class" );
lpszName = new char[ strlen ( aClassName ) + 1 ];
strcpy ( (Standard_PCharacter)lpszName, aClassName );
lpfnWndProc = (void*)wc.lpfnWndProc;
} // end constructor
//=======================================================================
//function : Destroy
//purpose :
//=======================================================================
void WNT_WClass::Destroy ()
{
UnregisterClass ( lpszName, ( HINSTANCE )hInstance );
delete [] (Standard_PCharacter)lpszName;
} // end WNT_WClass :: Destroy
|