home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / PROGRAMS / EM_EDIT / MDTFNDDL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-06  |  1.5 KB  |  64 lines

  1. #if !defined(__mdtfnddl_h)              // Sentry, use file only if it's not already included.
  2. #define __mdtfnddl_h
  3.  
  4. /*  Project emedit
  5.     Early Morning Software
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    emedit.exe Application
  9.     FILE:         mdtfnddl.h
  10.     AUTHOR:       Ted Stockwell
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for emeditFindDialog (TDialog).      
  16. */
  17.  
  18. #include <owl\checkbox.h>
  19. #include <owl\radiobut.h>
  20. #include <owl\combobox.h>
  21. #include <owl\owlpch.h>
  22. #pragma hdrstop
  23.  
  24. #include <owl\dialog.h>
  25.  
  26. #include "emedtapp.rh"            // Definition of all resources.
  27.  
  28.  
  29. //{{TDialog = emeditFindDialog}}
  30. struct emeditFindDialogXfer {
  31. //{{emeditFindDialogXFER_DATA}}
  32.     TComboBoxData  SearchText;
  33.     BOOL    SearchFromCursor;
  34.     BOOL    DirectionDown;
  35.     BOOL    SearchEntireScope;
  36.     BOOL    MatchCase;
  37.     BOOL    DirectionUp;
  38.     BOOL    WholeWordsOnly;
  39. //{{emeditFindDialogXFER_DATA_END}}
  40. };
  41.  
  42.  
  43. class emeditFindDialog : public TDialog {
  44. public:
  45.     emeditFindDialog (TWindow* parent, TResId resId = IDD_EMFIND, TModule* module = 0);
  46.     virtual ~emeditFindDialog ();
  47.  
  48. //{{emeditFindDialogXFER_DEF}}
  49. protected:
  50.     TComboBox *SearchText;
  51.     TRadioButton *SearchFromCursor;
  52.     TRadioButton *DirectionDown;
  53.     TRadioButton *SearchEntireScope;
  54.     TCheckBox *MatchCase;
  55.     TRadioButton *DirectionUp;
  56.     TCheckBox *WholeWordsOnly;
  57.  
  58. //{{emeditFindDialogXFER_DEF_END}}
  59. };    //{{emeditFindDialog}}
  60.  
  61.  
  62. #endif                                      // __mdtfnddl_h sentry.
  63.  
  64.