From 640c78665ffca949ad4c1773df7eddb1bdb9f1a2 Mon Sep 17 00:00:00 2001 From: Andras Becsi Date: Fri, 16 May 2014 14:59:49 +0200 Subject: Add a simple WebEngine demo to the B2Qt basicsuite Add a simple demo browser which by default loads the local webgl example. Move the webgl example to the root directory to be deployed. Change-Id: Icb0442ef37dcb31e6e1d33eee279bf429c566106 Reviewed-by: Laszlo Agocs --- basicsuite/shared/engine.h | 3 +++ basicsuite/shared/main.cpp | 15 ++++++++++++++- basicsuite/shared/shared.pri | 5 +++++ 3 files changed, 22 insertions(+), 1 deletion(-) (limited to 'basicsuite/shared') diff --git a/basicsuite/shared/engine.h b/basicsuite/shared/engine.h index 1600fc6..43713c8 100644 --- a/basicsuite/shared/engine.h +++ b/basicsuite/shared/engine.h @@ -20,6 +20,8 @@ #include #include +#include +#include class QQmlEngine; class QQuickItem; @@ -36,6 +38,7 @@ class DummyEngine : public QObject public: explicit DummyEngine(QObject *parent = 0); + Q_INVOKABLE QUrl fromUserInput(const QString &userInput) { return QUrl::fromUserInput(userInput); } Q_INVOKABLE int smallFontSize() const { return qMax(m_dpcm * 0.4, 10); } Q_INVOKABLE int fontSize() const { return qMax(m_dpcm * 0.6, 14); } Q_INVOKABLE int titleFontSize() const { return qMax(m_dpcm * 0.9, 20); } diff --git a/basicsuite/shared/main.cpp b/basicsuite/shared/main.cpp index d33b09c..d5b203f 100644 --- a/basicsuite/shared/main.cpp +++ b/basicsuite/shared/main.cpp @@ -34,14 +34,27 @@ #include #include -#include "engine.h" +#if defined(USE_QTWEBENGINE) +#include +#endif +#include "engine.h" int main(int argc, char **argv) { //qputenv("QT_IM_MODULE", QByteArray("qtvkb")); QApplication app(argc, argv); + + +#if defined(USE_QTWEBENGINE) + // This is currently needed by all QtWebEngine applications using the HW accelerated QQuickWebView. + // It enables sharing the QOpenGLContext of all QQuickWindows of the application. + // We have to do so until we expose a public API for it in Qt or choose to enable it + // by default earliest in Qt 5.4.0. + QWebEngine::initialize(); +#endif + QString path = app.applicationDirPath(); QPalette pal; diff --git a/basicsuite/shared/shared.pri b/basicsuite/shared/shared.pri index 8f66b7d..0d7392d 100644 --- a/basicsuite/shared/shared.pri +++ b/basicsuite/shared/shared.pri @@ -1,6 +1,11 @@ # widget dependecy is required by QtCharts demo QT += quick widgets +qtHaveModule(webengine) { + DEFINES += USE_QTWEBENGINE + QT += webengine +} + DESTPATH = /data/user/$$TARGET target.path = $$DESTPATH -- cgit v1.2.3 From 76217b65aa7e2af9ecb21acb509f345313a262cc Mon Sep 17 00:00:00 2001 From: Samuli Piippo Date: Mon, 30 Jun 2014 09:08:02 +0300 Subject: Update all VirtualKeyboard import to version 1.1 Change-Id: Idd65fcdc0afee0f54c8532bb2c26121a0b2da2b6 Reviewed-by: Eirik Aavitsland --- basicsuite/shared/SharedMain.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basicsuite/shared') diff --git a/basicsuite/shared/SharedMain.qml b/basicsuite/shared/SharedMain.qml index 60a141b..98ca779 100644 --- a/basicsuite/shared/SharedMain.qml +++ b/basicsuite/shared/SharedMain.qml @@ -16,7 +16,7 @@ ** ****************************************************************************/ import QtQuick 2.0 -import QtQuick.Enterprise.VirtualKeyboard 1.0 +import QtQuick.Enterprise.VirtualKeyboard 1.1 Item { id: root -- cgit v1.2.3