8f9c48ce04
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=718817
19 lines
353 B
C++
19 lines
353 B
C++
#include <QTreeView>
|
|
#include "kcategorizeditemsviewmodels_p.h"
|
|
|
|
class KCategorizedItemsView;
|
|
|
|
class CustomDragTreeView: public QTreeView
|
|
{
|
|
public:
|
|
CustomDragTreeView(QWidget * parent = 0);
|
|
|
|
protected:
|
|
void startDrag ( Qt::DropActions supportedActions );
|
|
|
|
private:
|
|
KCategorizedItemsView * m_view;
|
|
|
|
friend class KCategorizedItemsView;
|
|
};
|