view_event_handler.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 #pragma once
30 
31 namespace uicore
32 {
33  class EventUI;
34  class PointerEvent;
35  class ActivationChangeEvent;
36  class FocusChangeEvent;
37  class KeyEvent;
38  class CloseEvent;
39 
42  {
43  public:
45  virtual void pointer_press(PointerEvent *e) { }
46 
48  virtual void pointer_double_click(PointerEvent *e) { }
49 
51  virtual void pointer_release(PointerEvent *e) { }
52 
54  virtual void pointer_move(PointerEvent *e) { }
55 
57  virtual void pointer_enter(PointerEvent *e) { }
58 
60  virtual void pointer_leave(PointerEvent *e) { }
61 
64 
66  virtual void activated(ActivationChangeEvent *e) { }
67 
69  virtual void deactivated(ActivationChangeEvent *e) { }
70 
72  virtual void focus_gained(FocusChangeEvent *e) { }
73 
75  virtual void focus_lost(FocusChangeEvent *e) { }
76 
78  virtual void key_press(KeyEvent *e) { }
79 
81  virtual void key_release(KeyEvent *e) { }
82 
84  virtual void close(CloseEvent *e) { }
85  };
86 }
virtual void key_press(KeyEvent *e)
Handler for key press events.
Definition: view_event_handler.h:78
Window was activated or deactivated event.
Definition: activation_change_event.h:43
virtual void pointer_press(PointerEvent *e)
Handler for pointer press events.
Definition: view_event_handler.h:45
Keyboard key event.
Definition: key_event.h:47
virtual void pointer_double_click(PointerEvent *e)
Handler for pointer double click events.
Definition: view_event_handler.h:48
Window close button was clicked event.
Definition: close_event.h:36
virtual void pointer_proximity_change(PointerEvent *e)
Handler for pointer proximity change events.
Definition: view_event_handler.h:63
Event sink interface for view events.
Definition: view_event_handler.h:41
virtual void key_release(KeyEvent *e)
Handler for key release events.
Definition: view_event_handler.h:81
virtual void pointer_enter(PointerEvent *e)
Handler for pointer enter events.
Definition: view_event_handler.h:57
virtual void focus_lost(FocusChangeEvent *e)
Handler for focus lost events.
Definition: view_event_handler.h:75
virtual void pointer_release(PointerEvent *e)
Handler for pointer release events.
Definition: view_event_handler.h:51
virtual void pointer_move(PointerEvent *e)
Handler for pointer movement events.
Definition: view_event_handler.h:54
View focus changed event.
Definition: focus_change_event.h:43
virtual void close(CloseEvent *e)
Handler for close events.
Definition: view_event_handler.h:84
virtual void activated(ActivationChangeEvent *e)
Handler for when the application is activated.
Definition: view_event_handler.h:66
virtual void pointer_leave(PointerEvent *e)
Handler for pointer leave events.
Definition: view_event_handler.h:60
virtual void focus_gained(FocusChangeEvent *e)
Handler for focus gained events.
Definition: view_event_handler.h:72
virtual void deactivated(ActivationChangeEvent *e)
Handler for when the application is deactivated.
Definition: view_event_handler.h:69
Pointer event.
Definition: pointer_event.h:67
Definition: Application/application.h:35