1 | /* $Id: win32class.h,v 1.2 1999-09-21 17:04:27 dengert Exp $ */
|
---|
2 | /*
|
---|
3 | * Win32 Window Class Managment Code for OS/2
|
---|
4 | *
|
---|
5 | *
|
---|
6 | * Copyright 1998-1999 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
7 | * Copyright 1999 Daniela Engert (dani@ngrt.de)
|
---|
8 | *
|
---|
9 | */
|
---|
10 | #ifndef __WIN32CLASS_H__
|
---|
11 | #define __WIN32CLASS_H__
|
---|
12 |
|
---|
13 | #include <gen_object.h>
|
---|
14 |
|
---|
15 | class Win32WndClass : public GenericObject
|
---|
16 | {
|
---|
17 | public:
|
---|
18 | Win32WndClass(WNDCLASSEXA *wndclass, BOOL isUnicode = FALSE);
|
---|
19 | ~Win32WndClass();
|
---|
20 |
|
---|
21 | ULONG getClassLongA(int index, BOOL isUnicode = FALSE);
|
---|
22 | ULONG getClassLongW(int index)
|
---|
23 | {
|
---|
24 | return getClassLongA(index, TRUE);
|
---|
25 | };
|
---|
26 | WORD getClassWord(int index);
|
---|
27 |
|
---|
28 | ULONG setClassLongA(int index, LONG lNewVal, BOOL isUnicode = FALSE);
|
---|
29 | ULONG setClassLongW(int index, LONG lNewVal)
|
---|
30 | {
|
---|
31 | return setClassLongA(index, lNewVal, TRUE);
|
---|
32 | }
|
---|
33 | WORD setClassWord(int index, WORD wNewVal);
|
---|
34 |
|
---|
35 | ATOM getAtom() { return (ATOM) classAtom; };
|
---|
36 | BOOL getClassInfo(WNDCLASSEXA *wndclass);
|
---|
37 | BOOL getClassInfo(WNDCLASSEXW *wndclass);
|
---|
38 |
|
---|
39 | ULONG getClassName(LPSTR lpszClassName, ULONG cchClassName);
|
---|
40 | ULONG getClassName(LPWSTR lpszClassName, ULONG cchClassName);
|
---|
41 |
|
---|
42 | WNDPROC getWindowProc() { return windowProc; };
|
---|
43 | LPSTR getMenuNameA() { return menuNameA; };
|
---|
44 | DWORD getExtraWndWords() { return nrExtraWindowWords; };
|
---|
45 |
|
---|
46 | HICON getIcon() { return hIcon; };
|
---|
47 |
|
---|
48 | HBRUSH getBackgroundBrush() { return backgroundBrush; };
|
---|
49 | ULONG getStyle() { return windowStyle; };
|
---|
50 |
|
---|
51 | void setMenuName(LPSTR newMenuName);
|
---|
52 |
|
---|
53 | void IncreaseWindowCount() { cWindows++; };
|
---|
54 | void DecreaseWindowCount() { cWindows--; };
|
---|
55 | DWORD GetWindowCount() { return cWindows; };
|
---|
56 |
|
---|
57 | BOOL hasClassName(LPSTR classname, BOOL fUnicode = 0);
|
---|
58 |
|
---|
59 | static void UnregisterClassA(HINSTANCE hinst, LPSTR id);
|
---|
60 |
|
---|
61 | static Win32WndClass *FindClass(HINSTANCE hinst, LPSTR id);
|
---|
62 |
|
---|
63 | private:
|
---|
64 | BOOL isUnicode;
|
---|
65 |
|
---|
66 | //Standard class words/longs
|
---|
67 | ULONG windowStyle; //GCL_STYLE * must be offset 14h *
|
---|
68 | ULONG nrExtraClassWords; //GCL_CBCLSEXTRA
|
---|
69 | ULONG nrExtraWindowWords; //GCL_CBWNDEXTRA
|
---|
70 | HBRUSH backgroundBrush; //GCL_HBRBACKGROUND
|
---|
71 | HCURSOR hCursor; //GCL_HCURSOR
|
---|
72 | HICON hIcon; //GCL_HICON
|
---|
73 | HINSTANCE hInstance; //GCL_HMODULE
|
---|
74 | PCHAR menuNameA; //GCL_MENUNAME
|
---|
75 | WCHAR *menuNameW; //GCL_MENUNAME
|
---|
76 | WNDPROC windowProc; //GCL_WNDPROC
|
---|
77 | ULONG classAtom; //GCW_ATOM
|
---|
78 |
|
---|
79 | PCHAR classNameA;
|
---|
80 | WCHAR *classNameW;
|
---|
81 | HICON hIconSm;
|
---|
82 |
|
---|
83 | //User data class words/longs
|
---|
84 | ULONG *userClassLong;
|
---|
85 |
|
---|
86 | //nr of windows created with this class
|
---|
87 | ULONG cWindows;
|
---|
88 |
|
---|
89 | static GenericObject *wndclasses;
|
---|
90 | };
|
---|
91 |
|
---|
92 | #endif //__WIN32CLASS_H__
|
---|