|
|
#ifndef KLISTVIEW_H #define KLISTVIEW_H #include <qcursor.h> #include <qlistview.h> class KListView : public QListView { Q_OBJECT public: KListView( QWidget *parent = 0, const char *name = 0 ); protected slots: void slotOnItem( QListViewItem *item ); void slotOnViewport(); private: void checkClickMode(); QCursor oldCursor; bool useDouble; }; #endif
Generated by: root@tantive.terraplex.com on Sun Feb 27 17:39:25 2000, using kdoc 2.0a33. |