home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c016 / 3.ddi / CORNEXT.PAK / NXTPPAPP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-07  |  1.5 KB  |  64 lines

  1. #if !defined(__nxtppapp_h)              // Sentry, use file only if it's not already included.
  2. #define __nxtppapp_h
  3.  
  4. /*  Project nextapp
  5.     
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    nextapp.exe Application
  9.     FILE:         nxtppapp.h
  10.     AUTHOR:       
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for nextappApp (TApplication).      
  16. */
  17.  
  18.  
  19. #include <owl\owlpch.h>
  20. #pragma hdrstop
  21.  
  22. #include <owl\editfile.h>
  23. #include <owl\opensave.h>
  24.  
  25. #include <owl\edit.h>
  26. #include <owl\listbox.h>
  27.  
  28. #include "nxtppapp.rh"            // Definition of all resources.
  29. #include "tdocdlg.h"
  30. #include "tpatdlg.h"
  31.  
  32. //{{TApplication = nextappApp}}
  33. class nextappApp : public TApplication {
  34. private:
  35.      TEditFile *Client;                                 // Client window for the frame.
  36.      TOpenSaveDialog::TData FileData;                    // Data to control open/saveas standard dialog.
  37.      TDocDlg* DocDlg;
  38.      TPatDlg* PatDlg;
  39. public:
  40.     nextappApp ();
  41.     virtual ~nextappApp ();
  42.  
  43.      long AppHand, Revision;
  44.     void OpenFile (const char *fileName = 0);
  45. //{{nextappAppVIRTUAL_BEGIN}}
  46. public:
  47.     virtual void InitMainWindow();
  48.     virtual void InitInstance();
  49. //{{nextappAppVIRTUAL_END}}
  50.  
  51. //{{nextappAppRSP_TBL_BEGIN}}
  52. protected:
  53.     void CmFileNew ();
  54.     void CmFileOpen ();
  55.     void CmFileClose ();
  56.     void CmHelpAbout ();
  57.     void CmExit ();
  58. //{{nextappAppRSP_TBL_END}}
  59.   DECLARE_RESPONSE_TABLE(nextappApp);
  60. };    //{{nextappApp}}
  61.  
  62.  
  63. #endif                                      // __nxtppapp_h sentry.
  64.