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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
* Copyright (C) 2018, 2019, 2021 Igalia S.L
* Copyright (C) 2018, 2019 Zodiac Inflight Innovations
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#pragma once
#include <QQmlEngine>
#include <QQuickItem>
#include <QUrl>
#include <memory>
#include <wpe/webkit.h>
class WPEQtViewBackend;
class WPEQtViewLoadRequest;
class Q_DECL_EXPORT WPEQtView : public QQuickItem {
Q_OBJECT
Q_DISABLE_COPY(WPEQtView)
Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged)
Q_PROPERTY(bool loading READ isLoading NOTIFY loadingChanged)
Q_PROPERTY(int loadProgress READ loadProgress NOTIFY loadProgressChanged)
Q_PROPERTY(QString title READ title NOTIFY titleChanged)
Q_PROPERTY(bool canGoBack READ canGoBack NOTIFY loadingChanged)
Q_PROPERTY(bool canGoForward READ canGoForward NOTIFY loadingChanged)
Q_ENUMS(LoadStatus)
public:
enum LoadStatus {
LoadStartedStatus,
LoadStoppedStatus,
LoadSucceededStatus,
LoadFailedStatus
};
WPEQtView(QQuickItem* parent = nullptr);
~WPEQtView();
QSGNode* updatePaintNode(QSGNode*, UpdatePaintNodeData*) final;
void triggerUpdate() { QMetaObject::invokeMethod(this, "update"); };
QUrl url() const;
void setUrl(const QUrl&);
int loadProgress() const;
QString title() const;
bool canGoBack() const;
bool isLoading() const;
bool canGoForward() const;
WebKitWebView* webView() const;
public Q_SLOTS:
void goBack();
void goForward();
void reload();
void stop();
void loadHtml(const QString& html, const QUrl& baseUrl = QUrl());
void runJavaScript(const QString& script, const QJSValue& callback = QJSValue());
Q_SIGNALS:
void webViewCreated();
void urlChanged();
void titleChanged();
void loadingChanged(WPEQtViewLoadRequest* loadRequest);
void loadProgressChanged();
protected:
bool errorOccured() const { return m_errorOccured; };
void setErrorOccured(bool errorOccured) { m_errorOccured = errorOccured; };
void geometryChanged(const QRectF& newGeometry, const QRectF& oldGeometry) override;
void hoverEnterEvent(QHoverEvent*) override;
void hoverLeaveEvent(QHoverEvent*) override;
void hoverMoveEvent(QHoverEvent*) override;
void mousePressEvent(QMouseEvent*) override;
void mouseReleaseEvent(QMouseEvent*) override;
void wheelEvent(QWheelEvent*) override;
void keyPressEvent(QKeyEvent*) override;
void keyReleaseEvent(QKeyEvent*) override;
void touchEvent(QTouchEvent*) override;
private Q_SLOTS:
void configureWindow();
void createWebView();
private:
static void notifyUrlChangedCallback(WPEQtView*);
static void notifyTitleChangedCallback(WPEQtView*);
static void notifyLoadProgressCallback(WPEQtView*);
static void notifyLoadChangedCallback(WebKitWebView*, WebKitLoadEvent, WPEQtView*);
static void notifyLoadFailedCallback(WebKitWebView*, WebKitLoadEvent, const gchar* failingURI, GError*, WPEQtView*);
WebKitWebView* m_webView { nullptr };
QUrl m_url;
QString m_html;
QUrl m_baseUrl;
QSizeF m_size;
WPEQtViewBackend* m_backend { nullptr };
bool m_errorOccured { false };
};
|