diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-01-06 14:54:58 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-06 19:35:03 -0800 |
commit | 2034508c074c55774a489cb86076365d2acee050 (patch) | |
tree | cb3aac88e6618374ea56c600cd29f40210f0a68f /qt-ui/divelogimportdialog.cpp | |
parent | d57d86f5dc657971cb6596aec25b7692b1880bfb (diff) | |
download | subsurface-2034508c074c55774a489cb86076365d2acee050.tar.gz |
Add class skeleton that will handle the drag starts
This class will handle the drag 'n drop "drag" part.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogimportdialog.cpp')
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index 60d74a952..d3a29ba0d 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -57,6 +57,16 @@ int ColumnNameProvider::rowCount(const QModelIndex &parent) const return columnNames.count(); } +ColumnNameView::ColumnNameView(QWidget *parent) +{ + +} + +void ColumnNameView::mousePressEvent(QMouseEvent *press) +{ + +} + DiveLogImportDialog::DiveLogImportDialog(QStringList *fn, QWidget *parent) : QDialog(parent), selector(true), ui(new Ui::DiveLogImportDialog) |