home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / xped4 / xpd4mdi1.h < prev    next >
C/C++ Source or Header  |  1994-02-13  |  1KB  |  47 lines

  1. #if !defined(__xpd4mdi1_h)              // Sentry, use file only if it's not already included.
  2. #define __xpd4mdi1_h
  3.  
  4. /*  Project xped4
  5.     
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    xped4.exe Application
  9.     FILE:         xpd4mdi1.h
  10.     AUTHOR:       
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for xped4MDIChild (TMDIChild).      
  16. */
  17.  
  18.  
  19. #include <owl\owlpch.h>
  20. #pragma hdrstop
  21.  
  22. #include <owl\editfile.h>
  23. #include <owl\listbox.h>
  24.  
  25. #include "xped4app.rh"            // Definition of all resources.
  26.  
  27.  
  28. //{{TMDIChild = xped4MDIChild}}
  29. class xped4MDIChild : public TMDIChild {
  30. public:
  31.     xped4MDIChild (TMDIClient &parent, const char far *title, TWindow *clientWnd, BOOL shrinkToClient = FALSE, TModule* module = 0);
  32.     virtual ~xped4MDIChild ();
  33.  
  34. //{{xped4MDIChildVIRTUAL_BEGIN}}
  35. public:
  36.     virtual void Paint (TDC& dc, BOOL erase, TRect& rect);
  37. //{{xped4MDIChildVIRTUAL_END}}
  38. //{{xped4MDIChildRSP_TBL_BEGIN}}
  39. protected:
  40.     void EvGetMinMaxInfo (MINMAXINFO far& minmaxinfo);
  41. //{{xped4MDIChildRSP_TBL_END}}
  42. DECLARE_RESPONSE_TABLE(xped4MDIChild);
  43. };    //{{xped4MDIChild}}
  44.  
  45.  
  46. #endif                                      // __xpd4mdi1_h sentry.
  47.