Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtGui.IQTabBarSignals Interface Reference
Inheritance diagram for QtGui.IQTabBarSignals:
Collaboration diagram for QtGui.IQTabBarSignals:

Public Member Functions

void CurrentChanged (int index)
 
 
void TabCloseRequested (int index)
 
 
void TabMoved (int from, int to)
 
 
void Selected (int arg1)
 
- Public Member Functions inherited from QtGui.IQWidgetSignals
void CustomContextMenuRequested (QPoint pos)
 
 
- Public Member Functions inherited from QtCore.IQObjectSignals
void Destroyed (QObject arg1)
 
void Destroyed ()
 
 

Member Function Documentation

void QtGui.IQTabBarSignals.CurrentChanged ( int  index)

This signal is emitted when the tab bar's current tab changes. The new current has the given index, or -1 if there isn't a new one (for example, if there are no tab in the QTabBar)

void QtGui.IQTabBarSignals.Selected ( int  arg1)
void QtGui.IQTabBarSignals.TabCloseRequested ( int  index)

This signal is emitted when the close button on a tab is clicked. The index is the index that should be removed.

This function was introduced in Qt 4.5.

See also setTabsClosable().

void QtGui.IQTabBarSignals.TabMoved ( int  from,
int  to 
)

This signal is emitted when the tab has moved the tab at index position from to index position to.

note: QTabWidget will automatically move the page when this signal is emitted from its tab bar.

This function was introduced in Qt 4.5.

See also moveTab().