blob: 65f40f9f5fefb78682da0d1a44f4ca3d5279c495 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//
// 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 <klistview.h>
/**
this is the karm-taskview-specific implementation of qwhatsthis
@author Thorsten Staerk
*/
class TaskViewWhatsThis : public QWhatsThis
{
public:
TaskViewWhatsThis( TQWidget* );
~TaskViewWhatsThis();
TQString text ( const TQPoint & );
private:
KListView* _listView; // stores the associated listview for column widths
};
#endif
|