From 147fc413436c62abbf8f5f054ca49b3d390eefa2 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Mon, 11 Nov 2019 00:46:59 -0800 Subject: poi-yelp: read starting location from naviconfig.ini Bug-AGL: SPEC-2880 Change-Id: Iafb4f89a7efe579d24a5a6a58f41a38eb6c08a41 Signed-off-by: Matt Ranostay --- MainApp.cpp | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/MainApp.cpp b/MainApp.cpp index bb2ffc6..8ff0488 100644 --- a/MainApp.cpp +++ b/MainApp.cpp @@ -19,6 +19,10 @@ #include "Keyboard.h" #include "traces.h" +#include + +#define NAVI_CONFIG_FILEPATH "/etc/naviconfig.ini" + #define DEFAULT_TEXT "Select your destination with Yelp !" #define URL_AUTH "https://api.yelp.com/oauth2/token" #define URL_AUTOCOMPLETE "https://api.yelp.com/v3/autocomplete" @@ -52,7 +56,7 @@ MainApp::MainApp():QMainWindow(Q_NULLPTR, Qt::FramelessWindowHint), networkManager(this),searchBtn(QIcon(tr(":/images/loupe-90.png")), tr(""), this), lineEdit(this),keyboard(QRect(0, 688, COMPLETE_W_WITH_KB, 720), this), mutex(QMutex::Recursive),token(""),currentSearchingText(""),currentSearchedText(""), - pSearchReply(NULL),pInfoPanel(NULL),pResultList(NULL),currentLatitude(0.0),currentLongitude(0.0), + pSearchReply(NULL),pInfoPanel(NULL),pResultList(NULL),currentLatitude(36.136261),currentLongitude(-115.151254), navicoreSession(0),currentIndex(0),fontId(-1),isInfoScreen(false), isInputDisplayed(false),isKeyboard(false),isAglNavi(false) { @@ -76,6 +80,21 @@ MainApp::MainApp():QMainWindow(Q_NULLPTR, Qt::FramelessWindowHint), lineEdit.setGeometry(QRect(LEFT_OFFSET + searchBtn.width() + SPACER, 0, lineEdit.width(), lineEdit.height())); lineEdit.setVisible(false); + + QFile file(NAVI_CONFIG_FILEPATH); + if (file.open(QIODevice::ReadOnly | QIODevice::Text)) + { + QByteArray data = file.readAll(); + QJsonDocument jsonDoc(QJsonDocument::fromJson(data)); + QJsonObject jsonObj(jsonDoc.object()); + + if (jsonObj.contains("latitude")) + currentLatitude = jsonObj["latitude"].toDouble(); + + if (jsonObj.contains("longitude")) + currentLongitude = jsonObj["longitude"].toDouble(); + } + /* We might need a Japanese font: */ QFile fontFile(":/fonts/DroidSansJapanese.ttf"); if (!fontFile.open(QIODevice::ReadOnly)) -- cgit 1.2.3-korg