1.8
Public Types | Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | List of all members
StaticGrid Class Reference

Static grid organization for widgets. More...

Inheritance diagram for StaticGrid:
Inheritance graph
[legend]

Public Types

enum class  GridFlag { show_border = detail::bit(0) }
 Grid flags. More...
 
using GridFlags = egt::Flags< GridFlag >
 Grid flags. More...
 
using GridPoint = PointType< size_t, detail::Compatible::grid >
 Rows and column of the grid. More...
 
using GridSize = SizeType< size_t, detail::Compatible::grid >
 Rows and columns size of the grid. More...
 
- Public Types inherited from Widget
enum class  Flag : uint32_t {
  plane_window = detail::bit(0) , window = detail::bit(1) , frame = detail::bit(2) , disabled = detail::bit(3) ,
  readonly = detail::bit(4) , active = detail::bit(5) , invisible = detail::bit(6) , grab_mouse = detail::bit(7) ,
  no_clip = detail::bit(8) , no_layout = detail::bit(9) , no_autoresize = detail::bit(10) , checked = detail::bit(11) ,
  component = detail::bit(12)
}
 Common flags used for various widget properties. More...
 
using Flags = egt::Flags< Widget::Flag >
 Widget flags. More...
 
using WalkCallback = std::function< bool(Widget *widget, int level)>
 Callback definition used by walk(). More...
 
using WidgetId = uint64_t
 Type used to identify a unique Widget ID. More...
 
- Public Types inherited from Object
using EventCallback = std::function< void(Event &event)>
 Event handler callback function. More...
 
using FilterFlags = FlagsBase< EventId >
 Event handler EventId filter. More...
 
using RegisterHandle = uint64_t
 Handle type. More...
 

Public Member Functions

 StaticGrid (const GridSize &size=GridSize(1, 1))
 
 StaticGrid (const Rect &rect, const GridSize &size=GridSize(1, 1))
 
 StaticGrid (Frame &parent, const GridSize &size=GridSize(1, 1))
 
 StaticGrid (Frame &parent, const Rect &rect, const GridSize &size=GridSize(1, 1))
 
 StaticGrid (Serializer::Properties &props)
 
template<class T >
void add (const std::shared_ptr< T > &widget)
 Utility wrapper around add() More...
 
virtual void add (const std::shared_ptr< Widget > &widget)
 Add a child widget. More...
 
void add (const std::shared_ptr< Widget > &widget) override
 Add a widget to the next empty cell. More...
 
virtual void add (const std::shared_ptr< Widget > &widget, const GridPoint &point)
 Add a widget to the grid into a specific cell. More...
 
virtual void add (const std::shared_ptr< Widget > &widget, size_t column, size_t row)
 Add a widget to the grid into a specific cell. More...
 
void add (Widget &widget)
 Add a child widget. More...
 
virtual void add (Widget &widget, const GridPoint &point)
 Add a widget to the grid into a specific cell. More...
 
virtual void add (Widget &widget, size_t column, size_t row)
 Add a widget to the grid into a specific cell. More...
 
EGT_NODISCARD bool column_priority () const
 Get the column priority status. More...
 
void column_priority (bool value)
 Set the column priority status. More...
 
void deserialize_children (const Deserializer &deserializer) override
 Deserialize the children of this widget. More...
 
Widgetget (const GridPoint &point)
 Get a widget at the specified row and column. More...
 
EGT_NODISCARD GridSize grid_size () const
 Get the GridSize. More...
 
void grid_size (const GridSize size)
 Set the GridSize. More...
 
EGT_NODISCARD DefaultDim horizontal_space () const
 Get the horizontal space. More...
 
void horizontal_space (DefaultDim space)
 Set the horizontal space i.e. More...
 
EGT_NODISCARD int last_add_column () const
 Returns the last column used for an add() call. More...
 
EGT_NODISCARD int last_add_row () const
 Returns the last row used for an add() call. More...
 
void layout () override
 Perform layout of the Widget. More...
 
EGT_NODISCARD size_t n_col () const
 Get the number of columns. More...
 
EGT_NODISCARD size_t n_row () const
 Get the number of rows. More...
 
void remove (Widget *widget) override
 Remove a child widget. More...
 
void serialize (Serializer &serializer) const override
 Serialize the widget to the specified serializer. More...
 
void serialize_children (Serializer &serializer) const override
 Serialize the widget's children to the specified serializer. More...
 
