GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
QGo4BrowserTreeWidget.h
Go to the documentation of this file.
1 // $Id: QGo4BrowserTreeWidget.h 1134 2014-01-22 14:53:40Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #ifndef QGOBROWSERLISTVIEW_H
15 #define QGOBROWSERLISTVIEW_H
16 
17 #include <QTreeWidget>
18 
19 #ifdef WIN32
20 class QGo4BrowserTreeWidget : public QTreeWidget {
21 
22 #else
23 #include <QtDesigner/QDesignerExportWidget>
24 class QDESIGNER_WIDGET_EXPORT QGo4BrowserTreeWidget : public QTreeWidget {
25 #endif
26  Q_OBJECT
27 
28  public:
29  QGo4BrowserTreeWidget(QWidget* parent = 0);
30  virtual ~QGo4BrowserTreeWidget();
31 
32  virtual bool dropMimeData(QTreeWidgetItem *parent, int index, const QMimeData *data, Qt::DropAction action);
33  virtual QStringList mimeTypes() const;
34  virtual Qt::DropActions supportedDropActions () const;
35 
36  virtual void mouseMoveEvent(QMouseEvent *event);
37 
38  signals:
39 
40  void RequestDragObject(QDrag**);
41  void ItemDropProcess(void*, void*);
42 
43 };
44 
45 #endif
46 
void ItemDropProcess(void *, void *)
virtual QStringList mimeTypes() const
virtual bool dropMimeData(QTreeWidgetItem *parent, int index, const QMimeData *data, Qt::DropAction action)
virtual void mouseMoveEvent(QMouseEvent *event)
virtual Qt::DropActions supportedDropActions() const
void RequestDragObject(QDrag **)
QGo4BrowserTreeWidget(QWidget *parent=0)