00001 //LabPlot: ExplorerListView.h 00002 00003 #ifndef EXPLORERLISTVIEW_H 00004 #define EXPLORERLISTVIEW_H 00005 00006 #include <qlistview.h> 00007 00008 // needed to get mouseRelease events in listview 00009 class ExplorerListView: public QListView 00010 { 00011 Q_OBJECT 00012 public: 00013 ExplorerListView(QWidget *parent=0, const char *name=0); 00014 void contentsMouseReleaseEvent(QMouseEvent * e); 00015 signals: 00016 void mouseReleaseEvent(QMouseEvent *); 00017 }; 00018 00019 #endif // EXPLORERLISTVIEW_H