thanks
hi
actually i want to capture the mouse press event.
i have used event filer to filter signals on listview .but the mouse events cannot be caught .is this because they are inbuilt signals(such as clicked e.t.c).
here is the code
QListView *ssl_listview
ssl_listview = new QListView();
bool ssl::eventFilter(QObject *obj, QEvent *ev)
{
if(obj == ssl_listview)
{
if(ev->type() == QEvent::MouseButtonPress)
cout<<"mouse press";
}
}
Bookmarks