summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/EventDispatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/EventDispatch.h')
-rw-r--r--nGenEx/EventDispatch.h68
1 files changed, 34 insertions, 34 deletions
diff --git a/nGenEx/EventDispatch.h b/nGenEx/EventDispatch.h
index d2e3150..a5fcd35 100644
--- a/nGenEx/EventDispatch.h
+++ b/nGenEx/EventDispatch.h
@@ -1,15 +1,15 @@
/* Project nGenEx
- Destroyer Studios LLC
- Copyright © 1997-2004. All Rights Reserved.
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
- SUBSYSTEM: nGenEx.lib
- FILE: EventDispatch.h
- AUTHOR: John DiCamillo
+ SUBSYSTEM: nGenEx.lib
+ FILE: EventDispatch.h
+ AUTHOR: John DiCamillo
- OVERVIEW
- ========
- Event Dispatch class
+ OVERVIEW
+ ========
+ Event Dispatch class
*/
#ifndef EventDispatch_h
@@ -24,38 +24,38 @@
class EventDispatch
{
public:
- static const char* TYPENAME() { return "EventDispatch"; }
+ static const char* TYPENAME() { return "EventDispatch"; }
- EventDispatch();
- virtual ~EventDispatch();
+ EventDispatch();
+ virtual ~EventDispatch();
- static void Create();
- static void Close();
- static EventDispatch* GetInstance() { return dispatcher; }
+ 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 void Dispatch();
+ virtual void Register(EventTarget* tgt);
+ virtual void Unregister(EventTarget* tgt);
- virtual EventTarget* GetFocus();
- virtual void SetFocus(EventTarget* tgt);
- virtual void KillFocus(EventTarget* tgt);
-
- virtual void MouseEnter(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;
+ 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