Struct ShortcutsSectionBuilder

Source
pub struct ShortcutsSectionBuilder { /* private fields */ }
πŸ‘ŽDeprecated: Since 4.18
Expand description

A builder-pattern type to construct ShortcutsSection objects.

ImplementationsΒ§

SourceΒ§

impl ShortcutsSectionBuilder

Source

pub fn max_height(self, max_height: u32) -> Self

πŸ‘ŽDeprecated: Since 4.18

The maximum number of lines to allow per column.

This property can be used to influence how the groups in this section are distributed across pages and columns. The default value of 15 should work in most cases. This widget will be removed in GTK 5

Source

pub fn section_name(self, section_name: impl Into<GString>) -> Self

πŸ‘ŽDeprecated: Since 4.18

A unique name to identify this section among the sections added to the ShortcutsWindow.

Setting the section-name property to this string will make this section shown in the ShortcutsWindow. This widget will be removed in GTK 5

Source

pub fn title(self, title: impl Into<GString>) -> Self

πŸ‘ŽDeprecated: Since 4.18

The string to show in the section selector of the ShortcutsWindow for this section.

If there is only one section, you don’t need to set a title, since the section selector will not be shown in this case. This widget will be removed in GTK 5

Source

pub fn view_name(self, view_name: impl Into<GString>) -> Self

πŸ‘ŽDeprecated: Since 4.18

A view name to filter the groups in this section by.

See view.

Applications are expected to use the view-name property for this purpose. This widget will be removed in GTK 5

Source

