blob: c088033a88e5e7147936654b7a1e3e44b1e055af (
plain)
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef WIDGET_H
#define WIDGET_H
#include "logwidget.h"
#include <QWidget>
#include <QGeoPositionInfoSource>
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
public:
explicit Widget(LogWidget *log, QWidget *parent = nullptr);
~Widget();
public slots:
void positionUpdated(QGeoPositionInfo gpsPos);
void setInterval(int msec);
void positionTimedOut();
void errorChanged(QGeoPositionInfoSource::Error err);
private slots:
void on_buttonRetrieve_clicked();
void on_buttonStart_clicked();
void on_radioButton_2_clicked();
void on_radioButton_clicked();
void on_radioButton_3_clicked();
void on_radioButton_4_clicked();
void on_buttonUpdateSupported_clicked();
void on_buttonResetError_clicked();
private:
LogWidget *log = nullptr;
Ui::Widget *ui;
QGeoPositionInfoSource *m_posSource;
};
#endif // WIDGET_H
|