-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
59 lines (39 loc) · 1.08 KB
/
mainwindow.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
49
50
51
52
53
54
55
56
57
58
59
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QTime>
#include <QSettings>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_time_userTimeChanged(const QTime &time);
void on_time_zone_h_textChanged(const QString &arg1);
void on_time_zone_m_textChanged(const QString &arg1);
void changed_time() ;
void on_date_userDateChanged(const QDate &date);
void on_longitude_textChanged(const QString &arg1);
void on_set_time_clicked();
void on_run_clicked();
void on_stop_clicked();
void on_pushButton_clicked();
void LoadSettings() ;
void on_latitude_textChanged(const QString &arg1);
void on_altitude_textChanged(const QString &arg1);
private:
Ui::MainWindow *ui;
int year = 2020, month = 1, day = 1 ;
int year_2, month_2, day_2 ;
double hour, UT ;
float tz, h ; // time zone
double lo, la, al ; // longitude
QTimer *timer ;
int to ; // time offset from UTC in milis
};
#endif // MAINWINDOW_H