forked from cajun-rat/openivi-html5
-
Notifications
You must be signed in to change notification settings - Fork 5
/
webgraphicview.cc
95 lines (76 loc) · 3.14 KB
/
webgraphicview.cc
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
OpenIVI HTML5 environment
Copyright (C) 2015 ATS Advanced Telematic Systems GmbH
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "webgraphicview.h"
#include <QWebFrame>
#include <QtDBus/QDBusMessage>
#include <QtDBus/QDBusConnection>
#include <QtWebKit/QtWebKit>
#include "softwareloadingmanager.h"
using org::genivi::software_loading_manager;
WebGraphicView::WebGraphicView(QWidget *parent)
: QGraphicsView(parent),
page_(new AllowLocationWebPage(this)),
view_(new QGraphicsWebView),
scene_(new QGraphicsScene(this)),
webInspector_(new QWebInspector),
softwareLoadingManager_(new SoftwareLoadingManager(this)),
car_(new Car(this)) {
page_->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
page_->settings()->setAttribute(QWebSettings::LocalStorageEnabled, true);
page_->settings()->setAttribute(QWebSettings::LocalContentCanAccessRemoteUrls,
true);
page_->setProperty("_q_webInspectorServerPort", 9221);
connect(page_->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), this,
SLOT(AddJavascriptObjectsToWindow()));
view_->setPage(page_);
setScene(scene_);
scene_->addItem(view_);
webInspector_->setPage(page_);
connect(page_, SIGNAL(microFocusChanged()), this, SLOT(FocusUpdate()));
}
WebGraphicView::~WebGraphicView() {
delete view_;
delete webInspector_;
}
void WebGraphicView::resizeEvent(QResizeEvent *event) {
view_->resize(this->size());
QGraphicsView::resizeEvent(event);
}
void WebGraphicView::SetUrl(const QUrl &url) { view_->setUrl(url); }
void WebGraphicView::FocusUpdate() {
QVariant r = page_->inputMethodQuery(Qt::ImSurroundingText);
bool shouldDisplayKeyboard = r.isValid();
if (keyboardVisible_ != shouldDisplayKeyboard) {
if (shouldDisplayKeyboard) {
virtualKeyboard_.Show();
} else {
virtualKeyboard_.Hide();
}
keyboardVisible_ = shouldDisplayKeyboard;
}
}
void WebGraphicView::AddJavascriptObjectsToWindow() {
page_->currentFrame()->addToJavaScriptWindowObject("slm",
softwareLoadingManager_);
page_->currentFrame()->evaluateJavaScript("genivi = {slm:slm}");
page_->currentFrame()->evaluateJavaScript(
"navigator.geolocation = {"
" watchPosition: function () {},"
" getCurrentPosition: function () {}"
"};");
page_->currentFrame()->addToJavaScriptWindowObject("car", car_);
}
/* vim: set expandtab tabstop=2 shiftwidth=2: */