EGT_NODISCARD DefaultDim vertical_space () const
 Get the vertical space. More...
 
void vertical_space (DefaultDim space)
 Set the vertical space i.e. More...
 
- Public Member Functions inherited from Frame
 Frame (const Frame &)=delete
 
 Frame (const Rect &rect={}, const Flags &flags={}) noexcept
 
 Frame (Frame &&) noexcept=default
 
 Frame (Frame &parent, const Rect &rect, const Flags &flags={}) noexcept
 
 Frame (Serializer::Properties &props) noexcept
 
 ~Frame () noexcept override
 
template<class T >
void add (const std::shared_ptr< T > &widget)
 Utility wrapper around add() More...
 
void add (Widget &widget)
 Add a child widget. More...
 
EGT_NODISCARD std::shared_ptr< Widgetchild_at (size_t index) const
 Get a child widget at a specific index. More...
 
EGT_NODISCARD detail::Range< SubordinatesArray > & children ()
 Return the array of child widgets. More...
 
EGT_NODISCARD const detail::Range< SubordinatesArraychildren () const
 Return the array of child widgets. More...
 
EGT_NODISCARD size_t count_children () const
 Get the number of children widgets. More...
 
template<class T >
std::shared_ptr< T > find_child (const std::string &name)
 Find a child Widget in the entire tree by name. More...
 
Widgethit_test (const DisplayPoint &point)
 Get the widget under the given DisplayPoint. More...
 
bool is_child (Widget *widget) const
 Returns true if the child exists. More...
 
void on_screen_resized () override
 Overridden to be called recursively on all children. More...
 
Frameoperator= (const Frame &)=delete
 
Frameoperator= (Frame &&) noexcept=default
 
void paint_children_to_file ()
 Paint individual children to file. More...
 
void paint_to_file (const std::string &filename={}) override
 Save the entire frame surface to a file. More...
 
void remove_all ()
 Remove all child widgets. More...
 
void show () override
 Show the Widget. More...
 
template<typename T , typename... Args>
std::shared_ptr< T > spawn (Args &&... args)
 Create a child widget of the specified type. More...
 
EGT_NODISCARD ChildDrawCallback special_child_draw_callback () const
 Get the special child draw callback. More...
 
void special_child_draw_callback (ChildDrawCallback func)
 Set the special child draw callback. More...
 
EGT_NODISCARD ChildDrawCallback special_child_draw_callback (Widget *parent) const
 Get the child draw callback of the parent. More...
 
virtual EGT_NODISCARD Point to_child (const Point &p) const
 
EGT_NODISCARD Rect to_child (Rect rect) const
 
EGT_NODISCARD bool top_level () const override
 Return true if this is a top level frame, with no parent. More...
 
void walk (const WalkCallback &callback, int level=0) override
 Walk the Widget tree and call callback with each Widget. More...
 
virtual EGT_NODISCARD size_t zorder () const
 Get the zorder of the widget. More...
 
size_t zorder (const Widget *widget) const
 Get the zorder of the widget. More...
 
void zorder (const Widget *widget, size_t rank)
 Set the zorder of the widget. More...
 
virtual void zorder (size_t rank)
 Set the zorder of the widget. More...
 
virtual void zorder_bottom ()
 Move the widget to the bottom. More...
 
void zorder_bottom (const Widget *widget)
 Move the specified widget zorder to the bottom of the current list of widgets with the same parent. More...
 
virtual void zorder_down ()
 Move this widgets zorder down relative to other widgets with the same parent. More...
 
void zorder_down (const Widget *widget)
 Move the specified widget zorder down relative to other widgets with the same parent. More...
 
virtual void zorder_top ()
 Move the widget to the top. More...
 
void zorder_top (const Widget *widget)
 Move the specified widget zorder to the top of the current list of widgets with the same parent. More...
 
virtual void zorder_up ()
 Move this widgets zorder up relative to other widgets with the same parent. More...
 
void zorder_up (const Widget *widget)
 Move the specified widget zorder up relative to other widgets with the same parent. More...
 
- Public Member Functions inherited from Widget
 Widget (const Rect &rect={}, const Widget::Flags &flags={}) noexcept
 
 Widget (const Widget &)=delete
 
 Widget (Frame &parent, const Rect &rect={}, const Widget::Flags &flags={}) noexcept
 
 Widget (Serializer::Properties &props) noexcept
 
 Widget (Widget &&) noexcept=default
 
 ~Widget () noexcept override
 
