home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- // Borland Visual Solutions Pack
- // (C) Copyright 1993 by Borland International
- //----------------------------------------------------------------------------
- #ifndef __termchld_H // Sentry, use file only if it's not already included.
- #define __termchld_H
-
- #include "saxcomm1.h"
-
- class SaxTermChild : public TVbxsaxComm {
- public:
- SaxTermChild(TWindow* parent, const char far *title, TModule* module = 0);
- ~SaxTermChild();
-
- BOOL IsPortOpen();
- string Filename;
-
- void LoadNumProp(char *Name);
- void LoadTextProp(char *Name);
- void SaveNumProp(char *Name);
- void SaveTextProp(char *Name);
-
- protected:
- void SetupWindow();
- void CmPhoneSettings();
- void CmFileUpload();
- void CmFileDownload();
- void CmPortOpenEnable(TCommandEnabler& ce);
- void CmPhoneDisconnect();
- void CmFileSave();
- void CmFileSaveAs();
-
- DECLARE_RESPONSE_TABLE(SaxTermChild);
- };
-
-
- #endif // __termchld_H sentry.
-