Map Matching
loading.cpp
Go to the documentation of this file.
1 #include "loading.h"
2 
4  : QWidget()
5 {
6  country();
7  track();
8  grid();
9  nextOk = 0;
10 
11  // CrĂ©ation d'un widget qui servira de fenĂȘtre
12  setFixedSize(500, 400);
13 
14  QVBoxLayout* mainLayout = new QVBoxLayout;
15  mainLayout->addWidget(m_country);
16  mainLayout->addWidget(m_track);
17  mainLayout->addWidget(m_grid);
18  setLayout(mainLayout);
19 }
20 
22 {
23 }
24 
26 {
27  m_country = new QGroupBox("Country");
28 
29  m_fr = new QRadioButton("France");
30  m_usa = new QRadioButton("USA");
31 
32  QObject::connect(m_fr, SIGNAL(clicked()), this, SLOT(getCountry()));
33  QObject::connect(m_usa, SIGNAL(clicked()), this, SLOT(getCountry()));
34 
35  QHBoxLayout* vbox = new QHBoxLayout;
36  vbox->addWidget(m_fr);
37  vbox->addWidget(m_usa);
38  vbox->addStretch(1);
39  m_country->setLayout(vbox);
40 }
41 
43 {
44  m_grid = new QGroupBox("Grid");
45  m_fileGrid = new QLabel(this);
46 
47  m_csvGrid = new QPushButton("SHP");
48  m_csvGrid->setCheckable(true);
49 
50  QObject::connect(m_csvGrid, SIGNAL(clicked()), this, SLOT(loadFileGrid()));
51 
52  QVBoxLayout* vbox = new QVBoxLayout;
53  vbox->addWidget(m_csvGrid);
54  vbox->addWidget(m_fileGrid);
55  vbox->addStretch(1);
56  m_grid->setLayout(vbox);
57 }
58 
60 {
61  m_track = new QGroupBox("GPS Track");
62 
63  m_csvTrack = new QPushButton("CSV");
64  m_shpTrack = new QPushButton("SHP");
65  m_csvTrack->setCheckable(true);
66  m_shpTrack->setCheckable(true);
67  m_fileGPS = new QLabel(this);
68 
69  QObject::connect(m_csvTrack, SIGNAL(clicked()), this, SLOT(loadFileCSVTrack()));
70  QObject::connect(m_shpTrack, SIGNAL(clicked()), this, SLOT(loadFileSHPTrack()));
71 
72  QVBoxLayout* vbox = new QVBoxLayout;
73  vbox->addWidget(m_csvTrack);
74  vbox->addWidget(m_shpTrack);
75  vbox->addWidget(m_fileGPS);
76  vbox->addStretch(1);
77  m_track->setLayout(vbox);
78 }
79 
81 {
82  if (fileCSVTrack.selectFilesToOpen("csv") == 1) {
83  m_fileGPS->setText("1 file loaded");
84  m_csvTrack->setEnabled(false);
85  m_shpTrack->setEnabled(false);
86  nextOk += 1;
87  launchFiles();
88  }
89 }
90 
92 {
93  if (fileSHPTrack.selectFilesToOpen("shp") == 1) {
94  if (fileSHPTrack.shp2csv("Point")) {
95  m_fileGPS->setText("1 file loaded");
96  m_csvTrack->setEnabled(false);
97  m_shpTrack->setEnabled(false);
98  nextOk += 1;
99  launchFiles();
100  }
101  }
102 }
103 
105 {
106  if (fileSHPGrid.selectFilesToOpen("shp") == 1) {
107  if (fileSHPGrid.shp2csv("Polyline") == 1) {
108  m_fileGrid->setText("1 file loaded");
109  m_csvGrid->setEnabled(false);
110  nextOk += 1;
111  launchFiles();
112  }
113  }
114 }
115 
116 void Loading::getCountry() //A modifier
117 {
118  //if (m_fr->isChecked())
119  //cout << "fr";
120  //else
121  //cout << "usa";
122  launchFiles();
123 }
124 
126 {
127  if ((m_fr->isChecked() || m_usa->isChecked()) && (nextOk == 2)) {
128  if (fileSHPTrack.fileName.isEmpty()) {
130  emit readyNext(fileCSVTrack);
131  } else {
133  emit readyNext(fileSHPTrack);
134  }
135  }
136 }
QGroupBox * m_country
Definition: loading.h:72
QPushButton * m_csvTrack
Definition: loading.h:80
void loadFileGrid()
loadFileGrid Get File of grid
Definition: loading.cpp:104
QStringList fileName
Definition: file.h:54
QPushButton * m_csvGrid
Definition: loading.h:82
void loadFileCSVTrack()
loadFileCSVTrack Get File of SHP track
Definition: loading.cpp:80
QGroupBox * m_grid
Definition: loading.h:74
File fileCSVTrack
Definition: loading.h:24
int nextOk
Definition: loading.h:86
QLabel * m_fileGrid
Definition: loading.h:84
QLabel * m_fileGPS
Definition: loading.h:83
int shp2csv(QString geometryType)
The function to convert WGS84 ShapeFile(s) to Lambert 93 CSV(s)
Definition: file.cpp:59
void track()
track
Definition: loading.cpp:59
File fileSHPGrid
Definition: loading.h:22
QRadioButton * m_fr
Definition: loading.h:77
File fileSHPTrack
Definition: loading.h:23
void launchFiles()
launchFiles
Definition: loading.cpp:125
void country()
country
Definition: loading.cpp:25
void getCountry()
getCountry Choose country
Definition: loading.cpp:116
QRadioButton * m_usa
Definition: loading.h:78
void readyNext(File)
readyNext track file informations
void grid()
grid
Definition: loading.cpp:42
~Loading()
Definition: loading.cpp:21
int selectFilesToOpen(QString extensionFilter)
The UI to select the file&#39;s path to open.
Definition: file.cpp:26
void loadFileSHPTrack()
loadFileSHPTrack Get File of CSV track
Definition: loading.cpp:91
QPushButton * m_shpTrack
Definition: loading.h:81
void ready(File, File)
ready Emit files informations
Loading()
Definition: loading.cpp:3
QGroupBox * m_track
Definition: loading.h:73