Changeset 300 for trunk/src/user32/new/win32dlg.h
- Timestamp:
- Jul 14, 1999, 10:35:38 AM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/new/win32dlg.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32dlg.h
r4 r300 1 /* $Id: win32dlg.h,v 1.1 1999-05-24 20:20:04 ktk Exp $ */ 2 1 /* $Id: win32dlg.h,v 1.2 1999-07-14 08:35:37 sandervl Exp $ */ 2 /* 3 * Win32 Dialog Code for OS/2 4 * 5 * 6 * Copyright 1998 Sander van Leeuwen (sandervl@xs4all.nl) 7 * 8 * 9 * Project Odin Software License can be found in LICENSE.TXT 10 * 11 */ 3 12 #ifndef __WIN32DLG_H__ 4 13 #define __WIN32DLG_H__ 5 14 6 #include "win32wnd.h"15 #include <win32wnd.h> 7 16 8 17 #ifdef __cplusplus 9 18 10 class Win32Dialog : Win32Window19 class Win32Dialog : public Win32Window 11 20 { 12 21 public: 13 Win32Dialog( HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);22 Win32Dialog(); 14 23 virtual ~Win32Dialog(); 15 24 16 MRESULT ProcessDlgMessage(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);25 virtual ULONG MsgOS2Create(HWND hwndOS2, ULONG initParam); 17 26 18 virtual BOOL SetWindowLong(int index, ULONG value);19 virtual ULONG GetWindowLong (int index);27 virtual LONG SetWindowLongA(int index, ULONG value); 28 virtual ULONG GetWindowLongA(int index); 20 29 21 30 protected: 22 31 // values normally contained in the standard dialog words 23 WINDLGPROC Win32DlgProc; //DWL_WNDPROC32 DLGPROC Win32DlgProc; //DWL_WNDPROC 24 33 ULONG msgResult; //DWL_MSGRESULT 25 34 ULONG userDlgData; //DWL_USER 26 35 27 36 private: 28 29 30 37 }; 31 38
Note:
See TracChangeset
for help on using the changeset viewer.