EGT_NODISCARD bool active () const
 Get the active state. More...
 
void active (bool value)
 Set the active state. More...
 
AlignFlagsalign ()
 Get the alignment. More...
 
EGT_NODISCARD const AlignFlagsalign () const
 Get the alignment. More...
 
void align (const AlignFlags &a)
 Align the widget. More...
 
EGT_NODISCARD float alpha () const
 Get the alpha property. More...
 
void alpha (float alpha)
 Set the alpha property. More...
 
EGT_NODISCARD bool autoresize () const
 Return the autoresize state of the widget. More...
 
void autoresize (bool value)
 Set the autoresize state. More...
 
EGT_NODISCARD DefaultDim border () const
 Get the border width. More...
 
void border (DefaultDim border)
 Set the border width. More...
 
EGT_NODISCARD Theme::BorderFlags border_flags () const
 Get the border flags. More...
 
void border_flags (const Theme::BorderFlags &flags)
 Set the border flags. More...
 
EGT_NODISCARD float border_radius () const
 Get the border radius. More...
 
void border_radius (float radius)
 Set the border radius. More...
 
EGT_NODISCARD const Rectbox () const
 Bounding box for the Widget. More...
 
void box (const Rect &rect)
 Change the bounding box of the widget. More...
 
bool can_handle_event () const
 Returns true if the widget is capable of handling an event. More...
 
EGT_NODISCARD Point center () const
 Get the center point of the widget's box(). More...
 
EGT_NODISCARD bool checked () const
 Get the boolean checked state of the a widget. More...
 
virtual void checked (bool value)
 Set the checked state of the widget. More...
 
EGT_NODISCARD bool clip () const
 Return the clip state of the widget. More...
 
EGT_NODISCARD const Patterncolor (Palette::ColorId id) const
 Get a Widget color. More...
 
void color (Palette::ColorId id, const Pattern &color, Palette::GroupId group=Palette::GroupId::normal)
 Add a color to the widget's instance palette. More...
 
EGT_NODISCARD const Patterncolor (Palette::ColorId id, Palette::GroupId group) const
 Get a Widget color. More...
 
virtual EGT_NODISCARD Rect content_area () const
 Return the area that content is allowed to be positioned into. More...
 
virtual void damage ()
 Damage the box() of the widget and cause a redraw. More...
 
virtual void damage (const Rect &rect)
 Mark the specified rect as a damaged area of the widget. More...
 
void detach ()
 Detach this widget from its parent. More...
 
void disable ()
 Set the disabled state to true. More...
 
void disable_toggle ()
 Toggle the disabled state. More...
 
EGT_NODISCARD bool disabled () const
 Return the disabled state of the widget. More...
 
void disabled (bool value)
 Set the disabled state. More...
 
DisplayPoint display_origin ()
 Get the display origin of the Widget. More...
 
virtual Point display_to_local (const DisplayPoint &p)
 Convert a display point to a local point. More...
 
virtual void draw (Painter &painter, const Rect &rect)
 Draw the widget. More...
 
void draw_box (Painter &painter, Palette::ColorId bg, Palette::ColorId border) const
 Helper function to draw this widget's box using the appropriate theme. More...
 
void draw_circle (Painter &painter, Palette::ColorId bg, Palette::ColorId border) const
 Helper function to draw this widget's circle using the appropriate theme. More...
 
void enable ()
 Set the disabled state to false. More...
 
Theme::FillFlagsfill_flags ()
 Get a modifiable fill flags reference. More...
 
EGT_NODISCARD const Theme::FillFlagsfill_flags () const
 Get the fill flags. More...
 
void fill_flags (const Theme::FillFlags &flags)
 Set the fill flags. More...
 
EGT_NODISCARD bool focus () const
 Get the current focus state. More...
 
void focus (bool value)
 Set the focus state. More...
 
EGT_NODISCARD const Fontfont () const
 Get the widget Font. More...
 
void font (const Font &font)
 Set the widget Font. More...
 
EGT_NODISCARD bool frame () const
 Return the frame state of the widget. More...
 
EGT_NODISCARD bool grab_mouse () const
 Return the grab_mouse state of the widget. More...
 
void grab_mouse (bool value)
 Set the grab_mouse state. More...
 
virtual void handle (Event &event)
 Handle an event. More...
 
