summaryrefslogtreecommitdiffstats
path: root/src/webengine/api/qquickwebenginescript_p_p.h
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@theqtcompany.com>2015-03-10 13:44:42 +0100
committerRobin Burchell <robin.burchell@viroteck.net>2015-03-18 13:06:00 +0000
commite9c82ddc22662ffc768d37f0be5e7e3ac3599bfa (patch)
treec0eaa3f4000f1fbaee7fbfa32dc2f8705e37843e /src/webengine/api/qquickwebenginescript_p_p.h
parentd4ab9273dd1c61e1638f5b0376e65f7c5375ad93 (diff)
QQuickWebEngineScript: Add a sourceUrl property to complement sourceCode.
QtQuick doesn't have a convenient interface to interact with files, and even if that were the case, it would either be more awkward (and with increased overhead -- the price of an extra QObject, property, signal, etc) just to fetch the contents. So, we provide a convenience to allow fetching a user script from a file. Setting the sourceCode directly will reset sourceUrl (if it is set), and setting sourceUrl will ultimately result in a sourceCode change signal, too. Change-Id: Iee5abc0d719e2aeeacf1265f695b5a7efee9e0e8 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'src/webengine/api/qquickwebenginescript_p_p.h')
-rw-r--r--src/webengine/api/qquickwebenginescript_p_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webengine/api/qquickwebenginescript_p_p.h b/src/webengine/api/qquickwebenginescript_p_p.h
index 7b5626fd1..f8a957579 100644
--- a/src/webengine/api/qquickwebenginescript_p_p.h
+++ b/src/webengine/api/qquickwebenginescript_p_p.h
@@ -61,6 +61,7 @@ public:
QBasicTimer m_basicTimer;
QtWebEngineCore::UserScriptControllerHost *m_controllerHost;
QtWebEngineCore::WebContentsAdapter *m_adapter;
+ QUrl m_sourceUrl;
private:
QQuickWebEngineScript *q_ptr;