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"
51 typedef std::shared_ptr<Canvas>
CanvasPtr;
53 class ActivationChangeEvent;
55 class FocusChangeEvent;
60 class CursorDescription;
93 const std::vector<std::shared_ptr<View>> &
children()
const;
96 void add_child(
const std::shared_ptr<View> &view);
98 template<
typename T,
typename... Types>
101 auto child = std::make_shared<T>(std::forward<Types>(args)...);
108 return add_child<View>();
115 void add_action(
const std::shared_ptr<ViewAction> &action);
117 template<
typename T,
typename... Types>
120 auto action = std::make_shared<T>(std::forward<Types>(args)...);
126 const std::vector<std::shared_ptr<ViewAction>> &
actions()
const;
325 View &operator=(
const View &) =
delete;
327 std::unique_ptr<ViewImpl> impl;
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.
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
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.
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()
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