view.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 "../../Core/Math/mat4.h"
32 #include "../../Core/Math/rect.h"
33 #include "../../Core/Math/easing.h"
34 #include "../../Core/Signals/signal.h"
35 #include "../../UI/Events/event.h"
36 #include "../Style/style.h"
37 #include "../Style/style_cascade.h"
38 #include "../Style/style_get_value.h"
39 #include "view_event_handler.h"
40 #include "view_geometry.h"
41 #include "focus_policy.h"
42 #include <vector>
43 #include <memory>
44 #include <functional>
45 
46 namespace uicore
47 {
48  class Style;
49  class StyleCascade;
50  class Canvas;
51  typedef std::shared_ptr<Canvas> CanvasPtr;
52  class EventUI;
53  class ActivationChangeEvent;
54  class CloseEvent;
55  class FocusChangeEvent;
56  class PointerEvent;
57  class ResizeEvent;
58  class KeyEvent;
59  class ViewImpl;
60  class CursorDescription;
61  enum class StandardCursor;
62  class DisplayWindow;
63  typedef std::shared_ptr<DisplayWindow> DisplayWindowPtr;
64  class ViewTree;
65  class ViewAction;
66 
68  class View : public std::enable_shared_from_this<View>, public ViewEventHandler
69  {
70  public:
71  View();
72  virtual ~View();
73 
75  const StyleCascade &style_cascade() const;
76 
78  const std::shared_ptr<Style> &style(const std::string &state = std::string()) const;
79 
81  bool state(const std::string &name) const;
82 
84  void set_state(const std::string &name, bool value);
85 
87  void set_state_cascade(const std::string &name, bool value);
88 
90  View *parent() const;
91 
93  const std::vector<std::shared_ptr<View>> &children() const;
94 
96  void add_child(const std::shared_ptr<View> &view);
97 
98  template<typename T, typename... Types>
99  std::shared_ptr<T> add_child(Types &&... args)
100  {
101  auto child = std::make_shared<T>(std::forward<Types>(args)...);
102  add_child(child);
103  return child;
104  }
105 
106  std::shared_ptr<View> add_child()
107  {
108  return add_child<View>();
109  }
110 
112  void remove_from_parent();
113 
115  void add_action(const std::shared_ptr<ViewAction> &action);
116 
117  template<typename T, typename... Types>
118  std::shared_ptr<T> add_action(Types &&... args)
119  {
120  auto action = std::make_shared<T>(std::forward<Types>(args)...);
121  add_action(action);
122  return action;
123  }
124 
126  const std::vector<std::shared_ptr<ViewAction>> &actions() const;
127 
129  bool hidden() const;
130 
132  void set_hidden(bool value = true);
133 
135  bool is_static_position_and_visible() const;
136 
138  bool needs_layout() const;
139 
141  void set_needs_layout();
142 
144  const ViewGeometry &geometry() const;
145 
149  void set_geometry(const ViewGeometry &geometry);
150 
154  CanvasPtr canvas() const;
155 
157  void set_needs_render();
158 
160  bool render_exception_encountered() const;
161 
166 
168  const Mat4f &view_transform() const;
169 
171  void set_view_transform(const Mat4f &transform);
172 
174  bool content_clipped() const;
175 
177  void set_content_clipped(bool clipped);
178 
180  float preferred_width(const CanvasPtr &canvas);
181 
183  float preferred_height(const CanvasPtr &canvas, float width);
184 
186  float first_baseline_offset(const CanvasPtr &canvas, float width);
187 
189  float last_baseline_offset(const CanvasPtr &canvas, float width);
190 
192  virtual void layout_children(const CanvasPtr &canvas);
193 
195  const ViewTree *view_tree() const;
196  ViewTree *view_tree();
197 
199  View *focus_view() const;
200 
202  std::shared_ptr<View> find_view_at(const Pointf &pos) const;
203 
205  FocusPolicy focus_policy() const;
206 
208  void set_focus_policy(FocusPolicy policy);
209 
211  unsigned int tab_index() const;
212 
214  void set_tab_index(unsigned int index);
215 
217  void set_focus();
218 
220  void remove_focus();
221 
223  bool has_focus() const { return focus_view() == this; }
224 
226  void prev_focus();
227 
229  void next_focus();
230 
232  void animate(float from, float to, const std::function<void(float)> &setter, int duration_ms = 400, const std::function<float(float)> &easing = Easing::linear, std::function<void()> animation_end = std::function<void()>());
233 
235  void stop_animations();
236 
238  void set_cursor(const CursorDescription &cursor);
239  void set_cursor(StandardCursor type);
240 
242  void set_inherit_cursor();
243 
258 
262  void pointer_move(PointerEvent *e) override { sig_pointer_move()(e); }
269  void focus_lost(FocusChangeEvent *e) override { sig_focus_lost()(e); }
270  void key_press(KeyEvent *e) override { sig_key_press()(e); }
271  void key_release(KeyEvent *e) override { sig_key_release()(e); }
272  void close(CloseEvent *e) override { sig_close()(e); }
273 
277  void dispatch_event(EventUI *e, bool no_propagation = false);
278  void dispatch_event(EventUI *e, const View *until_parent_view);
279 
281  static View *common_parent(View *view1, View *view2);
282 
284  void update_cursor(const DisplayWindowPtr &window);
285 
287  Pointf to_screen_pos(const Pointf &pos);
288 
290  Pointf from_screen_pos(const Pointf &pos);
291 
293  Pointf to_root_pos(const Pointf &pos);
294 
296  Pointf from_root_pos(const Pointf &pos);
297 
300 
301  protected:
303  virtual void render_content(const CanvasPtr &canvas) { }
304 
306  virtual void child_added(const std::shared_ptr<View> &view) { }
307 
309  virtual void child_removed(const std::shared_ptr<View> &view) { }
310 
312  virtual float calculate_preferred_width(const CanvasPtr &canvas);
313 
315  virtual float calculate_preferred_height(const CanvasPtr &canvas, float width);
316 
318  virtual float calculate_first_baseline_offset(const CanvasPtr &canvas, float width);
319 
321  virtual float calculate_last_baseline_offset(const CanvasPtr &canvas, float width);
322 
323  private:
324  View(const View &) = delete;
325  View &operator=(const View &) = delete;
326 
327  std::unique_ptr<ViewImpl> impl;
328 
329  friend class ViewTree;
330  friend class ViewImpl;
331  friend class ViewAction;
332  };
333 }
bool state(const std::string &name) const
Test if a style state is currently set.
float preferred_width(const CanvasPtr &canvas)
Calculates the preferred width of this view.
std::shared_ptr< T > add_action(Types &&...args)
Definition: view.h:118
virtual void render_content(const CanvasPtr &canvas)
Renders the content of a view.
Definition: view.h:303
Definition: view_geometry.h:38
void set_hidden(bool value=true)
Hides a view from layout and rendering.
float last_baseline_offset(const CanvasPtr &canvas, float width)
Calculates the offset to the last baseline.
void set_geometry(const ViewGeometry &geometry)
Window was activated or deactivated event.
Definition: activation_change_event.h:43
bool render_exception_encountered() const
Test if this view generated an exception during rendering.
Signal< void(PointerEvent *)> & sig_pointer_leave()
void deactivated(ActivationChangeEvent *e) override
Handler for when the application is deactivated.
Definition: view.h:267
void set_state(const std::string &name, bool value)
Set or clear style state.
std::shared_ptr< View > add_child()
Definition: view.h:106
void set_focus()
Set this view as the focused view.
2D (x,y) point structure - Float
Definition: point.h:68
Pointf from_root_pos(const Pointf &pos)
Map from root content to local content coordinates.
C style comment block.
CanvasPtr canvas() const
void prev_focus()
Give focus to the previous view in the keyboard tab index order.
void key_release(KeyEvent *e) override
Handler for key release events.
Definition: view.h:271
Keyboard key event.
Definition: key_event.h:47
void focus_lost(FocusChangeEvent *e) override
Handler for focus lost events.
Definition: view.h:269
void stop_animations()
Stop all activate animation functions.
Window close button was clicked event.
Definition: close_event.h:36
Signal< void(ActivationChangeEvent *)> & sig_deactivated()
void pointer_leave(PointerEvent *e) override
Handler for pointer leave events.
Definition: view.h:264
void set_needs_layout()
Forces recalculation of view geometry before next rendering.
Base class for managing a tree of views.
Definition: view_tree.h:42
std::shared_ptr< View > find_view_at(const Pointf &pos) const
Find descendant view at the specified content relative position.
void key_press(KeyEvent *e) override
Handler for key press events.
Definition: view.h:270
Pointf to_screen_pos(const Pointf &pos)
Map from local content to screen coordinates.
Signal< void(PointerEvent *)> & sig_pointer_enter()
Style value resolver.
Definition: style_cascade.h:67
void pointer_move(PointerEvent *e) override
Handler for pointer movement events.
Definition: view.h:262
Signal< void(PointerEvent *)> & sig_pointer_release()
std::shared_ptr< DisplayWindow > DisplayWindowPtr
Definition: canvas.h:41
Signal< void(FocusChangeEvent *)> & sig_focus_lost()
const std::vector< std::shared_ptr< View > > & children() const
List of all immediate child views.
Signal< void(PointerEvent *)> & sig_pointer_proximity_change()
virtual float calculate_preferred_width(const CanvasPtr &canvas)
Calculates the preferred width of this view.
Signal< void(PointerEvent *)> & sig_pointer_double_click()
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 set_view_transform(const Mat4f &transform)
Specifies the view transform to be applied before its contents and children are rendered.
SlotContainer slots
Slot container helping with automatic disconnection of connected slots when the view is destroyed...
Definition: view.h:299
bool content_clipped() const
Content clipping flag.
View * parent() const
Parent view node or nullptr if the view is the current root node.
virtual void layout_children(const CanvasPtr &canvas)
Sets the view geometry for all children of this view.
void pointer_double_click(PointerEvent *e) override
Handler for pointer double click events.
Definition: view.h:260
friend class ViewImpl
Definition: view.h:330
void add_action(const std::shared_ptr< ViewAction > &action)
Add an action recognizer.
Pointf to_root_pos(const Pointf &pos)
Map from local content to root content coordinates.
void remove_from_parent()
Remove view from parent.
StandardCursor
Standard Cursor.
Definition: display_window.h:69
void set_content_clipped(bool clipped)
Specifies if content should be clipped during rendering.
const Mat4f & view_transform() const
Current view transform.
Signal< void(FocusChangeEvent *)> & sig_focus_gained()
bool needs_layout() const
Test if view geometry needs to be recalculated.
const ViewTree * view_tree() const
Tree in view hierachy.
Signal< void(PointerEvent *)> & sig_pointer_move()
virtual float calculate_first_baseline_offset(const CanvasPtr &canvas, float width)
Calculates the offset to the first baseline.
bool has_focus() const
Test if this view is receiving keyboard input.
Definition: view.h:223
void next_focus()
Give focus to the next view in the keyboard tab index order.
void pointer_press(PointerEvent *e) override
Handler for pointer press events.
Definition: view.h:259
void set_focus_policy(FocusPolicy policy)
Set if this view automatically can gain focus.
void set_cursor(const CursorDescription &cursor)
Set the cursor icon used when cursor is above this view.
void pointer_enter(PointerEvent *e) override
Handler for pointer enter events.
Definition: view.h:263
virtual void child_added(const std::shared_ptr< View > &view)
Child view was added to this view.
Definition: view.h:306
virtual void child_removed(const std::shared_ptr< View > &view)
Child view was removed from this view.
Definition: view.h:309
Signal< void(KeyEvent *)> & sig_key_press()
virtual float calculate_last_baseline_offset(const CanvasPtr &canvas, float width)
Calculates the offset to the last baseline.
static float linear(float t)
bool hidden() const
Test if view is set to hidden.
void dispatch_event(EventUI *e, bool no_propagation=false)
const std::vector< std::shared_ptr< ViewAction > > & actions() const
List of all action recognizers.
FocusPolicy
Automatic focus policy.
Definition: focus_policy.h:34
static View * common_parent(View *view1, View *view2)
Find the common parent view for the specified views.
virtual float calculate_preferred_height(const CanvasPtr &canvas, float width)
Calculates the preferred height of this view.
void set_needs_render()
Signals this view needs to be rendered again.
void activated(ActivationChangeEvent *e) override
Handler for when the application is activated.
Definition: view.h:266
void remove_focus()
Remove focus from this view.
View focus changed event.
Definition: focus_change_event.h:43
Definition: signal.h:101
Base class for events being dispatched through the view hiarchy.
Definition: event.h:47
Signal< void(PointerEvent *)> & sig_pointer_press()
void update_cursor(const DisplayWindowPtr &window)
Update window cursor to the cursor used by this view.
void set_inherit_cursor()
Specify that the cursor icon is inherited from the parent view.
Definition: signal.h:137
Pointf from_screen_pos(const Pointf &pos)
Map from screen to local content coordinates.
const StyleCascade & style_cascade() const
Style cascade currently active for this view.
const ViewGeometry & geometry() const
Actual view position and size after layout.
const std::shared_ptr< Style > & style(const std::string &state=std::string()) const
Style properties for the specified state.
void pointer_proximity_change(PointerEvent *e) override
Handler for pointer proximity change events.
Definition: view.h:265
View for an area of the user interface.
Definition: view.h:68
void animate(float from, float to, const std::function< void(float)> &setter, int duration_ms=400, const std::function< float(float)> &easing=Easing::linear, std::function< void()> animation_end=std::function< void()>())
Continously call an animation function for the specified duration.
Signal< void(ActivationChangeEvent *)> & sig_activated()
virtual ~View()
View * focus_view() const
The view receiving keyboard events or nullptr if no view has the focus.
unsigned int tab_index() const
Tab index for keyboard focus changes.
void close(CloseEvent *e) override
Handler for close events.
Definition: view.h:272
Signal< void(CloseEvent *)> & sig_close()
Signal< void(KeyEvent *)> & sig_key_release()
std::shared_ptr< Canvas > CanvasPtr
Definition: canvas.h:126
FocusPolicy focus_policy() const
Focus policy active for this view.
void focus_gained(FocusChangeEvent *e) override
Handler for focus gained events.
Definition: view.h:268
std::shared_ptr< T > add_child(Types &&...args)
Definition: view.h:99
float first_baseline_offset(const CanvasPtr &canvas, float width)
Calculates the offset to the first baseline.
Pointer event.
Definition: pointer_event.h:67
float preferred_height(const CanvasPtr &canvas, float width)
Calculates the preferred height of this view.
void clear_exception_encountered()
Definition: Application/application.h:35
4D matrix
Definition: mat2.h:47
bool is_static_position_and_visible() const
Test if view should participate in static layout calculations (layout_children)
void set_state_cascade(const std::string &name, bool value)
Sets the state for this view and all siblings recursively, until a manually set state of the same nam...
This class contains everything to construct a cursor - its data, default settings etc...
Definition: cursor_description.h:65
void set_tab_index(unsigned int index)
Sets the tab index used for keyboard focus changes.
void pointer_release(PointerEvent *e) override
Handler for pointer release events.
Definition: view.h:261