The PySide.QtGui.QToolBox class provides a column of tabbed widget items.
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 PySide.QtGui.QWidget .
Each item has an PySide.QtGui.QToolBox.itemText() , an optional PySide.QtGui.QToolBox.itemIcon() , an optional PySide.QtGui.QToolBox.itemToolTip() , and a PySide.QtGui.QToolBox.widget() . The item’s attributes can be changed with PySide.QtGui.QToolBox.setItemText() , PySide.QtGui.QToolBox.setItemIcon() , and PySide.QtGui.QToolBox.setItemToolTip() . Each item can be enabled or disabled individually with PySide.QtGui.QToolBox.setItemEnabled() .
Items are added using PySide.QtGui.QToolBox.addItem() , or inserted at particular positions using PySide.QtGui.QToolBox.insertItem() . The total number of items is given by PySide.QtGui.QToolBox.count() . Items can be deleted with delete, or removed from the toolbox with PySide.QtGui.QToolBox.removeItem() . Combining PySide.QtGui.QToolBox.removeItem() and PySide.QtGui.QToolBox.insertItem() allows you to move items to different positions.
The index of the current item widget is returned by PySide.QtGui.QToolBox.currentIndex() , and set with PySide.QtGui.QToolBox.setCurrentIndex() . The index of a particular item can be found using PySide.QtGui.QToolBox.indexOf() , and the item at a given index is returned by item() .
The PySide.QtGui.QToolBox.currentChanged() signal is emitted when the current item is changed.
See also
Parameters: |
|
---|
Parameters: |
|
---|---|
Return type: | PySide.QtCore.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.
Parameters: |
|
---|---|
Return type: | PySide.QtCore.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.
Return type: | PySide.QtCore.int |
---|
This property holds The number of items contained in the toolbox..
By default, this property has a value of 0.
Parameters: | index – PySide.QtCore.int |
---|
Return type: | PySide.QtCore.int |
---|
This property holds the index of the current item.
By default, for an empty toolbox, this property has a value of -1.
Return type: | PySide.QtGui.QWidget |
---|
Returns a pointer to the current widget, or 0 if there is no such item.
Parameters: | widget – PySide.QtGui.QWidget |
---|---|
Return type: | PySide.QtCore.int |
Returns the index of widget , or -1 if the item does not exist.
Parameters: |
|
---|---|
Return type: | PySide.QtCore.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.
Parameters: |
|
---|---|
Return type: | PySide.QtCore.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.
Parameters: | index – PySide.QtCore.int |
---|---|
Return type: | PySide.QtCore.bool |
Returns true if the item at position index is enabled; otherwise returns false.
Parameters: | index – PySide.QtCore.int |
---|---|
Return type: | PySide.QtGui.QIcon |
Returns the icon of the item at position index , or a null icon if index is out of range.
See also
Parameters: | index – PySide.QtCore.int |
---|
This virtual handler is called after a new item was added or inserted at position index .
See also
Parameters: | index – PySide.QtCore.int |
---|
This virtual handler is called after an item was removed from position index .
See also
Parameters: | index – PySide.QtCore.int |
---|---|
Return type: | unicode |
Returns the text of the item at position index , or an empty string if index is out of range.
See also
Parameters: | index – PySide.QtCore.int |
---|---|
Return type: | unicode |
Returns the tooltip of the item at position index , or an empty string if index is out of range.
Parameters: | index – PySide.QtCore.int |
---|
Removes the item at position index from the toolbox. Note that the widget is not deleted.
Parameters: | index – PySide.QtCore.int |
---|
This property holds the index of the current item.
By default, for an empty toolbox, this property has a value of -1.
Parameters: | widget – PySide.QtGui.QWidget |
---|
Makes``widget`` the current widget. The widget must be an item in this tool box.
Parameters: |
|
---|
If enabled is true then the item at position index is enabled; otherwise the item at position index is disabled.
Parameters: |
|
---|
Sets the icon of the item at position index to icon .
See also
Parameters: |
|
---|
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
Parameters: |
|
---|
Sets the tooltip of the item at position index to toolTip .
See also
Parameters: | index – PySide.QtCore.int |
---|---|
Return type: | PySide.QtGui.QWidget |
Returns the widget at position index , or 0 if there is no such item.