home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c016 / 3.ddi / COMMEX.PAK / SETTINGS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-08  |  880 b   |  31 lines

  1. //----------------------------------------------------------------------------
  2. // Borland Visual Solutions Pack
  3. // (C) Copyright 1993 by Borland International
  4. //----------------------------------------------------------------------------
  5. #ifndef __settings_H    // Sentry, use file only if it's not already included.
  6. #define __settings_H
  7.  
  8. #include <owl\dialog.h>
  9. #include <owl\listbox.h>
  10. #include <owl\vbxctl.h>
  11. #include "termapp.rh"            // Definition of all resources.
  12.  
  13. class SaxTermSettingsDlg : public TDialog {
  14.   public:
  15.     SaxTermSettingsDlg(TWindow* parent, TResId resId = IDD_SETTINGS,
  16.       TModule* module = 0);
  17.    ~SaxTermSettingsDlg();
  18.  
  19.   protected:
  20.     TListBox*    List;
  21.     TVbxControl* Comm;
  22.  
  23.     void SetupWindow();
  24.     void OkClicked();
  25.  
  26.   DECLARE_RESPONSE_TABLE(SaxTermSettingsDlg);
  27. };
  28.  
  29.  
  30. #endif      // __settings_H sentry.
  31.