summaryrefslogtreecommitdiffstats
path: root/src/kbtaskview.h
blob: 79d1ec90a26e09d7ea9cd713c8959c0bef6b128a (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
33
//
// 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