summaryrefslogtreecommitdiffstats
path: root/qt-ui/divelogimportdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-ui/divelogimportdialog.cpp')
-rw-r--r--qt-ui/divelogimportdialog.cpp27
1 files changed, 25 insertions, 2 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp
index dbb3f60dd..9db910661 100644
--- a/qt-ui/divelogimportdialog.cpp
+++ b/qt-ui/divelogimportdialog.cpp
@@ -34,7 +34,7 @@ bool ColumnNameProvider::insertRows(int row, int count, const QModelIndex &paren
bool ColumnNameProvider::removeRows(int row, int count, const QModelIndex &parent)
{
-
+ qDebug() << "Calling";
}
bool ColumnNameProvider::setData(const QModelIndex &index, const QVariant &value, int role)
@@ -61,7 +61,8 @@ int ColumnNameProvider::rowCount(const QModelIndex &parent) const
ColumnNameView::ColumnNameView(QWidget *parent)
{
-
+ setAcceptDrops(true);
+ setDragEnabled(true);
}
void ColumnNameView::mousePressEvent(QMouseEvent *press)
@@ -76,8 +77,30 @@ void ColumnNameView::mousePressEvent(QMouseEvent *press)
mimeData->setText(atClick.data().toString());
drag->setMimeData(mimeData);
drag->exec();
+ currentDraggedIndex = atClick.row();
+}
+
+void ColumnNameView::dragLeaveEvent(QDragLeaveEvent *leave)
+{
+ model()->removeRow(currentDraggedIndex);
+}
+
+void ColumnNameView::dragEnterEvent(QDragEnterEvent *event)
+{
+
}
+void ColumnNameView::dragMoveEvent(QDragMoveEvent *event)
+{
+
+}
+
+void ColumnNameView::dropEvent(QDropEvent *event)
+{
+
+}
+
+
DiveLogImportDialog::DiveLogImportDialog(QStringList *fn, QWidget *parent) : QDialog(parent),
selector(true),
ui(new Ui::DiveLogImportDialog)