home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / toolti.zip / TEST.H < prev    next >
C/C++ Source or Header  |  1994-10-26  |  1KB  |  63 lines

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