home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / PROGRAMS / EM_EDIT / SAMPLES.ZIP / OWL / CONFIRM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-05  |  1.1 KB  |  45 lines

  1. #if !defined(__confirm_h)              // Sentry, use file only if it's not already included.
  2. #define __confirm_h
  3.  
  4. /*  Project emedit
  5.     Early Morning Software
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    emedit.exe Application
  9.     FILE:         confirm.h
  10.     AUTHOR:       Ted Stockwell
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for emeditConfirmDialog (TDialog).      
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21. #include <owl\dialog.h>
  22.  
  23. #include "emedtapp.rh"            // Definition of all resources.
  24.  
  25.  
  26. //{{TDialog = emeditConfirmDialog}}
  27. class emeditConfirmDialog : public TDialog {
  28. public:
  29.     emeditConfirmDialog (TWindow* parent, TResId resId = IDD_EMREPLACECONFIRM, TModule* module = 0);
  30.     virtual ~emeditConfirmDialog ();
  31.  
  32. //{{emeditConfirmDialogRSP_TBL_BEGIN}}
  33. protected:
  34.     void AllButtonClicked ();
  35.     void NoButtonClicked ();
  36.     void OneButtonClicked ();
  37.     void YesButtonClicked ();
  38. //{{emeditConfirmDialogRSP_TBL_END}}
  39. DECLARE_RESPONSE_TABLE(emeditConfirmDialog);
  40. };    //{{emeditConfirmDialog}}
  41.  
  42.  
  43. #endif                                      // __confirm_h sentry.
  44.  
  45.