bool has_font () const
 Check whether the widget has a custom Font. More...
 
EGT_NODISCARD bool has_palette () const
 Check whether the widget has a custom palette. More...
 
EGT_NODISCARD DefaultDim height () const
 Height of the widget's box(). More...
 
void height (DefaultDim h)
 Change the height. More...
 
virtual void hide ()
 Hide the Widget. More...
 
EGT_NODISCARD DefaultDim horizontal_ratio () const
 Get the horizontal ratio relative to parent. More...
 
void horizontal_ratio (DefaultDim horizontal)
 Set the horizontal ratio relative to parent. More...
 
EGT_NODISCARD bool in_layout () const
 Indicate if the Widget is computing the layout or not. More...
 
DisplayPoint local_to_display (const Point &p)
 Convert a local point to a display point. More...
 
EGT_NODISCARD DefaultDim margin () const
 Get the margin width. More...
 
void margin (DefaultDim margin)
 Set the margin width. More...
 
virtual EGT_NODISCARD Size min_size_hint () const
 Get a minimum size hint for the Widget. More...
 
void min_size_hint (const Size &size)
 Set the minimum size hint for the Widget. More...
 
EGT_NODISCARD size_t moat () const
 Get the sum of the margin(), padding(), and border() around the content of the widget. More...
 
virtual void move (const Point &point)
 Move the Widget to a new position. More...
 
void move_to_center ()
 Move the widget to the center of its parent. More...
 
void move_to_center (const Point &point)
 Move the widget to the specified center point. More...
 
EGT_NODISCARD bool no_layout () const
 Return the no_layout state of the widget. More...
 
void no_layout (bool value)
 Set the no_layout state. More...
 
Widgetoperator= (const Widget &)=delete
 
Widgetoperator= (Widget &&) noexcept=default
 
EGT_NODISCARD DefaultDim padding () const
 Return the padding width. More...
 
void padding (DefaultDim padding)
 Set the padding width. More...
 
virtual void paint (Painter &painter)
 Paint the Widget using a Painter. More...
 
EGT_NODISCARD const Palettepalette () const
 Get the widget palette. More...
 
void palette (const Palette &palette)
 Set the widget instance Palette. More...
 
Widgetparent ()
 Get a pointer to the parent Widget, or nullptr if none exists. More...
 
EGT_NODISCARD const Widgetparent () const
 Get a pointer to the parent Widget, or nullptr if none exists. More...
 
EGT_NODISCARD bool plane_window () const
 Return the plane_window state of the widget. More...
 
EGT_NODISCARD const Pointpoint () const
 Get the origin of the widget's box(). More...
 
virtual void post_deserialize (Serializer::Properties &props)
 Resume deserializing of the widget after its children have been deserialized. More...
 
void ratio (DefaultDim horizontal, DefaultDim vertical)
 Set the size ratio relative to parent. More...
 
void ratio (DefaultDim ratio)
 Set the size ratio relative to parent. More...
 
EGT_NODISCARD bool readonly () const
 Get the readonly state of the widget. More...
 
void readonly (bool value)
 Set the readonly state of the widget. More...
 
void readonly_toggle ()
 Toggle the readonly state. More...
 
void reset_font ()
 Reset the widget's Font. More...
 
void reset_palette ()
 Clear the widget instance palette. More...
 
virtual void resize (const Size &size)
 Resize the widget. More...
 
void resize_by_ratio (DefaultDim hratio, DefaultDim vratio)
 Scale the current size of the Widget given the ratio. More...
 
void resize_by_ratio (DefaultDim ratio)
 Scale the current size of the Widget given the ratio. More...
 
virtual void scale (float hscale, float vscale)
 Set the scale of the widget. More...
 
void scale (float scale)
 Set the scale of the widget. More...
 
virtual EGT_NODISCARD Screenscreen () const
 Get a pointer to the Screen instance, using using a parent as necessary. More...
 
EGT_NODISCARD const Sizesize () const
 Get the size of the widget's box(). More...
 
EGT_NODISCARD const Themetheme () const
 Get the Widget Theme. More...
 
EGT_NODISCARD Point to_parent (const Point &r) const
 Convert a point with a local origin to a parent origin. More...
 
EGT_NODISCARD Rect to_parent (const Rect &r) const
 Convert a point in a rect a local origin to a parent origin. More...
 
