home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / APXMDI.PAK / APXMDEDF.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.4 KB  |  44 lines

  1. //----------------------------------------------------------------------------
  2. //  Project ApxMdi
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxMdi Application
  7. //  FILE:         apxmdedf.h
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TApxMdiEditFile (TEditFile).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(apxmdedf_h)              // Sentry, use file only if it's not already included.
  16. #define apxmdedf_h
  17.  
  18. #include <owl/editfile.h>
  19.  
  20. #include "apxmdapp.rh"            // Definition of all resources.
  21.  
  22.  
  23. //{{TEditFile = TApxMdiEditFile}}
  24. class TApxMdiEditFile : public TEditFile {
  25.   public:
  26.     TApxMdiEditFile(TWindow* parent = 0, int id = 0, const char far* text = 0, int x = 0, int y = 0, int w = 0, int h = 0, const char far* fileName = 0, TModule* module = 0);
  27.     virtual ~TApxMdiEditFile();
  28.  
  29. //{{TApxMdiEditFileVIRTUAL_BEGIN}}
  30.   public:
  31.     virtual void Paint(TDC& dc, bool erase, TRect& rect);
  32.     virtual void SetupWindow();
  33.     virtual bool SaveAs();
  34. //{{TApxMdiEditFileVIRTUAL_END}}
  35. //{{TApxMdiEditFileRSP_TBL_BEGIN}}
  36.   protected:
  37.     void EvGetMinMaxInfo(MINMAXINFO far& minmaxinfo);
  38. //{{TApxMdiEditFileRSP_TBL_END}}
  39. DECLARE_RESPONSE_TABLE(TApxMdiEditFile);
  40. };    //{{TApxMdiEditFile}}
  41.  
  42.  
  43. #endif  // apxmdedf_h sentry.
  44.