pub struct TabsContainer {
    pub handle: ControlHandle,
    /* private fields */
}
Expand description

A tabs container is a frame-like control that can contain Tab control. Tabs are added by specifying the TabsContainer as parent in the Tab builder.

Do not add other control type as children to the TabsContainer

Requires the tabs feature

Builder parameters:

  • parent: Required. The button parent container.
  • position: The tab container position.
  • font: The font used for the tabs title
  • flags: A combination of the TabsContainerFlags values.
  • ex_flags: A combination of win32 window extended flags. Unlike flags, ex_flags must be used straight from winapi
  • image_list: The image list specifying the tabs icons

Control events:

  • TabsContainerChanged: The select tab of a TabsContainer changed
  • TabsContainerChanging: The selected tab of a TabsContainer is about to be changed
  • MousePress(_): Generic mouse press events on the button
  • OnMouseMove: Generic mouse mouse event
  • OnMouseWheel: Generic mouse wheel event

Fields

handle: ControlHandle

Implementations

Return the index of the currently selected tab May return usize::max_value() if no tab is selected

Set the currently selected tab by index

Return the number of tabs in the view

Sets the image list of the tab container. Pass None to remove the image list.

This is only available is the feature “image-list” is enabled.

Returns a reference to the current image list in the tab container. The image list is not owned and dropping it won’t free the resources.

This is only available is the feature “image-list” is enabled.

Return true if the control currently has the keyboard focus

Set the keyboard focus on the button.

Return true if the control user can interact with the control, return false otherwise

Enable or disable the control

Return true if the control is visible to the user. Will return true even if the control is outside of the parent client view (ex: at the position (10000, 10000))

Show or hide the control to the user

Return the size of the tabs container in the parent window

Set the size of the tabs container in the parent window

Return the position of the tabs container in the parent window

Set the position of the tabs container in the parent window

Return the font of the control

Set the font of the control

Winapi class name used during control creation

Winapi base flags used during window creation

Winapi flags required by the control

Trait Implementations

Returns the “default value” for a type. Read more

Executes the destructor for this type. Read more

Converts to this type from the input type.

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.