virtual EGT_NODISCARD std::string type () const
 Returns a string representation of the type of this widget. More...
 
EGT_NODISCARD const Rectuser_requested_box () const
 Get the box corresponding to the user requested one, not the actual one. More...
 
EGT_NODISCARD DefaultDim vertical_ratio () const
 Get the vertical ratio relative to parent. More...
 
void vertical_ratio (DefaultDim vertical)
 Set the vertical ratio relative to parent. More...
 
EGT_NODISCARD bool visible () const
 Get the visible state of the widget. More...
 
void visible (bool value)
 Set the visible state. More...
 
void visible_toggle ()
 Toggle the visibility state. More...
 
EGT_NODISCARD WidgetId widgetid () const
 Get the unique id of the widget. More...
 
EGT_NODISCARD DefaultDim width () const
 Width of the widget's box(). More...
 
void width (DefaultDim w)
 Change the width. More...
 
EGT_NODISCARD DefaultDim x () const
 X coordinate of the widget's box(). More...
 
void x (DefaultDim x)
 Set the X coordinate of the box. More...
 
EGT_NODISCARD DefaultDim xratio () const
 Get the X position ratio relative to parent. More...
 
void xratio (DefaultDim xratio)
 Set the X position ratio relative to parent. More...
 
EGT_NODISCARD DefaultDim y () const
 Y coordinate of the widget's box(). More...
 
void y (DefaultDim y)
 Set the Y coordinate of the box. More...
 
EGT_NODISCARD DefaultDim yratio () const
 Get the Y position ratio relative to parent. More...
 
void yratio (DefaultDim yratio)
 Set the Y position ratio relative to parent. More...
 
virtual EGT_NODISCARD size_t zorder () const
 Get the zorder of the widget. More...
 
virtual void zorder (size_t rank)
 Set the zorder of the widget. More...
 
- Public Member Functions inherited from Object
 Object () noexcept=default
 
 Object (const Object &)=delete
 
 Object (Object &&)=default
 
virtual ~Object () noexcept=default
 
void clear_handlers ()
 Clear all registered event handlers. More...
 
void invoke_handlers (Event &event)
 Invoke all handlers with the specified event. More...
 
void invoke_handlers (EventId event)
 Invoke all handlers with the specified EventId. More...
 
EGT_NODISCARD const std::string & name () const
 Get the name of the Object. More...
 
void name (const std::string &name)
 Set the name of the Object. More...
 
RegisterHandle on_event (const EventCallback &handler, const FilterFlags &mask={})
 Add an event handler to be called when the widget generates an event. More...
 
Objectoperator= (const Object &)=delete
 
Objectoperator= (Object &&)=default
 
void remove_handler (RegisterHandle handle)
 Remove an event handler. More...
 

Protected Types

using CellArray = std::vector< std::vector< std::weak_ptr< Widget > >>
 Type for cell array. More...
 
- Protected Types inherited from Widget
using ChildDrawCallback = std::function< void(Painter &painter, Widget *widget)>
 Helper type that defines the special draw child callback. More...
 
using SubordinatesArray = std::list< std::shared_ptr< Widget > >
 Helper type for an array of subordinate widgets. More...
 
- Protected Types inherited from Object
using CallbackArray = std::vector< CallbackMeta >
 Helper type for an array of callbacks. More...
 

Protected Member Functions

 StaticGrid (Serializer::Properties &props, bool is_derived)
 
void reallocate (const GridSize &size)
 Reallocate the size of the grid keeping any existing cells intact. More...
 
void reposition ()
 Re-position all child widgets. More...
 
- Protected Member Functions inherited from Frame
 Frame (Serializer::Properties &props, bool is_derived) noexcept
 
- Protected Member Functions inherited from Widget
 Widget (Serializer::Properties &props, bool is_derived) noexcept
 
void add_component (Widget &widget)
 Add a component. More...
 
void add_damage (const Rect &rect)
 Add damage to the damage array. More...
 
virtual void begin_draw ()
 Cause the widget to draw itself and all of its children. More...
 
void begin_draw (Widget *parent)
 Call the begin_draw() method of the parent. More...
 
EGT_NODISCARD detail::Range< SubordinatesArray > & children ()
 Return the array of child widgets. More...
 
EGT_NODISCARD const detail::Range< SubordinatesArraychildren () const
 Return the array of child widgets. More...
 
EGT_NODISCARD bool component () const
 Get the component status. More...
 
