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.
34 lines
634 B
34 lines
634 B
11 years ago
|
//
|
||
|
// C++ Interface: kbtaskview
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
//
|
||
|
// Author: Magnus Kulke <mkulke@magnusmachine>, (C) 2004
|
||
|
//
|
||
|
// Copyright: See COPYING file that comes with this distribution
|
||
|
//
|
||
|
//
|
||
|
#ifndef KBTASKVIEW_H
|
||
|
#define KBTASKVIEW_H
|
||
|
|
||
|
#include <klistview.h>
|
||
|
|
||
|
/**
|
||
|
@author Magnus Kulke
|
||
|
*/
|
||
|
class KbTaskView : public KListView
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
KbTaskView(QWidget *parent = 0, const char *name = 0);
|
||
|
~KbTaskView();
|
||
|
QListViewItem* LastChild();
|
||
|
public slots:
|
||
|
void SLOT_DoubleClicked(QListViewItem* item, const QPoint& p, int c);
|
||
|
//virtual bool acceptDrag(QDropEvent* event) const;
|
||
|
//virtual QDragObject* dragObject();
|
||
|
};
|
||
|
|
||
|
#endif
|