home *** CD-ROM | disk | FTP | other *** search
- #if !defined(__mdtfnddl_h) // Sentry, use file only if it's not already included.
- #define __mdtfnddl_h
-
- /* Project emedit
- Early Morning Software
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: emedit.exe Application
- FILE: mdtfnddl.h
- AUTHOR: Ted Stockwell
-
-
- OVERVIEW
- ========
- Class definition for emeditFindDialog (TDialog).
- */
-
- #include <owl\checkbox.h>
- #include <owl\radiobut.h>
- #include <owl\combobox.h>
- #include <owl\owlpch.h>
- #pragma hdrstop
-
- #include <owl\dialog.h>
-
- #include "emedtapp.rh" // Definition of all resources.
-
-
- //{{TDialog = emeditFindDialog}}
- struct emeditFindDialogXfer {
- //{{emeditFindDialogXFER_DATA}}
- TComboBoxData SearchText;
- BOOL SearchFromCursor;
- BOOL DirectionDown;
- BOOL SearchEntireScope;
- BOOL MatchCase;
- BOOL DirectionUp;
- BOOL WholeWordsOnly;
- //{{emeditFindDialogXFER_DATA_END}}
- };
-
-
- class emeditFindDialog : public TDialog {
- public:
- emeditFindDialog (TWindow* parent, TResId resId = IDD_EMFIND, TModule* module = 0);
- virtual ~emeditFindDialog ();
-
- //{{emeditFindDialogXFER_DEF}}
- protected:
- TComboBox *SearchText;
- TRadioButton *SearchFromCursor;
- TRadioButton *DirectionDown;
- TRadioButton *SearchEntireScope;
- TCheckBox *MatchCase;
- TRadioButton *DirectionUp;
- TCheckBox *WholeWordsOnly;
-
- //{{emeditFindDialogXFER_DEF_END}}
- }; //{{emeditFindDialog}}
-
-
- #endif // __mdtfnddl_h sentry.
-
-