QlistView click event in qt[closed]
-
In qt do we have QlistView click event?
-
You find the answer in the documentation of "QAbstractItemView":http://doc.qt.nokia.com/4.7/qabstractitemview.html#signals which is the base class of QListView:
Signals:
@
void activated ( const QModelIndex & index )
void clicked ( const QModelIndex & index )
void doubleClicked ( const QModelIndex & index )
void entered ( const QModelIndex & index )
void pressed ( const QModelIndex & index )
void viewportEntered ()
@Next time, please first ask the docs...
-
-
Thanks Gerolf