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.
33 lines
630 B
33 lines
630 B
15 years ago
|
//
|
||
|
// 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 <qwhatsthis.h>
|
||
|
#include <klistview.h>
|
||
|
|
||
|
/**
|
||
|
this is the karm-taskview-specific implementation of qwhatsthis
|
||
|
|
||
|
@author Thorsten Staerk
|
||
|
*/
|
||
|
class TaskViewWhatsThis : public QWhatsThis
|
||
|
{
|
||
|
public:
|
||
|
TaskViewWhatsThis( QWidget* );
|
||
|
~TaskViewWhatsThis();
|
||
|
|
||
|
QString text ( const QPoint & );
|
||
|
|
||
|
private:
|
||
|
KListView* _listView; // stores the associated listview for column widths
|
||
|
};
|
||
|
#endif
|