diff options
author | Scott Murray <scott.murray@konsulko.com> | 2019-07-24 12:09:40 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2019-07-24 12:09:40 -0400 |
commit | 1f875de1d513c733550401ee40fa289fb2acb57e (patch) | |
tree | 9e6764cd4de63021285435e956f260b295cdbd7b /app/file_operation.h | |
parent | 33258140525123d6a38900811c2df3e14f4e8337 (diff) |
Initial import from github
Import from http://github.com/YoshitoMomiyama/aglqtnavigation.git as
of commit a6930c2, with the following minor changes:
- .gitignore tweaked to remove itself
- .gitreview updated
Bug-AGL: SPEC-2667
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I91fed0f6349bf1952e41132058929b70a2b0fe5b
Diffstat (limited to 'app/file_operation.h')
-rw-r--r-- | app/file_operation.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app/file_operation.h b/app/file_operation.h new file mode 100644 index 0000000..411cc25 --- /dev/null +++ b/app/file_operation.h @@ -0,0 +1,42 @@ +#ifndef FILE_OPERATION_H +#define FILE_OPERATION_H +#include <QObject> +#include <QString> +#include <QFile> +#include <QJsonObject> +#include <QJsonDocument> + +/****************************************************** + * Please set mapAccessToken, mapStyleUrl, speed, + * interval, latitude and longitude in JSON format + * in /etc/naviconfig.ini + ******************************************************/ +#define NAVI_CONFIG_FILEPATH "/etc/naviconfig.ini" + +class File_Operation: public QObject{ + + Q_OBJECT + + QString m_mapAccessToken; + double m_car_speed; // set Km/h + int m_update_interval; // set millisecond + double m_start_latitude; + double m_start_longitute; + QString m_mapStyleUrls; + +public: + File_Operation(); + ~File_Operation(); + + Q_INVOKABLE QString getMapAccessToken(); + Q_INVOKABLE double getCarSpeed(); + Q_INVOKABLE int getUpdateInterval(); + Q_INVOKABLE double getStartLatitude(); + Q_INVOKABLE double getStartLongitute(); + Q_INVOKABLE QString getMapStyleUrls(); + +private: + void initFileOperation(); +}; + +#endif // FILE_OPERATION_H |