//
// 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