Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
Public Member Functions | |
void | ItemPressed (QTableWidgetItem item) |
| |
void | ItemClicked (QTableWidgetItem item) |
| |
void | ItemDoubleClicked (QTableWidgetItem item) |
| |
void | ItemActivated (QTableWidgetItem item) |
| |
void | ItemEntered (QTableWidgetItem item) |
| |
void | ItemChanged (QTableWidgetItem item) |
| |
void | CurrentItemChanged (QTableWidgetItem current, QTableWidgetItem previous) |
| |
void | ItemSelectionChanged () |
| |
void | CellPressed (int row, int column) |
| |
void | CellClicked (int row, int column) |
| |
void | CellDoubleClicked (int row, int column) |
| |
void | CellActivated (int row, int column) |
| |
void | CellEntered (int row, int column) |
| |
void | CellChanged (int row, int column) |
| |
void | CurrentCellChanged (int currentRow, int currentColumn, int previousRow, int previousColumn) |
| |
void QtGui.IQTableWidgetSignals.CellActivated | ( | int | row, |
int | column | ||
) |
This signal is emitted when the cell specified by row and column has been activated
This function was introduced in Qt 4.1.
void QtGui.IQTableWidgetSignals.CellChanged | ( | int | row, |
int | column | ||
) |
This signal is emitted whenever the data of the item in the cell specified by row and column has changed.
This function was introduced in Qt 4.1.
void QtGui.IQTableWidgetSignals.CellClicked | ( | int | row, |
int | column | ||
) |
This signal is emitted whenever a cell in the table is clicked. The row and column specified is the cell that was clicked.
This function was introduced in Qt 4.1.
void QtGui.IQTableWidgetSignals.CellDoubleClicked | ( | int | row, |
int | column | ||
) |
This signal is emitted whenever a cell in the table is double clicked. The row and column specified is the cell that was double clicked.
This function was introduced in Qt 4.1.
void QtGui.IQTableWidgetSignals.CellEntered | ( | int | row, |
int | column | ||
) |
This signal is emitted when the mouse cursor enters a cell. The cell is specified by row and column.
This signal is only emitted when mouseTracking is turned on, or when a mouse button is pressed while moving into an item.
This function was introduced in Qt 4.1.
void QtGui.IQTableWidgetSignals.CellPressed | ( | int | row, |
int | column | ||
) |
This signal is emitted whenever a cell in the table is pressed. The row and column specified is the cell that was pressed.
This function was introduced in Qt 4.1.
void QtGui.IQTableWidgetSignals.CurrentCellChanged | ( | int | currentRow, |
int | currentColumn, | ||
int | previousRow, | ||
int | previousColumn | ||
) |
This signal is emitted whenever the current cell changes. The cell specified by previousRow and previousColumn is the cell that previously had the focus, the cell specified by currentRow and currentColumn is the new current cell.
This function was introduced in Qt 4.1.
void QtGui.IQTableWidgetSignals.CurrentItemChanged | ( | QTableWidgetItem | current, |
QTableWidgetItem | previous | ||
) |
This signal is emitted whenever the current item changes. The previous item is the item that previously had the focus, current is the new current item.
void QtGui.IQTableWidgetSignals.ItemActivated | ( | QTableWidgetItem | item | ) |
This signal is emitted when the specified item has been activated
void QtGui.IQTableWidgetSignals.ItemChanged | ( | QTableWidgetItem | item | ) |
This signal is emitted whenever the data of item has changed.
void QtGui.IQTableWidgetSignals.ItemClicked | ( | QTableWidgetItem | item | ) |
This signal is emitted whenever an item in the table is clicked. The item specified is the item that was clicked.
void QtGui.IQTableWidgetSignals.ItemDoubleClicked | ( | QTableWidgetItem | item | ) |
This signal is emitted whenever an item in the table is double clicked. The item specified is the item that was double clicked.
void QtGui.IQTableWidgetSignals.ItemEntered | ( | QTableWidgetItem | item | ) |
This signal is emitted when the mouse cursor enters an item. The item is the item entered.
This signal is only emitted when mouseTracking is turned on, or when a mouse button is pressed while moving into an item.
void QtGui.IQTableWidgetSignals.ItemPressed | ( | QTableWidgetItem | item | ) |
This signal is emitted whenever an item in the table is pressed. The item specified is the item that was pressed.
void QtGui.IQTableWidgetSignals.ItemSelectionChanged | ( | ) |
This signal is emitted whenever the selection changes.
See also selectedItems() and QTableWidgetItem::isSelected().