karm
taskviewwhatsthis.h
00001 // 00002 // C++ Interface: taskviewwhatsthis 00003 // 00004 // 00005 // Author: Thorsten Staerk <thorsten@staerk.de>, (C) 2005 00006 // 00007 // Copyright: See COPYING file that comes with this distribution 00008 // 00009 // 00010 #ifndef TASKVIEWWHATSTHIS_H 00011 #define TASKVIEWWHATSTHIS_H 00012 00013 #include <qwhatsthis.h> 00014 #include <klistview.h> 00015 00021 class TaskViewWhatsThis : public QWhatsThis 00022 { 00023 public: 00024 TaskViewWhatsThis( QWidget* ); 00025 ~TaskViewWhatsThis(); 00026 00027 QString text ( const QPoint & ); 00028 00029 private: 00030 KListView* _listView; // stores the associated listview for column widths 00031 }; 00032 #endif