X-Git-Url: http://git.maemo.org/git/?p=speedfreak;a=blobdiff_plain;f=Client%2Froutedialog.cpp;h=598d8fbaa8bdf7df229b39ae8cd6c0d94f36225f;hp=61e443475c70e36cbe327078b661dd17068313c3;hb=aa8ec07c6df1c296a1f099c5a5283291222edf5f;hpb=e43a180992069cea1d349aeef4d04df1ac3c849d diff --git a/Client/routedialog.cpp b/Client/routedialog.cpp index 61e4434..598d8fb 100644 --- a/Client/routedialog.cpp +++ b/Client/routedialog.cpp @@ -8,6 +8,7 @@ #include "routedialog.h" #include "ui_routedialog.h" +#include "usersettings.h" #include #include #include @@ -167,7 +168,15 @@ RouteDialog::RouteDialog(QWidget *parent) : ui(new Ui::RouteDialog) { ui->setupUi(this); + this->setWindowTitle("Route"); left = 5; top = 5; right = 495; bottom = 295; // Limits in screen coordinates + + // Send rout to server button disable/enable. + ui->sendPushButton->setEnabled(false); + if (loginSaved()) + { + ui->sendPushButton->setEnabled(true); + } } RouteDialog::~RouteDialog() @@ -348,7 +357,7 @@ void RouteDialog::paintEvent(QPaintEvent *) QString jono; jono = QString("%1 m/s").arg(maxv); - ui->maxSpeedLabel->setText(jono); + ui->speedValueLabel->setText(jono); } } @@ -358,10 +367,11 @@ bool RouteDialog::readRouteFromFile( QString &routeFile) QString rivi; QFile file; - QString fileName = QFileDialog::getOpenFileName(this, - tr("Read Route"), "./", tr("Route Files (*.txt)")); + //QString fileName = QFileDialog::getOpenFileName(this, + // tr("Read Route"), "./", tr("Route Files (*.txt)")); - file.setFileName( fileName); + //file.setFileName( fileName); + file.setFileName( "routetemp.xml"); if (!file.open(QIODevice::ReadOnly)) { QMessageBox::about(0, "Error", "File not found"); @@ -369,11 +379,58 @@ bool RouteDialog::readRouteFromFile( QString &routeFile) } vertexList.clear(); + while(!file.atEnd()) { + int count; + bool allRead; + QString astr1, astr2, astr3, astr4; QString str1, str2, str3, str4; rivi = file.readLine(); + allRead = false; + count = 0; + while( !allRead) + { + astr1 = rivi.section(" ", count*4+1, count*4+1); // latitude="" + astr2 = rivi.section(" ", count*4+2, count*4+2); // longitude="" + astr3 = rivi.section(" ", count*4+3, count*4+3); // altitude="" + astr4 = rivi.section(" ", count*4+4, count*4+4); // speed="" + + { + double x, y, z, v; + str1 = astr1.section('"',1,1); + str2 = astr2.section('"',1,1); + str3 = astr3.section('"',1,1); + str4 = astr4.section('"',1,1); + //QString str = QString("%1 %2 %3 %4").arg(str1).arg(str2).arg(str3).arg(str4); + //QMessageBox::about(0, "LUKEE", str); + /* */ + + if (str1.length() > 0) + { + x = str2.toDouble();// latitude y-value + y = str1.toDouble();// longitude x-value + z = str3.toDouble();// altitude z-value + v = str4.toDouble();// speed m/s + // QString str = QString("%1 %2 %3 %4").arg(x).arg(y).arg(z).arg(v); + // QMessageBox::about(0, "LUKEE", str); + temp.setX( x); // Longitude + temp.setY( y); // Latitude + temp.setZ( z); // altitude + temp.setV( v); + + vertexList.append(temp); + count++; + } + else + { + allRead = true; + } + } + } + // Older version + /* str1 = rivi.section(" ", 0, 0); if (str1.compare("Start:") != 0 && str1.compare("Stop:") != 0) { @@ -399,6 +456,7 @@ bool RouteDialog::readRouteFromFile( QString &routeFile) vertexList.append(temp); } } + */ } file.close(); @@ -679,5 +737,10 @@ void RouteDialog::on_newPushButton_clicked() void RouteDialog::on_sendPushButton_clicked() { - // Send route points file to server + emit sendroute(); +} + +void RouteDialog::setLabelInfoToUser(QString infoText) +{ + this->ui->labelInfoToUser->setText(infoText); }