summaryrefslogtreecommitdiffstats
path: root/app/main.cpp
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2018-08-02 09:51:52 +0000
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2018-08-02 09:51:52 +0000
commitb32354d22017b39bb40ef8e292d24c5ed7b47013 (patch)
treedce3b0ac34b63834f5dc8dcdd9e78d9a822673e9 /app/main.cpp
parent0a5f2088affd1a92a38b067618585c57730b0646 (diff)
Improve output of multiple screen resolution
To improve output on various monitor with various resolution, use scale_factor from WM to fit various screen resolution. Bug-AGL: SPEC-1568, SPEC-1569, SPEC-1611 Change-Id: Ic0b8538259a4e9949caa099cff475935af609d09 Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'app/main.cpp')
-rw-r--r--app/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/main.cpp b/app/main.cpp
index 082c444..b4c5be3 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -95,6 +95,7 @@ int main(int argc, char *argv[])
if(qwm->init(port,secret) != 0) {
exit(EXIT_FAILURE);
}
+ AGLScreenInfo screenInfo(qwm->get_scale_factor());
// Request a surface as described in layers.json windowmanager’s file
if(qwm->requestSurface(myname) != 0) {
exit(EXIT_FAILURE);
@@ -143,6 +144,7 @@ int main(int argc, char *argv[])
DBus dbus;
engine.rootContext()->setContextProperty("dbus", &dbus);
engine.rootContext()->setContextProperty("bluetooth", new Bluetooth(bindingAddressWS));
+ engine.rootContext()->setContextProperty(QStringLiteral("screenInfo"), &screenInfo);
engine.load(QUrl(QStringLiteral("qrc:/Settings.qml")));
QObject *root = engine.rootObjects().first();
QQuickWindow *window = qobject_cast<QQuickWindow *>(root);