Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef QGOBROWSERLISTVIEW_H
00015 #define QGOBROWSERLISTVIEW_H
00016
00017 #include <QTreeWidget>
00018
00019 #ifdef WIN32
00020 class QGo4BrowserTreeWidget : public QTreeWidget {
00021
00022 #else
00023 #include <QtDesigner/QDesignerExportWidget>
00024 class QDESIGNER_WIDGET_EXPORT QGo4BrowserTreeWidget : public QTreeWidget {
00025 #endif
00026 Q_OBJECT
00027
00028 public:
00029 QGo4BrowserTreeWidget(QWidget* parent = 0);
00030 virtual ~QGo4BrowserTreeWidget();
00031
00032 virtual bool dropMimeData(QTreeWidgetItem *parent, int index, const QMimeData *data, Qt::DropAction action);
00033 virtual QStringList mimeTypes() const;
00034 virtual Qt::DropActions supportedDropActions () const;
00035
00036 virtual void mouseMoveEvent(QMouseEvent *event);
00037
00038 signals:
00039
00040 void RequestDragObject(QDrag**);
00041 void ItemDropProcess(void*, void*);
00042
00043 };
00044
00045 #endif
00046