Inherits QFrame.
|
| SegmentControl (QWidget *parent=nullptr) |
|
| SegmentControl (SegmentControl::TabPosition position, QWidget *parent=nullptr) |
|
| SegmentControl (SegmentBar *bar, SegmentControl::TabPosition position, QWidget *parent=nullptr) |
|
int | addTab (QWidget *widget, const QString &text) |
| Appends a content widget as a new tab.
|
|
int | addTab (QWidget *widget, const QIcon &icon, const QString &text) |
| Appends a content widget as a new tab with an icon.
|
|
int | insertTab (int index, QWidget *widget, const QString &text) |
| Inserts a content widget as a new tab at the given index.
|
|
int | insertTab (int index, QWidget *widget, const QIcon &icon, const QString &text) |
| Inserts a content widget as a new tab with an icon at the given index.
|
|
void | removeTab (int index) |
| Removes the tab at the given index.
|
|
void | moveTab (int from, int to) |
|
void | setTabEnabled (int index, bool enabled) |
| Sets enabled state for the tab at the given index.
|
|
bool | isTabEnabled (int index) const |
| Returns the enabled state for the tab at the given index.
|
|
void | setTabText (int index, const QString &text) |
| Sets the text to the tab at the given index.
|
|
QString | tabText (int index) const |
| Returns the text of the tab at the given index.
|
|
void | setTabIcon (int index, const QIcon &icon) |
| Sets the icon to the tab at the given index.
|
|
QIcon | tabIcon (int index) const |
| Returns the icon of the tab at the given index.
|
|
void | setTabToolTip (int index, const QString &tip) |
| Sets the tooltip text for the tab at the given index.
|
|
QString | tabToolTip (int index) const |
| Returns the tooltip text of the tab at the given index.
|
|
void | setTabWhatsThis (int index, const QString &text) |
| Sets the "What's this?" text to the tab at the given index.
|
|
QString | tabWhatsThis (int index) const |
| Returns the "What's this?" text of the tab at the given index.
|
|
void | setTabOrientation (Qt::Orientation orientation) |
| Sets the segment bar orientation.
|
|
Qt::Orientation | tabOrientation () const |
| Returns the segment bar orientation.
|
|
void | setTabPosition (SegmentControl::TabPosition position) |
| Sets the position of the content tabs relative to the segment bar.
|
|
SegmentControl::TabPosition | tabPosition () const |
| Returns the position of the content tabs relative to the segment bar.
|
|
int | currentIndex () const |
| Returns the index of the currently selected tab.
|
|
QWidget * | currentWidget () const |
| Returns a pointer to the widget tied to the currently selected tab.
|
|
QWidget * | widget (int index) const |
| Returns a pointer to the widget at the index provided.
|
|
int | indexOf (QWidget *widget) const |
|
int | count () const |
| Returns the number of tabs.
|
|
void | setIconSize (const QSize &size) |
|
QSize | iconSize () const |
| Returns the icon size.
|
|
void | clear () |
| Removes all tabs from the container.
|
|
SegmentBar * | tabBar () const |
| Returns a pointer to the underlying segment bar.
|
|
A container that uses a SegmentBar to switch between different sections of associated information.