home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- // Borland Visual Solutions Pack
- // (C) Copyright 1993 by Borland International
- //----------------------------------------------------------------------------
- #ifndef __settings_H // Sentry, use file only if it's not already included.
- #define __settings_H
-
- #include <owl\dialog.h>
- #include <owl\listbox.h>
- #include <owl\vbxctl.h>
- #include "termapp.rh" // Definition of all resources.
-
- class SaxTermSettingsDlg : public TDialog {
- public:
- SaxTermSettingsDlg(TWindow* parent, TResId resId = IDD_SETTINGS,
- TModule* module = 0);
- ~SaxTermSettingsDlg();
-
- protected:
- TListBox* List;
- TVbxControl* Comm;
-
- void SetupWindow();
- void OkClicked();
-
- DECLARE_RESPONSE_TABLE(SaxTermSettingsDlg);
- };
-
-
- #endif // __settings_H sentry.
-