summaryrefslogtreecommitdiff
path: root/examples/windoze/bcowl25/multimod/tversedt.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/windoze/bcowl25/multimod/tversedt.h')
-rw-r--r--examples/windoze/bcowl25/multimod/tversedt.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/examples/windoze/bcowl25/multimod/tversedt.h b/examples/windoze/bcowl25/multimod/tversedt.h
new file mode 100644
index 0000000..97f2c6c
--- /dev/null
+++ b/examples/windoze/bcowl25/multimod/tversedt.h
@@ -0,0 +1,50 @@
+#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 <owl\owlpch.h>
+#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.
+