//---------------------------------------------------------------------------- // Project Puh // jyu // Copyright © 1996. All Rights Reserved. // // SUBSYSTEM: Puh Application // FILE: puhapp.h // AUTHOR: vl // // OVERVIEW // ~~~~~~~~ // Class definition for TPuhApp (TApplication). // //---------------------------------------------------------------------------- #if !defined(puhapp_h) // Sentry, use file only if it's not already included. #define puhapp_h #include #include "puhapp.rh" // Definition of all resources. // // FrameWindow must be derived to override Paint for Preview and Print. // //{{TDecoratedFrame = TSDIDecFrame}} class TSDIDecFrame : public TDecoratedFrame { public: TSDIDecFrame(TWindow* parent, const char far* title, TWindow* clientWnd, bool trackMenuSelection = false, TModule* module = 0); ~TSDIDecFrame(); }; //{{TSDIDecFrame}} //{{TApplication = TPuhApp}} class TPuhApp : public TApplication { private: public: TPuhApp(); virtual ~TPuhApp(); //{{TPuhAppVIRTUAL_BEGIN}} public: virtual void InitMainWindow(); //{{TPuhAppVIRTUAL_END}} //{{TPuhAppRSP_TBL_BEGIN}} protected: void CmHelpAbout(); //{{TPuhAppRSP_TBL_END}} DECLARE_RESPONSE_TABLE(TPuhApp); }; //{{TPuhApp}} #endif // puhapp_h sentry.