summaryrefslogtreecommitdiffstats
path: root/app/file_operation.h
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2018-11-07 11:06:42 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2019-02-13 11:00:20 +0900
commit0ed2885ececf079f16b42fec60a4dc86285b5101 (patch)
treeb07075ffbebf9680ad4d5d2d6a4fa99a4ceee06c /app/file_operation.h
parentae47635e56c4af4d816a76e5186e945768543679 (diff)
add tbtnavi source
Diffstat (limited to 'app/file_operation.h')
-rw-r--r--app/file_operation.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/app/file_operation.h b/app/file_operation.h
new file mode 100644
index 0000000..65df54a
--- /dev/null
+++ b/app/file_operation.h
@@ -0,0 +1,40 @@
+#ifndef FILE_OPERATION_H
+#define FILE_OPERATION_H
+#include <QObject>
+#include <QString>
+#include <QFile>
+#include <QJsonObject>
+#include <QJsonDocument>
+
+/******************************************************
+ * Write navigation config in /etc/naviconfig.ini
+ ******************************************************/
+#define NAVI_CONFIG_FILEPATH "/etc/naviconfig.ini"
+
+class File_Operation: public QObject{
+
+ Q_OBJECT
+
+ QString m_mapAccessToken;
+ QString m_mapStyle;
+ double m_car_speed; // set Km/h
+ int m_update_interval; // set millisecond
+ double m_start_latitude;
+ double m_start_longitute;
+
+public:
+ File_Operation();
+ ~File_Operation();
+
+ Q_INVOKABLE QString getMapAccessToken();
+ Q_INVOKABLE QString getMapStyle();
+ Q_INVOKABLE double getCarSpeed();
+ Q_INVOKABLE int getUpdateInterval();
+ Q_INVOKABLE double getStartLatitude();
+ Q_INVOKABLE double getStartLongitute();
+
+private:
+ void initFileOperation();
+};
+
+#endif // FILE_OPERATION_H