Line | |
---|
1 | /* $Id: win32dlg.h,v 1.1 1999-05-24 20:20:04 ktk Exp $ */
|
---|
2 |
|
---|
3 | #ifndef __WIN32DLG_H__
|
---|
4 | #define __WIN32DLG_H__
|
---|
5 |
|
---|
6 | #include "win32wnd.h"
|
---|
7 |
|
---|
8 | #ifdef __cplusplus
|
---|
9 |
|
---|
10 | class Win32Dialog : Win32Window
|
---|
11 | {
|
---|
12 | public:
|
---|
13 | Win32Dialog(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
14 | virtual ~Win32Dialog();
|
---|
15 |
|
---|
16 | MRESULT ProcessDlgMessage(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
17 |
|
---|
18 | virtual BOOL SetWindowLong(int index, ULONG value);
|
---|
19 | virtual ULONG GetWindowLong(int index);
|
---|
20 |
|
---|
21 | protected:
|
---|
22 | // values normally contained in the standard dialog words
|
---|
23 | WINDLGPROC Win32DlgProc; //DWL_WNDPROC
|
---|
24 | ULONG msgResult; //DWL_MSGRESULT
|
---|
25 | ULONG userDlgData; //DWL_USER
|
---|
26 |
|
---|
27 | private:
|
---|
28 |
|
---|
29 |
|
---|
30 | };
|
---|
31 |
|
---|
32 |
|
---|
33 | #endif //__cplusplus
|
---|
34 |
|
---|
35 | #endif //__WIN32WND_H__
|
---|
Note:
See
TracBrowser
for help on using the repository browser.