pub fn baseline_child(self, baseline_child: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18
Available on crate feature v4_12 only.

The position of the child that determines the baseline.

This is only relevant if the box is in vertical orientation.

Source

pub fn baseline_position(self, baseline_position: BaselinePosition) -> Self

πŸ‘ŽDeprecated: Since 4.18

How to position baseline-aligned widgets if extra space is available.

Source

pub fn homogeneous(self, homogeneous: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether the children should all be the same size.

Source

pub fn spacing(self, spacing: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18

The amount of space between children.

Source

pub fn can_focus(self, can_focus: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether the widget or any of its descendents can accept the input focus.

This property is meant to be set by widget implementations, typically in their instance init function.

Source

pub fn can_target(self, can_target: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether the widget can receive pointer events.

Source

pub fn css_classes(self, css_classes: impl Into<StrV>) -> Self

πŸ‘ŽDeprecated: Since 4.18

A list of css classes applied to this widget.

Source

pub fn css_name(self, css_name: impl Into<GString>) -> Self

πŸ‘ŽDeprecated: Since 4.18

The name of this widget in the CSS tree.

This property is meant to be set by widget implementations, typically in their instance init function.

Source

pub fn cursor(self, cursor: &Cursor) -> Self

πŸ‘ŽDeprecated: Since 4.18

The cursor used by @widget.

Source

pub fn focus_on_click(self, focus_on_click: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether the widget should grab focus when it is clicked with the mouse.

This property is only relevant for widgets that can take focus.

Source

pub fn focusable(self, focusable: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether this widget itself will accept the input focus.

Source

pub fn halign(self, halign: Align) -> Self

πŸ‘ŽDeprecated: Since 4.18

How to distribute horizontal space if widget gets extra space.

Source

pub fn has_tooltip(self, has_tooltip: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Enables or disables the emission of the query-tooltip signal on @widget.

A true value indicates that @widget can have a tooltip, in this case the widget will be queried using query-tooltip to determine whether it will provide a tooltip or not.

Source

pub fn height_request(self, height_request: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18

Overrides for height request of the widget.

If this is -1, the natural request will be used.

Source

pub fn hexpand(self, hexpand: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether to expand horizontally.

Source

pub fn hexpand_set(self, hexpand_set: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether to use the hexpand property.

Source

pub fn layout_manager(self, layout_manager: &impl IsA<LayoutManager>) -> Self

πŸ‘ŽDeprecated: Since 4.18

The LayoutManager instance to use to compute the preferred size of the widget, and allocate its children.

This property is meant to be set by widget implementations, typically in their instance init function.

Source

pub fn limit_events(self, limit_events: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18
Available on crate feature v4_18 only.

Makes this widget act like a modal dialog, with respect to event delivery.

Global event controllers will not handle events with targets inside the widget, unless they are set up to ignore propagation limits. See EventControllerExt::set_propagation_limit().

Source

pub fn margin_bottom(self, margin_bottom: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18

Margin on bottom side of widget.

This property adds margin outside of the widget’s normal size request, the margin will be added in addition to the size from WidgetExt::set_size_request() for example.

Source

pub fn margin_end(self, margin_end: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18

Margin on end of widget, horizontally.

This property supports left-to-right and right-to-left text directions.

This property adds margin outside of the widget’s normal size request, the margin will be added in addition to the size from WidgetExt::set_size_request() for example.

Source

pub fn margin_start(self, margin_start: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18

Margin on start of widget, horizontally.

This property supports left-to-right and right-to-left text directions.

This property adds margin outside of the widget’s normal size request, the margin will be added in addition to the size from WidgetExt::set_size_request() for example.

Source

pub fn margin_top(self, margin_top: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18

Margin on top side of widget.

This property adds margin outside of the widget’s normal size request, the margin will be added in addition to the size from WidgetExt::set_size_request() for example.

Source

pub fn name(self, name: impl Into<GString>) -> Self

πŸ‘ŽDeprecated: Since 4.18

The name of the widget.

Source

pub fn opacity(self, opacity: f64) -> Self

πŸ‘ŽDeprecated: Since 4.18

The requested opacity of the widget.

Source

pub fn overflow(self, overflow: Overflow) -> Self

πŸ‘ŽDeprecated: Since 4.18

How content outside the widget’s content area is treated.

This property is meant to be set by widget implementations, typically in their instance init function.

Source

pub fn receives_default(self, receives_default: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether the widget will receive the default action when it is focused.

Source

pub fn sensitive(self, sensitive: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether the widget responds to input.

Source

pub fn tooltip_markup(self, tooltip_markup: impl Into<GString>) -> Self

πŸ‘ŽDeprecated: Since 4.18

Sets the text of tooltip to be the given string, which is marked up with Pango markup.

Also see Tooltip::set_markup().

This is a convenience property which will take care of getting the tooltip shown if the given string is not NULL: has-tooltip will automatically be set to true and there will be taken care of query-tooltip in the default signal handler.

Note that if both tooltip-text and tooltip-markup are set, the last one wins.

Source

pub fn tooltip_text(self, tooltip_text: impl Into<GString>) -> Self

πŸ‘ŽDeprecated: Since 4.18

Sets the text of tooltip to be the given string.

Also see Tooltip::set_text().

This is a convenience property which will take care of getting the tooltip shown if the given string is not NULL: has-tooltip will automatically be set to true and there will be taken care of query-tooltip in the default signal handler.

Note that if both tooltip-text and tooltip-markup are set, the last one wins.

Source

pub fn valign(self, valign: Align) -> Self

πŸ‘ŽDeprecated: Since 4.18

How to distribute vertical space if widget gets extra space.

Source

pub fn vexpand(self, vexpand: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether to expand vertically.

Source

pub fn vexpand_set(self, vexpand_set: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether to use the vexpand property.

Source

pub fn visible(self, visible: bool) -> Self

πŸ‘ŽDeprecated: Since 4.18

Whether the widget is visible.

Source

pub fn width_request(self, width_request: i32) -> Self

πŸ‘ŽDeprecated: Since 4.18

Overrides for width request of the widget.

If this is -1, the natural request will be used.

Source

pub fn accessible_role(self, accessible_role: AccessibleRole) -> Self

πŸ‘ŽDeprecated: Since 4.18

The accessible role of the given Accessible implementation.

The accessible role cannot be changed once set.

Source

pub fn orientation(self, orientation: Orientation) -> Self

πŸ‘ŽDeprecated: Since 4.18

The orientation of the orientable.

Source

pub fn build(self) -> ShortcutsSection

πŸ‘ŽDeprecated: Since 4.18

Build the ShortcutsSection.

Auto Trait ImplementationsΒ§

Blanket ImplementationsΒ§

SourceΒ§

impl<T> Any for T
where T: 'static + ?Sized,

SourceΒ§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
SourceΒ§

impl<T> Borrow<T> for T
where T: ?Sized,

SourceΒ§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
SourceΒ§

impl<T> BorrowMut<T> for T
where T: ?Sized,

SourceΒ§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
SourceΒ§

impl<T> From<T> for T

SourceΒ§

fn from(t: T) -> T

Returns the argument unchanged.

SourceΒ§

impl<T, U> Into<U> for T
where U: From<T>,

SourceΒ§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

SourceΒ§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

SourceΒ§

type Error = Infallible

The type returned in the event of a conversion error.
SourceΒ§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
SourceΒ§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

SourceΒ§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
SourceΒ§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.