Bar¶
geometry¶
Wrapper around get_geometry
get_child_by_id¶
Gets the first item in the widget tree that has the identifier.
When recursive
is set to true
the search is performed breadth-first,
then in order of components on the tree.
@param id
— The identifier
@param recursive
— Defaults to false
get_children¶
Get the children on the box.
get_class¶
Get the css classes as an array of strings.
get_geometry¶
Get the geometry of the bar
get_halign¶
Gets the horizontal alignment of widget
.
-- Links to Align in 'hitokage-core\src\common.rs'
return #1:
| 'Fill'
| 'Start'
| 'End'
| 'Center'
| 'Baseline'
get_height¶
Returns the content height of the widget.
To learn more about widget sizes, see the coordinate system overview.
get_height_request¶
Gets the height request that was explicitly set for the widget using set_height_request
or set_size_request
.
A value of -1
stored in height indicates that it has not been set explicitly and the natural requisition of the widget will be used instead.
To get the height a widget will actually request, call measure_height
instead of this function.
See also: get_width_request
, get_size_request
.
get_hexpand¶
Gets whether the widget would like any available extra horizontal space.
get_homogeneous¶
Returns whether the box is homogeneous (all children are the same size).
get_size_request¶
Gets the size request that was explicitly set for the widget using set_size_request
.
A value of -1
stored in width or height indicates that that dimension has not been set explicitly and the natural requisition of the widget will be used instead.
To get the size a widget will actually request, call measure
instead of this function.
See also: get_width_request
, get_height_request
.
get_type¶
Get the type of widget
get_valign¶
Gets the vertical alignment of widget
.
-- Links to Align in 'hitokage-core\src\common.rs'
return #1:
| 'Fill'
| 'Start'
| 'End'
| 'Center'
| 'Baseline'
get_vexpand¶
Gets whether the widget would like any available extra vertical space.
get_widget_by_id¶
Deprecated
Use get_child_by_id
instead.
Gets the first item in the widget tree that has the identifier.
When recursive
is set to true
the search is performed breadth-first,
then in order of components on the tree.
@param id
— The identifier
@param recursive
— Defaults to false
get_widgets¶
Deprecated
Use get_children
instead.
Get the components on the box.
get_width¶
Returns the content width of the widget.
To learn more about widget sizes, see the coordinate system overview.
get_width_request¶
Gets the width request that was explicitly set for the widget using set_width_request
or set_size_request
.
A value of -1
stored in width indicates that it has not been set explicitly and the natural requisition of the widget will be used instead.
To get the width a widget will actually request, call measure_width
instead of this function.
See also: get_height_request
, get_size_request
.
is_ready¶
Checks if the bar has been instantiated in gtk4
ready¶
Wrapper around is_ready
set_class¶
Set the css classes either as a space delimited string or array of strings.
set_halign¶
Sets the horizontal alignment of widget
.
-- Links to Align in 'hitokage-core\src\common.rs'
halign:
| 'Fill'
| 'Start'
| 'End'
| 'Center'
| 'Baseline'
set_height_request¶
Sets the minimum height of a widget.
That is, the widget’s size request will be at least height
. You can use this function to force a widget to be taller than it normally would be.
If the height request in a given direction is -1
(unset), then the “natural” height request of the widget will be used instead.
See also: set_width_request
, set_size_request
.
set_hexpand¶
Sets whether the widget would like any available extra horizontal space.
set_homogeneous¶
Sets whether or not all children of box
are given equal space in the box.
set_size_request¶
Sets the minimum size of a widget.
That is, the widget’s size request will be at least width
by height
. You can use this function to force a widget to be larger than it normally would be.
If the size request in a given direction is -1
(unset), then the “natural” size request of the widget will be used instead.
See also: set_width_request
, set_height_request
.
set_valign¶
Sets the vertical alignment of widget
.
-- Links to Align in 'hitokage-core\src\common.rs'
valign:
| 'Fill'
| 'Start'
| 'End'
| 'Center'
| 'Baseline'
set_vexpand¶
Sets whether the widget would like any available extra vertical space.
set_width_request¶
Sets the minimum width of a widget.
That is, the widget’s size request will be at least width
. You can use this function to force a widget to be wider than it normally would be.
If the width request in a given direction is -1
(unset), then the “natural” width request of the widget will be used instead.
See also: set_height_request
, set_size_request
.