summaryrefslogtreecommitdiffstats
path: root/karm/taskviewwhatsthis.h
blob: af8a82969933cff34f887ab476f9eae6ac1bd394 (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 <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