From b2805409566af00bc15639494f5a186fbd2f16e6 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Fri, 9 Dec 2011 20:15:42 +0000 Subject: More indenting changes --- nGenEx/EventDispatch.h | 68 +++++++++++++++++++++++++------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'nGenEx/EventDispatch.h') 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 clients; - EventTarget* capture; - EventTarget* current; - EventTarget* focus; - EventTarget* click_tgt; - - static EventDispatch* dispatcher; + int mouse_x, mouse_y, mouse_l, mouse_r; + List clients; + EventTarget* capture; + EventTarget* current; + EventTarget* focus; + EventTarget* click_tgt; + + static EventDispatch* dispatcher; }; #endif EventDispatch_h -- cgit v1.1