aboutsummaryrefslogtreecommitdiff
path: root/qml/HtmlViewSheet.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/HtmlViewSheet.qml')
-rw-r--r--qml/HtmlViewSheet.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/qml/HtmlViewSheet.qml b/qml/HtmlViewSheet.qml
new file mode 100644
index 0000000..03e0147
--- /dev/null
+++ b/qml/HtmlViewSheet.qml
@@ -0,0 +1,23 @@
+import QtQuick 2.12
+import QtWebEngine 1.10
+
+import org.kde.kirigami 2.12 as Kirigami
+
+Kirigami.OverlaySheet {
+ property string subject
+ property string html
+
+ header: Kirigami.Heading {
+ text: subject
+ }
+
+ WebEngineView {
+ id: web
+ height: 500
+ }
+
+ onHtmlChanged: {
+ console.log("Loading HTML!")
+ web.loadHtml(html)
+ }
+}