#if !defined(__swordapp_h) // Sentry, use file only if it's not already included. #define __swordapp_h /* Project sword GNU Copyleft GPL © 1995. Almost No Rights Reserved. SUBSYSTEM: sword.exe Application FILE: swordapp.h AUTHOR: The Sword Project Team OVERVIEW ======== Class definition for swordApp (TApplication). */ #include #pragma hdrstop #include "swordapp.rh" // Definition of all resources. // // FrameWindow must be derived to override Paint for Preview and Print. // //{{TDecoratedFrame = SDIDecFrame}} class SDIDecFrame : public TDecoratedFrame { public: SDIDecFrame (TWindow *parent, const char far *title, TWindow *clientWnd, bool trackMenuSelection = false, TModule *module = 0); ~SDIDecFrame (); }; //{{SDIDecFrame}} //{{TApplication = swordApp}} class swordApp : public TApplication { private: public: swordApp (); virtual ~swordApp (); //{{swordAppVIRTUAL_BEGIN}} public: virtual void InitMainWindow(); //{{swordAppVIRTUAL_END}} //{{swordAppRSP_TBL_BEGIN}} protected: void CmHelpAbout (); void SearchText (); //{{swordAppRSP_TBL_END}} DECLARE_RESPONSE_TABLE(swordApp); }; //{{swordApp}} #endif // __swordapp_h sentry.