home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / xped5 / xpd5mdic.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.2 KB  |  53 lines

  1. #if !defined(__xpd5mdic_h)              // Sentry, use file only if it's not already included.
  2. #define __xpd5mdic_h
  3.  
  4. /*  Project xped5
  5.     
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    xped5.exe Application
  9.     FILE:         xpd5mdic.h
  10.     AUTHOR:       
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for xped5MDIClient (TMDIClient).      
  16. */
  17.  
  18.  
  19. #include <owl\owlpch.h>
  20. #pragma hdrstop
  21.  
  22. #include <owl\opensave.h>
  23.  
  24. #include "xped5app.rh"            // Definition of all resources.
  25.  
  26.  
  27. //{{TMDIClient = xped5MDIClient}}
  28. class xped5MDIClient : public TMDIClient {
  29. public:
  30.     int                     ChildCount;                 // Number of child window created. 
  31.  
  32.     xped5MDIClient ();
  33.     virtual ~xped5MDIClient ();
  34.  
  35.     void OpenFile (const char *fileName = 0);
  36.  
  37. private:
  38.     void LoadTextFile ();
  39.  
  40. //{{xped5MDIClientVIRTUAL_BEGIN}}
  41. protected:
  42.     virtual void SetupWindow ();
  43. //{{xped5MDIClientVIRTUAL_END}}
  44.  
  45. //{{xped5MDIClientRSP_TBL_BEGIN}}
  46. protected:
  47. //{{xped5MDIClientRSP_TBL_END}}
  48. DECLARE_RESPONSE_TABLE(xped5MDIClient);
  49. };    //{{xped5MDIClient}}
  50.  
  51.  
  52. #endif                                      // __xpd5mdic_h sentry.
  53.