QToolBox

The QToolBox class provides a column of tabbed widget items. More

Inheritance diagram of PySide2.QtWidgets.QToolBox

Synopsis

Functions

Virtual functions

Slots

Signals

Detailed Description

A toolbox is a widget that displays a column of tabs one above the other, with the current item displayed below the current tab. Every tab has an index position within the column of tabs. A tab’s item is a QWidget .

Each item has an itemText() , an optional itemIcon() , an optional itemToolTip() , and a widget() . The item’s attributes can be changed with setItemText() , setItemIcon() , and setItemToolTip() . Each item can be enabled or disabled individually with setItemEnabled() .

Items are added using addItem() , or inserted at particular positions using insertItem() . The total number of items is given by count() . Items can be deleted with delete, or removed from the toolbox with removeItem() . Combining removeItem() and insertItem() allows you to move items to different positions.

The index of the current item widget is returned by currentIndex() , and set with setCurrentIndex() . The index of a particular item can be found using indexOf() , and the item at a given index is returned by item().

The currentChanged() signal is emitted when the current item is changed.

See also

QTabWidget

class QToolBox([parent=None[, f=Qt.WindowFlags()]])
param f

WindowFlags

param parent

QWidget

Constructs a new toolbox with the given parent and the flags, f .

PySide2.QtWidgets.QToolBox.addItem(widget, icon, text)
Parameters
  • widgetQWidget

  • iconQIcon

  • text – unicode

Return type

int

Adds the widget in a new tab at bottom of the toolbox. The new tab’s text is set to text , and the iconSet is displayed to the left of the text . Returns the new tab’s index.

PySide2.QtWidgets.QToolBox.addItem(widget, text)
Parameters
  • widgetQWidget

  • text – unicode

Return type

int

This is an overloaded function.

Adds the widget w in a new tab at bottom of the toolbox. The new tab’s text is set to text . Returns the new tab’s index.

PySide2.QtWidgets.QToolBox.count()
Return type

int

PySide2.QtWidgets.QToolBox.currentChanged(index)
Parameters

indexint

PySide2.QtWidgets.QToolBox.currentIndex()
Return type

int

PySide2.QtWidgets.QToolBox.currentWidget()
Return type

QWidget

Returns a pointer to the current widget, or 0 if there is no such item.

PySide2.QtWidgets.QToolBox.indexOf(widget)
Parameters

widgetQWidget

Return type

int

Returns the index of widget , or -1 if the item does not exist.

PySide2.QtWidgets.QToolBox.insertItem(index, widget, icon, text)
Parameters
  • indexint

  • widgetQWidget

  • iconQIcon

  • text – unicode

Return type

int

Inserts the widget at position index , or at the bottom of the toolbox if index is out of range. The new item’s text is set to text , and the icon is displayed to the left of the text . Returns the new item’s index.

PySide2.QtWidgets.QToolBox.insertItem(index, widget, text)
Parameters
  • indexint

  • widgetQWidget

  • text – unicode

Return type

int

This is an overloaded function.

Inserts the widget at position index , or at the bottom of the toolbox if index is out of range. The new item’s text is set to text . Returns the new item’s index.

PySide2.QtWidgets.QToolBox.isItemEnabled(index)
Parameters

indexint

Return type

bool

Returns true if the item at position index is enabled; otherwise returns false .

PySide2.QtWidgets.QToolBox.itemIcon(index)
Parameters

indexint

Return type

QIcon

Returns the icon of the item at position index , or a null icon if index is out of range.

See also

setItemIcon()

PySide2.QtWidgets.QToolBox.itemInserted(index)
Parameters

indexint

This virtual handler is called after a new item was added or inserted at position index .

See also

itemRemoved()

PySide2.QtWidgets.QToolBox.itemRemoved(index)
Parameters

indexint

This virtual handler is called after an item was removed from position index .

See also

itemInserted()

PySide2.QtWidgets.QToolBox.itemText(index)
Parameters

indexint

Return type

unicode

Returns the text of the item at position index , or an empty string if index is out of range.

See also

setItemText()

PySide2.QtWidgets.QToolBox.itemToolTip(index)
Parameters

indexint

Return type

unicode

Returns the tooltip of the item at position index , or an empty string if index is out of range.

See also

setItemToolTip()

PySide2.QtWidgets.QToolBox.removeItem(index)
Parameters

indexint

Removes the item at position index from the toolbox. Note that the widget is not deleted.

PySide2.QtWidgets.QToolBox.setCurrentIndex(index)
Parameters

indexint

See also

currentIndex()

PySide2.QtWidgets.QToolBox.setCurrentWidget(widget)
Parameters

widgetQWidget

Makes``widget`` the current widget. The widget must be an item in this tool box.

PySide2.QtWidgets.QToolBox.setItemEnabled(index, enabled)
Parameters
  • indexint

  • enabledbool

If enabled is true then the item at position index is enabled; otherwise the item at position index is disabled.

See also

isItemEnabled()

PySide2.QtWidgets.QToolBox.setItemIcon(index, icon)
Parameters
  • indexint

  • iconQIcon

Sets the icon of the item at position index to icon .

See also

itemIcon()

PySide2.QtWidgets.QToolBox.setItemText(index, text)
Parameters
  • indexint

  • text – unicode

Sets the text of the item at position index to text .

If the provided text contains an ampersand character (‘&’), a mnemonic is automatically created for it. The character that follows the ‘&’ will be used as the shortcut key. Any previous mnemonic will be overwritten, or cleared if no mnemonic is defined by the text. See the QShortcut documentation for details (to display an actual ampersand, use ‘&&’).

See also

itemText()

PySide2.QtWidgets.QToolBox.setItemToolTip(index, toolTip)
Parameters
  • indexint

  • toolTip – unicode

Sets the tooltip of the item at position index to toolTip .

See also

itemToolTip()

PySide2.QtWidgets.QToolBox.widget(index)
Parameters

indexint

Return type

QWidget

Returns the widget at position index , or 0 if there is no such item.