blob: 36314f7f5a6f914e8d61a57f4da3d6337900ec91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#ifndef DIVELOGIMPORTDIALOG_H
#define DIVELOGIMPORTDIALOG_H
#include <QDialog>
#include "../dive.h"
#include "../divelist.h"
namespace Ui {
class DiveLogImportDialog;
}
class DiveLogImportDialog : public QDialog {
Q_OBJECT
public:
explicit DiveLogImportDialog(QStringList *fn, QWidget *parent = 0);
~DiveLogImportDialog();
private
slots:
void on_buttonBox_accepted();
void on_knownImports_currentIndexChanged(int index);
void unknownImports();
void manualDiveNumber();
void manualDate();
void manualTime();
void manualLocation();
void manualGps();
void manualMaxDepth();
void manualMeanDepth();
void manualBuddy();
void manualNotes();
void manualTags();
void manualWeight();
void manualDuration();
void manualCylinderSize();
void manualStartPressure();
void manualEndPressure();
void manualO2();
void manualHe();
void manualAirTemp();
void manualWaterTemp();
private:
bool selector;
QStringList fileNames;
Ui::DiveLogImportDialog *ui;
QList<int> specialCSV;
int column;
struct CSVAppConfig {
QString name;
int time;
int depth;
int temperature;
int po2;
int cns;
int ndl;
int tts;
int stopdepth;
int pressure;
QString separator;
};
#define CSVAPPS 7
static const CSVAppConfig CSVApps[CSVAPPS];
};
#endif // DIVELOGIMPORTDIALOG_H
|