diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-01-06 22:24:46 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-06 19:38:40 -0800 |
commit | 1ba08e2fec619b105cb0d3d0718758bdcc9c7d87 (patch) | |
tree | d86f87d7b585de39b76101c2fbce6ecc064ddaac /qt-ui/divelogimportdialog.h | |
parent | 59fc5cecb71ebf2edcca2cc7818b92bc621c2620 (diff) | |
download | subsurface-1ba08e2fec619b105cb0d3d0718758bdcc9c7d87.tar.gz |
Make it possible to move from top to bottom
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogimportdialog.h')
-rw-r--r-- | qt-ui/divelogimportdialog.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-ui/divelogimportdialog.h b/qt-ui/divelogimportdialog.h index 29ceedf7d..7e43434cd 100644 --- a/qt-ui/divelogimportdialog.h +++ b/qt-ui/divelogimportdialog.h @@ -50,6 +50,10 @@ public: ColumnNameView(QWidget *parent); protected: void mousePressEvent(QMouseEvent *press); + void dragLeaveEvent(QDragLeaveEvent *leave); + void dragEnterEvent(QDragEnterEvent *event); + void dragMoveEvent(QDragMoveEvent *event); + void dropEvent(QDropEvent *event); private: int currentDraggedIndex; }; |