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

  1. //----------------------------------------------------------------------------
  2. //  Project EVHANDLE
  3. //  
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    EVHANDLE Application
  7. //  FILE:         EVHANDLE.H
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TSinkDlgApp (TApplication).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(evhandle_h)              // Sentry, use file only if it's not already included.
  16. #define evhandle_h
  17.  
  18. #include <owl/opensave.h>
  19.  
  20.  
  21. #include "evhandle.rh"            // Definition of all resources.
  22.  
  23.  
  24. //
  25. // Over riding this class to take control of window placement on startup
  26. //
  27. class TSDIDecFrame : public TDecoratedFrame
  28. {
  29. public:
  30.     TSDIDecFrame(TWindow* parent, const char far* title, TWindow* clientWnd, bool trackMenuSelection = false, TModule* module = 0);
  31.     ~TSDIDecFrame();
  32. };
  33.  
  34. class TSinkDlgApp : public TApplication
  35. {
  36. private:
  37.  
  38.  
  39. public:
  40.     TSinkDlgApp();
  41.     virtual ~TSinkDlgApp();
  42.     virtual void InitMainWindow();
  43. protected:
  44.  
  45. DECLARE_RESPONSE_TABLE(TSinkDlgApp);
  46. };    
  47.  
  48.  
  49. #endif  // evhandle_h sentry.
  50.