| Top |
| CtkWidget * | ctk_action_bar_new () |
| void | ctk_action_bar_pack_start () |
| void | ctk_action_bar_pack_end () |
| CtkWidget * | ctk_action_bar_get_center_widget () |
| void | ctk_action_bar_set_center_widget () |
GObject
╰── GInitiallyUnowned
╰── CtkWidget
╰── CtkContainer
╰── CtkBin
╰── CtkActionBar
CtkActionBar is designed to present contextual actions. It is expected to be displayed below the content and expand horizontally to fill the area.
It allows placing children at the start or the end. In addition, it contains an internal centered box which is centered with respect to the full width of the box, even if the children at either side take up different amounts of space.
CtkWidget *
ctk_action_bar_new (void);
Creates a new CtkActionBar widget.
Since: 3.12
void ctk_action_bar_pack_start (CtkActionBar *action_bar,CtkWidget *child);
Adds child
to action_bar
, packed with reference to the
start of the action_bar
.
Since: 3.12
void ctk_action_bar_pack_end (CtkActionBar *action_bar,CtkWidget *child);
Adds child
to action_bar
, packed with reference to the
end of the action_bar
.
Since: 3.12
CtkWidget *
ctk_action_bar_get_center_widget (CtkActionBar *action_bar);
Retrieves the center bar widget of the bar.
Since: 3.12
void ctk_action_bar_set_center_widget (CtkActionBar *action_bar,CtkWidget *center_widget);
Sets the center widget for the CtkActionBar.
Since: 3.12