view_action.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 #include "view_event_handler.h"
32 #include <memory>
33 
34 namespace uicore
35 {
36  class EventUI;
37  class PointerEvent;
38  class ActivationChangeEvent;
39  class FocusChangeEvent;
40  class KeyEvent;
41  class View;
42  class ViewActionImpl;
43 
45  class ViewAction : public std::enable_shared_from_this<ViewAction>, public ViewEventHandler
46  {
47  public:
48  ViewAction();
49  virtual ~ViewAction();
50 
52  View *view() const;
53 
54  template<typename T>
55  T *view() const { return dynamic_cast<T*>(view<View>()); }
56 
58  void remove_from_view();
59 
61  void begin_action();
62 
64  void end_action();
65 
67  bool action_active() const;
68 
69  private:
70  ViewAction(const ViewAction &) = delete;
71  ViewAction &operator=(const ViewAction &) = delete;
72 
73  std::unique_ptr<ViewActionImpl> impl;
74 
75  friend class ViewTree;
76  friend class View;
77  friend class ViewActionImpl;
78  };
79 }
View * view() const
Returns the view the action is attached to.
Base class for managing a tree of views.
Definition: view_tree.h:42
void end_action()
Releases capture of events.
Recognizes actions in a view and captures input for the duration of the action.
Definition: view_action.h:45
Event sink interface for view events.
Definition: view_event_handler.h:41
void remove_from_view()
Removes recognizer from the view it is attached to.
friend class ViewActionImpl
Definition: view_action.h:77
T * view() const
Definition: view_action.h:55
virtual ~ViewAction()
void begin_action()
Captures events until end is called.
bool action_active() const
Returns true if the action is capturing events.
View for an area of the user interface.
Definition: view.h:68
Definition: Application/application.h:35