home *** CD-ROM | disk | FTP | other *** search
- /* Project emedit
- Early Morning Software
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: emedit.exe Application
- FILE: mdtfnddl.cpp
- AUTHOR: Ted Stockwell
-
-
- OVERVIEW
- ========
- Source file for implementation of emeditFindDialog (TDialog).
- */
-
- #include <owl\owlpch.h>
- #pragma hdrstop
-
- #include "mdtfnddl.h"
-
-
- //{{emeditFindDialog Implementation}}
-
-
- static emeditFindDialogXfer emeditFindDialogData;
-
- emeditFindDialog::emeditFindDialog (TWindow* parent, TResId resId, TModule* module):
- TDialog(parent, resId, module)
- {
- //{{emeditFindDialogXFER_USE}}
- SearchText = new TComboBox(this, IDC_COMBOTEXT, 1);
- SearchFromCursor = new TRadioButton(this, IDC_CURSORBUTTON, 0);
- DirectionDown = new TRadioButton(this, IDC_DOWNBUTTON, 0);
- SearchEntireScope = new TRadioButton(this, IDC_ENTIREBUTTON, 0);
- MatchCase = new TCheckBox(this, IDC_MATCHCASE, 0);
- DirectionUp = new TRadioButton(this, IDC_UPBUTTON, 0);
- WholeWordsOnly = new TCheckBox(this, IDC_WHOLEWORDS, 0);
-
- SetTransferBuffer(&emeditFindDialogData);
- //{{emeditFindDialogXFER_USE_END}}
-
- // INSERT>> Your constructor code here.
-
- }
-
-
- emeditFindDialog::~emeditFindDialog ()
- {
- Destroy();
-
- // INSERT>> Your destructor code here.
-
- }
-
-