You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// C++ Interface: taskviewwhatsthis
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Author: Thorsten Staerk <thorsten@staerk.de>, (C) 2005
|
|
|
|
//
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
//
|
|
|
|
//
|
|
|
|
#ifndef TASKVIEWWHATSTHIS_H
|
|
|
|
#define TASKVIEWWHATSTHIS_H
|
|
|
|
|
|
|
|
#include <tqwhatsthis.h>
|
|
|
|
#include <tdelistview.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
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
|