home *** CD-ROM | disk | FTP | other *** search
/ Instant Doom Levels / Instant.Doom.Levels.-.Level.Master.II.iso / EDITORS / ZIPPED / WSCDEU52.ZIP / INCLUDE / CNFSEDLG.H < prev    next >
C/C++ Source or Header  |  1995-03-05  |  3KB  |  95 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:         cnfsedlg.h
  24.  
  25.     OVERVIEW
  26.     ========
  27.     Class definition for TConfirmSectorDialog (TDialog).
  28. */
  29. #if !defined(__cnfsedlg_h)              // Sentry, use file only if it's not already included.
  30. #define __cnfsedlg_h
  31.  
  32. #ifndef __common_h
  33.     #include "common.h"
  34. #endif
  35.  
  36. #ifndef __OWL_DIALOG_H
  37.     #include <owl\dialog.h>
  38. #endif
  39.  
  40. #ifndef __OWL_CHECKBOX_H
  41.     class _OWLCLASS TCheckBox;
  42. #endif
  43.  
  44.  
  45. #include "cnfsedlg.rh"            // Definition of all resources.
  46.  
  47.  
  48. //{{TDialog = TConfirmSectorDialog}}
  49. struct TConfirmSectorDialogXfer
  50. {
  51. //{{TConfirmSectorDialogXFER_DATA}}
  52.     BOOL    pSpecialCheck;
  53.     BOOL    pTagCheck;
  54.     BOOL    pLightCheck;
  55.     BOOL    pFloorTextureCheck;
  56.     BOOL    pFloorHeightCheck;
  57.     BOOL    pCeilingTextureCheck;
  58.     BOOL    pCeilingHeightCheck;
  59. //{{TConfirmSectorDialogXFER_DATA_END}}
  60. };
  61.  
  62.  
  63. class TConfirmSectorDialog : public TDialog
  64. {
  65. public:
  66.     TConfirmSectorDialog (TWindow* parent, TConfirmSectorDialogXfer &Xfer, TResId resId = IDD_CONFIRM_SECTOR, TModule* module = 0);
  67.     virtual ~TConfirmSectorDialog ();
  68.  
  69. //{{TConfirmSectorDialogXFER_DEF}}
  70. protected:
  71.     TCheckBox *pSpecialCheck;
  72.     TCheckBox *pTagCheck;
  73.     TCheckBox *pLightCheck;
  74.     TCheckBox *pFloorTextureCheck;
  75.     TCheckBox *pFloorHeightCheck;
  76.     TCheckBox *pCeilingTextureCheck;
  77.     TCheckBox *pCeilingHeightCheck;
  78. //{{TConfirmSectorDialogXFER_DEF_END}}
  79.  
  80. //{{TConfirmSectorDialogVIRTUAL_BEGIN}}
  81. public:
  82.     virtual void SetupWindow ();
  83. //{{TConfirmSectorDialogVIRTUAL_END}}
  84.  
  85. //{{TConfirmSectorDialogRSP_TBL_BEGIN}}
  86. protected:
  87.     void CmOk ();
  88. //{{TConfirmSectorDialogRSP_TBL_END}}
  89. DECLARE_RESPONSE_TABLE(TConfirmSectorDialog);
  90. };    //{{TConfirmSectorDialog}}
  91.  
  92.  
  93. #endif                                      // __cnfsedlg_h sentry.
  94.  
  95.