void component (bool value)
 Set the component flag. More...
 
virtual void damage_from_subordinate (const Rect &rect)
 Special variation of damage() that is to be called explicitly by subordinate widgets. More...
 
void deserialize_leaf (Serializer::Properties &props)
 Deserialize widget properties that require to call overridden methods. More...
 
Widgetfind_screen ()
 Starting from this Widget, find the Widget that has a Screen. More...
 
EGT_NODISCARD const Widgetfind_screen () const
 Starting from this Widget, find the Widget that has a Screen. More...
 
Widget::Flagsflags ()
 Get a modifiable ref of the flags. More...
 
EGT_NODISCARD const Widget::Flagsflags () const
 Get a const ref of the flags. More...
 
virtual EGT_NODISCARD bool has_screen () const
 Does this Widget have a screen? More...
 
EGT_NODISCARD Rect local_box () const
 Get the local box which is the same size as box(), but with the origin zeroed. More...
 
EGT_NODISCARD bool parent_in_layout ()
 Indicate if our parent is computing the layout. More...
 
void parent_layout ()
 Call our parent to do a layout. More...
 
void remove_component (Widget *widget)
 Remove a component. More...
 
virtual void set_parent (Widget *parent)
 Set this widget's parent. More...
 
void special_child_draw (Painter &painter, Widget *widget)
 Special draw function that can be invoked when drawing each child. More...
 
EGT_NODISCARD ChildDrawCallback special_child_draw_callback () const
 Get the special child draw callback. More...
 
void special_child_draw_callback (ChildDrawCallback func)
 Set the special child draw callback. More...
 
EGT_NODISCARD ChildDrawCallback special_child_draw_callback (Widget *parent) const
 Get the child draw callback of the parent. More...
 
virtual Point to_panel (const Point &p)
 Convert a local point to the coordinate system of the current panel. More...
 
virtual EGT_NODISCARD Point to_subordinate (const Point &p) const
 Convert a point with an origin of the current widget to subordinate origin. More...
 
EGT_NODISCARD Rect to_subordinate (Rect rect) const
 
size_t zorder (const Widget *widget) const
 Get the zorder of the widget. More...
 
void zorder (const Widget *widget, size_t rank)
 Set the zorder of the widget. More...
 
void zorder_bottom (const Widget *widget)
 Move the specified widget zorder to the bottom of the current list of widgets with the same parent. More...
 
void zorder_down (const Widget *widget)
 Move the specified widget zorder down relative to other widgets with the same parent. More...
 
void zorder_top (const Widget *widget)
 Move the specified widget zorder to the top of the current list of widgets with the same parent. More...
 
void zorder_up (const Widget *widget)
 Move the specified widget zorder up relative to other widgets with the same parent. More...
 

Protected Attributes

CellArray m_cells
 Cell array of the grid. More...
 
bool m_column_priority {false}
 Column priority when expanding the grid automatically. More...
 
GridSize m_grid_size {}
 Grid size. More...
 
DefaultDim m_horizontal_space {}
 Space between rows. More...
 
int m_last_add_column {-1}
 Last added column. More...
 
int m_last_add_row {-1}
 Last added row. More...
 
DefaultDim m_vertical_space {}
 Space betwwen columns. More...
 
- Protected Attributes inherited from Widget
Rect m_box
 Bounding box. More...
 
detail::Range< SubordinatesArraym_children
 Array of child widgets in the order they were added. More...
 
SubordinatesArray::iterator m_components_begin
 Iterator for the beginning of components which are positionned after children in the subordinates array. More...
 
Screen::DamageArray m_damage
 The damage array for this widget. More...
 
bool m_in_draw {false}
 Status for whether this widget is currently drawing. More...
 
bool m_in_layout {false}
 Status for whether this widget is currently performing layout. More...
 
Size m_min_size
 Minimum size of the widget when not an empty value. More...
 
Widgetm_parent {nullptr}
 Pointer to this widget's parent. More...
 
ChildDrawCallback m_special_child_draw_callback
 Used internally for calling the special child draw function. More...
 
SubordinatesArray m_subordinates
 Array of subordinates widgets split in child widgets and component widgets. More...
 
Rect m_user_requested_box
 Keep track of the box requested by the user. More...
 
WidgetId m_widgetid {0}
 Unique ID of this widget. More...
 
