| 
            Last change
 on this file since 741 was             741, checked in by sandervl, 26 years ago           | 
        
        
          | 
             
Redesign; base class for all window types 
 
           | 
        
        
          | 
            File size:
            821 bytes
           | 
        
      
      
| Line |   | 
|---|
| 1 | /* $Id: win32dlg.h,v 1.3 1999-08-30 11:59:53 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 |  */
 | 
|---|
| 12 | #ifndef __WIN32DLG_H__
 | 
|---|
| 13 | #define __WIN32DLG_H__
 | 
|---|
| 14 | 
 | 
|---|
| 15 | #include <win32wbase.h>
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #ifdef __cplusplus
 | 
|---|
| 18 | 
 | 
|---|
| 19 | class Win32Dialog : public Win32BaseWindow
 | 
|---|
| 20 | {
 | 
|---|
| 21 | public:
 | 
|---|
| 22 |          Win32Dialog();
 | 
|---|
| 23 | virtual ~Win32Dialog();
 | 
|---|
| 24 | 
 | 
|---|
| 25 | virtual  ULONG  MsgOS2Create(HWND hwndOS2, ULONG initParam);
 | 
|---|
| 26 | 
 | 
|---|
| 27 | virtual  LONG   SetWindowLongA(int index, ULONG value);
 | 
|---|
| 28 | virtual  ULONG  GetWindowLongA(int index);
 | 
|---|
| 29 | 
 | 
|---|
| 30 | protected:
 | 
|---|
| 31 |         // values normally contained in the standard dialog words
 | 
|---|
| 32 |       DLGPROC   Win32DlgProc;   //DWL_WNDPROC
 | 
|---|
| 33 |         ULONG   msgResult;      //DWL_MSGRESULT
 | 
|---|
| 34 |         ULONG   userDlgData;    //DWL_USER
 | 
|---|
| 35 | 
 | 
|---|
| 36 | private:
 | 
|---|
| 37 | };
 | 
|---|
| 38 | 
 | 
|---|
| 39 | 
 | 
|---|
| 40 | #endif //__cplusplus
 | 
|---|
| 41 | 
 | 
|---|
| 42 | #endif //__WIN32WND_H__
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.