Skeleton code for the model that has the columns information

Just the skeleton, then start doing stuff.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2015-01-06 14:32:03 -02:00 committed by Dirk Hohndel
parent 48775c530e
commit 3d8e2d0643
2 changed files with 46 additions and 0 deletions

View file

@ -4,6 +4,8 @@
#include "divelogimportdialog.h"
#include "mainwindow.h"
#include "ui_divelogimportdialog.h"
#include <QAbstractListModel>
#include <QAbstractTableModel>
const DiveLogImportDialog::CSVAppConfig DiveLogImportDialog::CSVApps[CSVAPPS] = {
// time, depth, temperature, po2, cns, ndl, tts, stopdepth, pressure
@ -16,6 +18,36 @@ const DiveLogImportDialog::CSVAppConfig DiveLogImportDialog::CSVApps[CSVAPPS] =
{ NULL, }
};
ColumnNameProvider::ColumnNameProvider(QObject *parent)
{
}
bool ColumnNameProvider::insertRows(int row, int count, const QModelIndex &parent)
{
}
bool ColumnNameProvider::removeRows(int row, int count, const QModelIndex &parent)
{
}
bool ColumnNameProvider::setData(const QModelIndex &index, const QVariant &value, int role)
{
}
QVariant ColumnNameProvider::data(const QModelIndex &index, int role) const
{
}
int ColumnNameProvider::rowCount(const QModelIndex &parent) const
{
}
DiveLogImportDialog::DiveLogImportDialog(QStringList *fn, QWidget *parent) : QDialog(parent),
selector(true),
ui(new Ui::DiveLogImportDialog)