- Protected Attributes inherited from Object
detail::CopyOnWriteAllocate< CallbackArraym_callbacks
 Array of callbacks. More...
 
RegisterHandle m_handle_counter {0}
 Counter used to generate unique handles for each callback registration. More...
 
std::string m_name
 A user defined name for the Object. More...
 

Additional Inherited Members

- Public Attributes inherited from Widget
Signal on_checked_changed
 Event signal. More...
 
Signal on_gain_focus
 Invoked when the widget gains focus. More...
 
Signal on_lost_focus
 Invoked when the widget loses focus. More...
 
Signal on_show
 Invoked when a widget is shown. More...
 
Signal on_hide
 Invoked when a widget is hidden. More...
 

Detailed Description

Static grid organization for widgets.

A static grid provides cells of the same size. Cells of the last column or row may have a different size to counterbalance rounding errors.

Widgets added to the grid will be positionned within the cell according to their alignment.

If extra horizontal or vertical space is needed, the margin, border and padding properties of the widget within the cell can still be used.

Member Typedef Documentation

◆ CellArray

using CellArray = std::vector<std::vector<std::weak_ptr<Widget> >>
protected

Type for cell array.

◆ GridFlags

Grid flags.

◆ GridPoint

Rows and column of the grid.

◆ GridSize

Rows and columns size of the grid.

Member Enumeration Documentation

◆ GridFlag

enum GridFlag
strong

Grid flags.

Enumerator
show_border 

When set, draw a border using Palette::ColorId::border.

Constructor & Destructor Documentation

◆ StaticGrid() [1/6]

StaticGrid ( const GridSize size = GridSize(1, 1))
explicit
Parameters
[in]sizeRows and columns.

◆ StaticGrid() [2/6]

StaticGrid ( const Rect rect,
const GridSize size = GridSize(1, 1) 
)
explicit
Parameters
[in]rectInitial rectangle of the widget.
[in]sizeRows and columns.

◆ StaticGrid() [3/6]

StaticGrid ( Frame parent,
const Rect rect,
const GridSize size = GridSize(1, 1) 
)
Parameters
[in]parentThe parent Frame.
[in]rectInitial rectangle of the widget.
[in]sizeRows and columns.

◆ StaticGrid() [4/6]

StaticGrid ( Frame parent,
const GridSize size = GridSize(1, 1) 
)
explicit
Parameters
[in]parentThe parent Frame.
[in]sizeRows and columns.

◆ StaticGrid() [5/6]

StaticGrid ( Serializer::Properties props)
inlineexplicit
Parameters
[in]propslist of widget argument and its properties.

◆ StaticGrid() [6/6]

StaticGrid ( Serializer::Properties props,
bool  is_derived 
)
explicitprotected

Member Function Documentation

◆ add() [1/8]

void add ( class T  )
inline

Utility wrapper around add()

Parameters
widgetThe widget.

◆ add() [2/8]

virtual void add

Add a child widget.

This will take a reference to the shared_ptr and manage the lifetime of the widget.

The inverse of this call is Frame::remove().

The z-order of a widget is based on the order it is added. First in is bottom, or zorder 0.

Parameters
widgetThe widget.
Todo:
Create the idea of layers by moving m_children to a 2d array. Then add a layer index (x-order) here to add widgets to different layers for drawing.

◆ add() [3/8]

void add ( const std::shared_ptr< Widget > &  widget)
overridevirtual

Add a widget to the next empty cell.

This will not automatically extend the grid to fit the widget as necessary.

Parameters
widgetThe widget to add, or nullptr.

Reimplemented from Frame.

◆ add() [4/8]

virtual void add ( const std::shared_ptr< Widget > &  widget,
const GridPoint point 
)
inlinevirtual

Add a widget to the grid into a specific cell.

This will automatically extend the grid to fit the widget as necessary.

Parameters
widgetThe widget to add, or nullptr.
pointThe row and column to add the widget.

◆ add() [5/8]

virtual void add ( const std::shared_ptr< Widget > &  widget,
size_t  column,
size_t  row 
)
virtual

Add a widget to the grid into a specific cell.

This will automatically extend the grid to fit the widget as necessary.

Parameters
widgetThe widget to add, or nullptr.
columnThe column index.
rowThe row index.

◆ add() [6/8]

void add
inline

Add a child widget.

Adds a reference to a widget instance that the caller will manage.

The inverse of this call is Frame::remove().

