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

Public Member Functions

void Pressed (QModelIndex index)
 
 
void Clicked (QModelIndex index)
 
 
void DoubleClicked (QModelIndex index)
 
 
void Activated (QModelIndex index)
 
 
void Entered (QModelIndex index)
 
 
void ViewportEntered ()
 
 

Member Function Documentation

void QtGui.IQAbstractItemViewSignals.Activated ( QModelIndex  index)

This signal is emitted when the item specified by index is activated by the user. How to activate items depends on the platform; e.g., by single- or double-clicking the item, or by pressing the Return or Enter key when the item is current.

See also clicked(), doubleClicked(), entered(), and pressed().

void QtGui.IQAbstractItemViewSignals.Clicked ( QModelIndex  index)

This signal is emitted when a mouse button is clicked. The item the mouse was clicked on is specified by index. The signal is only emitted when the index is valid.

See also activated(), doubleClicked(), entered(), and pressed().

void QtGui.IQAbstractItemViewSignals.DoubleClicked ( QModelIndex  index)

This signal is emitted when a mouse button is double-clicked. The item the mouse was double-clicked on is specified by index. The signal is only emitted when the index is valid.

See also clicked() and activated().

void QtGui.IQAbstractItemViewSignals.Entered ( QModelIndex  index)

This signal is emitted when the mouse cursor enters the item specified by index. Mouse tracking needs to be enabled for this feature to work.

See also viewportEntered(), activated(), clicked(), doubleClicked(), and pressed().

void QtGui.IQAbstractItemViewSignals.Pressed ( QModelIndex  index)

This signal is emitted when a mouse button is pressed. The item the mouse was pressed on is specified by index. The signal is only emitted when the index is valid.

Use the QApplication::mouseButtons() function to get the state of the mouse buttons.

See also activated(), clicked(), doubleClicked(), and entered().

void QtGui.IQAbstractItemViewSignals.ViewportEntered ( )

This signal is emitted when the mouse cursor enters the viewport. Mouse tracking needs to be enabled for this feature to work.

See also entered().