home *** CD-ROM | disk | FTP | other *** search
- /* Project emedit
- Early Morning Software
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: emedit.exe Application
- FILE: replace.cpp
- AUTHOR: Ted Stockwell
-
-
- OVERVIEW
- ========
- Source file for implementation of emeditReplaceDialog (TDialog).
- */
-
- #include <owl\owlpch.h>
- #pragma hdrstop
-
- #include "replace.h"
-
-
- //{{emeditReplaceDialog Implementation}}
-
-
- static emeditReplaceDialogXfer emeditReplaceDialogData;
-
- emeditReplaceDialog::emeditReplaceDialog (TWindow* parent, TResId resId, TModule* module):
- TDialog(parent, resId, module)
- {
- //{{emeditReplaceDialogXFER_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);
- ReplaceText = new TComboBox(this, IDC_COMBOBOX1, 1);
-
- SetTransferBuffer(&emeditReplaceDialogData);
- //{{emeditReplaceDialogXFER_USE_END}}
-
- // INSERT>> Your constructor code here.
-
- }
-
-
- emeditReplaceDialog::~emeditReplaceDialog ()
- {
- Destroy();
-
- // INSERT>> Your destructor code here.
-
- }
-
-