summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/EventDispatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/EventDispatch.h')
-rw-r--r--nGenEx/EventDispatch.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/nGenEx/EventDispatch.h b/nGenEx/EventDispatch.h
new file mode 100644
index 0000000..d2e3150
--- /dev/null
+++ b/nGenEx/EventDispatch.h
@@ -0,0 +1,62 @@
+/* Project nGenEx
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
+
+ SUBSYSTEM: nGenEx.lib
+ FILE: EventDispatch.h
+ AUTHOR: John DiCamillo
+
+
+ OVERVIEW
+ ========
+ Event Dispatch class
+*/
+
+#ifndef EventDispatch_h
+#define EventDispatch_h
+
+#include "Types.h"
+#include "EventTarget.h"
+#include "List.h"
+
+// +--------------------------------------------------------------------+
+
+class EventDispatch
+{
+public:
+ static const char* TYPENAME() { return "EventDispatch"; }
+
+ EventDispatch();
+ virtual ~EventDispatch();
+
+ static void Create();
+ static void Close();
+ static EventDispatch* GetInstance() { return dispatcher; }
+
+ virtual void Dispatch();
+ virtual void Register(EventTarget* tgt);
+ virtual void Unregister(EventTarget* tgt);
+
+ virtual EventTarget* GetCapture();
+ virtual int CaptureMouse(EventTarget* tgt);
+ virtual int ReleaseMouse(EventTarget* tgt);
+
+ virtual EventTarget* GetFocus();
+ virtual void SetFocus(EventTarget* tgt);
+ virtual void KillFocus(EventTarget* tgt);
+
+ virtual void MouseEnter(EventTarget* tgt);
+
+protected:
+ int mouse_x, mouse_y, mouse_l, mouse_r;
+ List<EventTarget> clients;
+ EventTarget* capture;
+ EventTarget* current;
+ EventTarget* focus;
+ EventTarget* click_tgt;
+
+ static EventDispatch* dispatcher;
+};
+
+#endif EventDispatch_h
+