home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c016 / 3.ddi / COMMEX.PAK / TERMCHLD.H < prev   
Encoding:
C/C++ Source or Header  |  1993-12-08  |  1.0 KB  |  38 lines

  1. //----------------------------------------------------------------------------
  2. // Borland Visual Solutions Pack
  3. // (C) Copyright 1993 by Borland International
  4. //----------------------------------------------------------------------------
  5. #ifndef __termchld_H    // Sentry, use file only if it's not already included.
  6. #define __termchld_H
  7.  
  8. #include "saxcomm1.h"
  9.  
  10. class SaxTermChild : public TVbxsaxComm {
  11.   public:
  12.     SaxTermChild(TWindow* parent, const char far *title, TModule* module = 0);
  13.    ~SaxTermChild();
  14.  
  15.      BOOL IsPortOpen();
  16.      string Filename;
  17.     
  18.      void LoadNumProp(char *Name);
  19.      void LoadTextProp(char *Name);
  20.      void SaveNumProp(char *Name);
  21.      void SaveTextProp(char *Name);
  22.  
  23.   protected:
  24.     void SetupWindow();
  25.     void CmPhoneSettings();
  26.     void CmFileUpload();
  27.     void CmFileDownload();
  28.     void CmPortOpenEnable(TCommandEnabler& ce);
  29.     void CmPhoneDisconnect();
  30.     void CmFileSave();
  31.     void CmFileSaveAs();
  32.  
  33.   DECLARE_RESPONSE_TABLE(SaxTermChild);
  34. };
  35.  
  36.  
  37. #endif         // __termchld_H sentry.
  38.