home *** CD-ROM | disk | FTP | other *** search
- #if !defined(__nxtppapp_h) // Sentry, use file only if it's not already included.
- #define __nxtppapp_h
-
- /* Project nextapp
-
- Copyright ⌐ 1993. All Rights Reserved.
-
- SUBSYSTEM: nextapp.exe Application
- FILE: nxtppapp.h
- AUTHOR:
-
-
- OVERVIEW
- ========
- Class definition for nextappApp (TApplication).
- */
-
-
- #include <owl\owlpch.h>
- #pragma hdrstop
-
- #include <owl\editfile.h>
- #include <owl\opensave.h>
-
- #include <owl\edit.h>
- #include <owl\listbox.h>
-
- #include "nxtppapp.rh" // Definition of all resources.
- #include "tdocdlg.h"
- #include "tpatdlg.h"
-
- //{{TApplication = nextappApp}}
- class nextappApp : public TApplication {
- private:
- TEditFile *Client; // Client window for the frame.
- TOpenSaveDialog::TData FileData; // Data to control open/saveas standard dialog.
- TDocDlg* DocDlg;
- TPatDlg* PatDlg;
- public:
- nextappApp ();
- virtual ~nextappApp ();
-
- long AppHand, Revision;
- void OpenFile (const char *fileName = 0);
- //{{nextappAppVIRTUAL_BEGIN}}
- public:
- virtual void InitMainWindow();
- virtual void InitInstance();
- //{{nextappAppVIRTUAL_END}}
-
- //{{nextappAppRSP_TBL_BEGIN}}
- protected:
- void CmFileNew ();
- void CmFileOpen ();
- void CmFileClose ();
- void CmHelpAbout ();
- void CmExit ();
- //{{nextappAppRSP_TBL_END}}
- DECLARE_RESPONSE_TABLE(nextappApp);
- }; //{{nextappApp}}
-
-
- #endif // __nxtppapp_h sentry.
-