Parameters
widgetThe widget.
Warning
This does not manage the lifetime of Widget. It is up to the caller to make sure this Widget is available for as long as the instance of this class is around.

◆ add() [7/8]

virtual void add ( Widget widget,
const GridPoint point 
)
inlinevirtual

Add a widget to the grid into a specific cell.

Parameters
widgetThe widget to add, or nullptr.
pointThe row and column to add the widget.

◆ add() [8/8]

virtual void add ( Widget widget,
size_t  column,
size_t  row 
)
inlinevirtual

Add a widget to the grid into a specific cell.

Parameters
widgetThe widget to add, or nullptr.
columnThe column index.
rowThe row index.

◆ column_priority() [1/2]

EGT_NODISCARD bool column_priority ( ) const
inline

Get the column priority status.

◆ column_priority() [2/2]

void column_priority ( bool  value)
inline

Set the column priority status.

Note
Set column priority when expanding the grid automatically. By default, value is false.

◆ deserialize_children()

void deserialize_children ( const Deserializer deserializer)
overridevirtual

Deserialize the children of this widget.

Reimplemented from Frame.

◆ get()

Widget* get ( const GridPoint point)

Get a widget at the specified row and column.

Note
Point here is used as a column and row.
Parameters
pointThe row and column to get.

◆ grid_size() [1/2]

EGT_NODISCARD GridSize grid_size ( ) const
inline

Get the GridSize.

◆ grid_size() [2/2]

void grid_size ( const GridSize  size)
inline

Set the GridSize.

◆ horizontal_space() [1/2]

EGT_NODISCARD DefaultDim horizontal_space ( ) const
inline

Get the horizontal space.

◆ horizontal_space() [2/2]

void horizontal_space ( DefaultDim  space)
inline

Set the horizontal space i.e.

the space between rows.

◆ last_add_column()

EGT_NODISCARD int last_add_column ( ) const
inline

Returns the last column used for an add() call.

Note
This will return -1 if nothing has been added.

◆ last_add_row()

EGT_NODISCARD int last_add_row ( ) const
inline

Returns the last row used for an add() call.

Note
This will return -1 if nothing has been added.

◆ layout()

void layout ( )
overridevirtual

Perform layout of the Widget.

This will cause the widget to layout itself and any of its children. This can mean, for example, the widget will resize() itself to respect its min_size_hint().

Note
Remember that when overriding this function as a Frame, you must call layout on each child Frame to propagate the layout.

Reimplemented from Widget.

◆ n_col()

EGT_NODISCARD size_t n_col ( ) const
inline

Get the number of columns.

◆ n_row()

EGT_NODISCARD size_t n_row ( ) const
inline

Get the number of rows.

◆ reallocate()

void reallocate ( const GridSize size)
protected

Reallocate the size of the grid keeping any existing cells intact.

◆ remove()

void remove ( Widget widget)
overridevirtual

Remove a child widget.

The inverse of this call is Frame::add().

Parameters
widgetThe widget.

Reimplemented from Frame.

◆ reposition()

void reposition ( )
protected

Re-position all child widgets.

Note
You should not have to manually call this under normal circumstances.

◆ serialize()

void serialize ( Serializer serializer) const
overridevirtual

Serialize the widget to the specified serializer.

Reimplemented from Frame.

Reimplemented in SelectableGrid.

◆ serialize_children()

void serialize_children ( Serializer serializer) const
overridevirtual

Serialize the widget's children to the specified serializer.

Reimplemented from Frame.

◆ vertical_space() [1/2]

EGT_NODISCARD DefaultDim vertical_space ( ) const
inline

Get the vertical space.

◆ vertical_space() [2/2]

void vertical_space ( DefaultDim  space)
inline

Set the vertical space i.e.

the space between columns.

Member Data Documentation

◆ m_cells

CellArray m_cells
protected

Cell array of the grid.

◆ m_column_priority

bool m_column_priority {false}
protected

Column priority when expanding the grid automatically.

◆ m_grid_size

GridSize m_grid_size {}
protected

Grid size.

◆ m_horizontal_space

DefaultDim m_horizontal_space {}
protected

Space between rows.

◆ m_last_add_column

int m_last_add_column {-1}
protected

Last added column.

◆ m_last_add_row

int m_last_add_row {-1}
protected

Last added row.

◆ m_vertical_space

DefaultDim m_vertical_space {}
protected

Space betwwen columns.