#if !defined(__tversedt_h) // Sentry, use file only if it's not already included. #define __tversedt_h /* Project sword GNU Copyleft GPL © 1995. Almost No Rights Reserved. SUBSYSTEM: sword.apx Application FILE: tversedt.h AUTHOR: The Sword Project Team OVERVIEW ======== Class definition for TVerseEdit (TEdit). */ #include #pragma hdrstop #include "swordapp.rh" // Definition of all resources. //{{TEdit = TVerseEdit}} class TVerseEdit : public TEdit { public: TVerseEdit(TWindow* parent, int id, const char far* text, int x, int y, int w, int h, uint textLen = 0, bool multiline = false, TModule* module = 0); TVerseEdit(TWindow* parent, int resourceID, uint textLen = 0, TModule* module = 0) : TEdit(parent, resourceID, textLen, module) {} virtual ~TVerseEdit (); //{{TVerseEditVIRTUAL_BEGIN}} public: virtual void SetupWindow (); //{{TVerseEditVIRTUAL_END}} //{{TVerseEditRSP_TBL_BEGIN}} protected: TPopupMenu PopupMenu; void EvRButtonDown (uint modKeys, TPoint& point); void EbdLookUp(); void VbdLookUp(); //{{TVerseEditRSP_TBL_END}} DECLARE_RESPONSE_TABLE(TVerseEdit); }; //{{TVerseEdit}} #endif // __tversedt_h sentry.