-
Notifications
You must be signed in to change notification settings - Fork 1
/
latLonCoordinateWidget.h
48 lines (39 loc) · 1.04 KB
/
latLonCoordinateWidget.h
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
#ifndef LATLONCOORDINATEWIDGET_H
#define LATLONCOORDINATEWIDGET_H
#include <QWidget>
#include <QVector>
#include <ui_latLonCoordinateWidget.h>
class latLonCoordinateWidget : public QWidget, public Ui::latLonCoordinateWidget
{
Q_OBJECT;
public:
latLonCoordinateWidget(QWidget *parent=0);
~latLonCoordinateWidget();
bool isValid();
void getCoords(QVector<double> &coordVect);
void setCoords(QVector<double> &coordVect);
void setDefaultHemispheres(int NS, int EW);
private:
QRegExp latDegRegExp;
QRegExp lonDegRegExp;
QRegExp intRegExp;
QRegExp intLatRegExp;
QRegExp intLonRegExp;
QRegExp minSecDecRegExp;
double latitude;
double longitude;
bool latValid();
bool lonValid();
signals:
void coordsChanged();
private slots:
void latDegChanged(const QString &);
void lonDegChanged(const QString &);
void latMinChanged(const QString &);
void lonMinChanged(const QString &);
void latSecChanged(const QString &);
void lonSecChanged(const QString &);
void updateLatitude();
void updateLongitude();
};
#endif