diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-01-06 16:01:21 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-06 19:37:40 -0800 |
commit | 858fe5588a559cc51893ff2f72db6141d814c259 (patch) | |
tree | 072c73e10e35cd33e953fc4de02b53609b184758 /qt-ui/divelogimportdialog.cpp | |
parent | aa33ae9526a43dc90ebf06c96bcf3961abdbc6e4 (diff) | |
download | subsurface-858fe5588a559cc51893ff2f72db6141d814c259.tar.gz |
Add skeleton code for the model that will have the result of columns
This model will show some columns and the user will
need to provide the correct information for each of them
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 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index 338fb1efa..ffe91fe9d 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -142,6 +142,31 @@ void ColumnDropCSVView::dropEvent(QDropEvent *event) } +ColumnNameResult::ColumnNameResult(QObject *parent) +{ + +} + +bool ColumnNameResult::setData(const QModelIndex &index, const QVariant &value, int role) +{ + +} + +QVariant ColumnNameResult::data(const QModelIndex &index, int role) const +{ + +} + +int ColumnNameResult::rowCount(const QModelIndex &parent) const +{ + +} + +int ColumnNameResult::columnCount(const QModelIndex &parent) const +{ + +} + DiveLogImportDialog::DiveLogImportDialog(QStringList *fn, QWidget *parent) : QDialog(parent), selector(true), ui(new Ui::DiveLogImportDialog) |