// // C++ Interface: taskviewwhatsthis // // // Author: Thorsten Staerk , (C) 2005 // // Copyright: See COPYING file that comes with this distribution // // #ifndef TASKVIEWWHATSTHIS_H #define TASKVIEWWHATSTHIS_H #include #include /** this is the karm-taskview-specific implementation of qwhatsthis @author Thorsten Staerk */ class TaskViewWhatsThis : public TQWhatsThis { public: TaskViewWhatsThis( TQWidget* ); ~TaskViewWhatsThis(); TQString text ( const TQPoint & ); private: TDEListView* _listView; // stores the associated listview for column widths }; #endif