mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Another skeleton: LoadFileContents
Also, do not pass QStringLists by pointer, uneeded. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
f1b90813cf
commit
ba30e938b3
3 changed files with 14 additions and 5 deletions
|
@ -9,6 +9,8 @@
|
|||
#include <QMouseEvent>
|
||||
#include <QDrag>
|
||||
#include <QMimeData>
|
||||
#include <QFile>
|
||||
|
||||
const DiveLogImportDialog::CSVAppConfig DiveLogImportDialog::CSVApps[CSVAPPS] = {
|
||||
// time, depth, temperature, po2, cns, ndl, tts, stopdepth, pressure
|
||||
{ "", },
|
||||
|
@ -172,12 +174,12 @@ void ColumnNameResult::setColumnValues(QList<QStringList> columns)
|
|||
|
||||
}
|
||||
|
||||
DiveLogImportDialog::DiveLogImportDialog(QStringList *fn, QWidget *parent) : QDialog(parent),
|
||||
DiveLogImportDialog::DiveLogImportDialog(QStringList fn, QWidget *parent) : QDialog(parent),
|
||||
selector(true),
|
||||
ui(new Ui::DiveLogImportDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
fileNames = *fn;
|
||||
fileNames = fn;
|
||||
column = 0;
|
||||
|
||||
/* Add indexes of XSLTs requiring special handling to the list */
|
||||
|
@ -196,6 +198,8 @@ DiveLogImportDialog::DiveLogImportDialog(QStringList *fn, QWidget *parent) : QDi
|
|||
ColumnNameResult *result = new ColumnNameResult(this);
|
||||
ui->tableView->setModel(result);
|
||||
|
||||
loadFileContents();
|
||||
|
||||
/* manually import CSV file */
|
||||
QShortcut *close = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this);
|
||||
connect(close, SIGNAL(activated()), this, SLOT(close()));
|
||||
|
@ -208,6 +212,11 @@ DiveLogImportDialog::~DiveLogImportDialog()
|
|||
delete ui;
|
||||
}
|
||||
|
||||
void DiveLogImportDialog::loadFileContents() {
|
||||
QFile f(fileNames.first());
|
||||
|
||||
}
|
||||
|
||||
#define VALUE_IF_CHECKED(x) (ui->x->isEnabled() ? ui->x->value() - 1 : -1)
|
||||
void DiveLogImportDialog::on_buttonBox_accepted()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue