File: locationdialog.cpp

package info (click to toggle)
nixnote2 2.0~beta11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,448 kB
  • ctags: 7,058
  • sloc: cpp: 68,338; java: 1,096; sh: 834; makefile: 27
file content (153 lines) | stat: -rw-r--r-- 4,203 bytes parent folder | download
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*********************************************************************************
NixNote - An open-source client for the Evernote service.
Copyright (C) 2015 Randy Baumgarte

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
***********************************************************************************/

#include "locationdialog.h"
#include "global.h"

#include <QGridLayout>
#include <QLabel>
#include <cmath>

extern Global global;

LocationDialog::LocationDialog(QWidget *parent) :
    QDialog(parent)
{
    wasOkPressed = false;
    setWindowTitle(tr("Location"));
    //setWindowIcon(new QIcon(iconPath+"password.png"));
    QGridLayout *grid = new QGridLayout();
    QGridLayout *input = new QGridLayout();
    QGridLayout *button = new QGridLayout();
    setLayout(grid);

    input->addWidget(new QLabel(tr("Longitude"), this), 1,1);
    input->addWidget(&longitude, 1, 2);
    input->addWidget(new QLabel(tr("Latitude"), this), 2,1);
    input->addWidget(&latitude, 2, 2);
    input->addWidget(new QLabel(tr("Altitude"), this), 3,1);
    input->addWidget(&altitude, 3, 2);
    input->setContentsMargins(10, 10,  -10, -10);
    grid->addLayout(input, 1,1);

    ok.setText(tr("OK"));
    connect(&ok, SIGNAL(clicked()), this, SLOT(okButtonPressed()));

    QPushButton *cancel = new QPushButton(tr("Cancel"), this);
    connect(cancel, SIGNAL(clicked()), this, SLOT(cancelButtonPressed()));
    button->addWidget(&ok, 1, 1);
    button->addWidget(cancel, 1,2);
    grid->addLayout(button, 3, 1);

    longlatval.setBottom(-90.0);
    longlatval.setTop(90.0);
    longlatval.setNotation(QDoubleValidator::StandardNotation);
    longitude.setValidator(&longlatval);
    latitude.setValidator(&longlatval);

    altitudeval.setBottom(-1500);
    altitudeval.setTop(9999.99);
    altitudeval.setNotation(QDoubleValidator::StandardNotation);
    altitude.setValidator(&altitudeval);
    this->setFont(global.getGuiFont(font()));
}



// The OK button was pressed
void LocationDialog::okButtonPressed() {
    locationText();
    wasOkPressed = true;
    close();
}

// The CANCEL button was pressed
void LocationDialog::cancelButtonPressed() {
    wasOkPressed = false;
    close();
}


bool LocationDialog::okPressed() {
    return wasOkPressed;
}

QString LocationDialog::locationText() {
    double lat = latitude.text().toDouble();
    QString p1 = calculateDegrees(lat);
    if (lat>=0)
        p1 = p1+" N ";
    else
        p1 = p1+" S ";

    double lon = longitude.text().toDouble();
    QString p2 = calculateDegrees(lon);
    if (lon>=0)
        p2 = p2+" E";
    else
        p2 = p2+" W";
    return p1+p2;


}


QString LocationDialog::calculateDegrees(double value) {
    qint32 degrees = floor(value);
    value = (value-degrees)*60;
    qint32 minutes = floor(value);
    value = value - minutes;
    qint32 seconds = floor(value)*60;

    QString retval = QString::number(degrees) + "°" +
            QString::number(minutes) +"'" +
            QString::number(seconds);
    return retval;
}


double LocationDialog::getLongitude() {
    return longitude.text().toDouble();
}


double LocationDialog::getLatitude() {
    return latitude.text().toDouble();
}



double LocationDialog::getAltitude() {
    return altitude.text().toDouble();
}


void LocationDialog::setAltitude(double value) {
    altitude.setText(QString::number(value));
}


void LocationDialog::setLongitude(double value) {
    longitude.setText(QString::number(value));
}


void LocationDialog::setLatitude(double value) {
    latitude.setText(QString::number(value));
}