home *** CD-ROM | disk | FTP | other *** search
/ Instant Doom Levels / Instant.Doom.Levels.-.Level.Master.II.iso / EDITORS / ZIPPED / WSCDEU52.ZIP / INCLUDE / CNFTHDLG.H < prev    next >
C/C++ Source or Header  |  1995-03-05  |  3KB  |  93 lines

  1. /*----------------------------------------------------------------------------*
  2.  | This file is part of WinDEU, the port of DEU to Windows.                   |
  3.  | WinDEU was created by the DEU team:                                        |
  4.  |  Renaud Paquay, Raphael Quinet, Brendon Wyber and others...                |
  5.  |                                                                            |
  6.  | DEU is an open project: if you think that you can contribute, please join  |
  7.  | the DEU team.  You will be credited for any code (or ideas) included in    |
  8.  | the next version of the program.                                           |
  9.  |                                                                            |
  10.  | If you want to make any modifications and re-distribute them on your own,  |
  11.  | you must follow the conditions of the WinDEU license. Read the file        |
  12.  | LICENSE or README.TXT in the top directory.  If do not  have a copy of     |
  13.  | these files, you can request them from any member of the DEU team, or by   |
  14.  | mail: Raphael Quinet, Rue des Martyrs 9, B-4550 Nandrin (Belgium).         |
  15.  |                                                                            |
  16.  | This program comes with absolutely no warranty.  Use it at your own risks! |
  17.  *----------------------------------------------------------------------------*
  18.  
  19.     Project WinDEU
  20.     DEU team
  21.     Jul-Dec 1994, Jan-Mar 1995
  22.  
  23.     FILE:         cnfthdlg.h
  24.  
  25.     OVERVIEW
  26.     ========
  27.     Class definition for TConfirmThingDialog (TDialog).
  28. */
  29. #if !defined(__cnfthdlg_h)              // Sentry, use file only if it's not already included.
  30. #define __cnfthdlg_h
  31.  
  32. #ifndef __common_h
  33.     #include "common.h"
  34. #endif
  35.  
  36. #ifndef __windeu_h
  37.     #include "windeu.h"
  38. #endif
  39.  
  40. #ifndef __OWL_DIALOG_H
  41.     #include <owl\dialog.h>
  42. #endif
  43.  
  44. #ifndef __OWL_CHECKBOX_H
  45.     class _OWLCLASS TCheckBox;
  46. #endif
  47.  
  48. #include "cnfthdlg.rh"
  49.  
  50.  
  51. //{{TDialog = TConfirmThingDialog}}
  52. struct TConfirmThingDialogXfer {
  53. //{{TConfirmThingDialogXFER_DATA}}
  54.     BOOL    pAngleCheck;
  55.     BOOL    pAppearCheck;
  56.     BOOL    pTypeCheck;
  57.     BOOL    pXPosCheck;
  58.     BOOL    pYPosCheck;
  59. //{{TConfirmThingDialogXFER_DATA_END}}
  60. };
  61.  
  62.  
  63. class TConfirmThingDialog : public TDialog
  64. {
  65. public:
  66.     TConfirmThingDialog (TWindow* parent, TConfirmThingDialogXfer &XFer, TResId resId = IDD_CONFIRM_THING, TModule* module = 0);
  67.     virtual ~TConfirmThingDialog ();
  68.  
  69. //{{TConfirmThingDialogXFER_DEF}}
  70. protected:
  71.     TCheckBox *pAngleCheck;
  72.     TCheckBox *pAppearCheck;
  73.     TCheckBox *pTypeCheck;
  74.     TCheckBox *pXPosCheck;
  75.     TCheckBox *pYPosCheck;
  76. //{{TConfirmThingDialogXFER_DEF_END}}
  77.  
  78. //{{TConfirmThingDialogVIRTUAL_BEGIN}}
  79. public:
  80.     virtual void SetupWindow ();
  81. //{{TConfirmThingDialogVIRTUAL_END}}
  82.  
  83. //{{TConfirmThingDialogRSP_TBL_BEGIN}}
  84. protected:
  85.     void CmOk ();
  86. //{{TConfirmThingDialogRSP_TBL_END}}
  87. DECLARE_RESPONSE_TABLE(TConfirmThingDialog);
  88. };    //{{TConfirmThingDialog}}
  89.  
  90.  
  91. #endif                                      // __cnfthdlg_h sentry.
  92.  
  93.