qwebchannel
Advanced tools
Comparing version 5.5.0 to 5.6.0
{ | ||
"name": "qwebchannel", | ||
"version": "5.5.0", | ||
"version": "5.6.0", | ||
"description": "Asynchronous QObject communication", | ||
@@ -11,3 +11,3 @@ "main": "qwebchannel.js", | ||
"type": "git", | ||
"url": "http://code.qt.io/cgit/qt/qtwebchannel.git/" | ||
"url": "https://code.qt.io/qt/qtwebchannel.git" | ||
}, | ||
@@ -14,0 +14,0 @@ "keywords": [ |
@@ -196,3 +196,3 @@ /**************************************************************************** | ||
|| !response["__QObject*__"] | ||
|| response["id"] === undefined) { | ||
|| response.id === undefined) { | ||
return response; | ||
@@ -317,3 +317,3 @@ } | ||
{ | ||
invokeSignalCallbacks(signalName, signalArgs); | ||
invokeSignalCallbacks(signalName, this.unwrapQObject(signalArgs)); | ||
} | ||
@@ -329,6 +329,11 @@ | ||
for (var i = 0; i < arguments.length; ++i) { | ||
if (typeof arguments[i] === "function") | ||
callback = arguments[i]; | ||
var argument = arguments[i]; | ||
if (typeof argument === "function") | ||
callback = argument; | ||
else if (argument instanceof QObject && webChannel.objects[argument.__id__] !== undefined) | ||
args.push({ | ||
"id": argument.__id__ | ||
}); | ||
else | ||
args.push(arguments[i]); | ||
args.push(argument); | ||
} | ||
@@ -371,2 +376,3 @@ | ||
Object.defineProperty(object, propertyName, { | ||
configurable: true, | ||
get: function () { | ||
@@ -387,2 +393,5 @@ var propertyValue = object.__propertyCache__[propertyIndex]; | ||
object.__propertyCache__[propertyIndex] = value; | ||
var valueToSend = value; | ||
if (valueToSend instanceof QObject && webChannel.objects[valueToSend.__id__] !== undefined) | ||
valueToSend = { "id": valueToSend.__id__ }; | ||
webChannel.exec({ | ||
@@ -392,3 +401,3 @@ "type": QWebChannelMessageTypes.setProperty, | ||
"property": propertyIndex, | ||
"value": value | ||
"value": valueToSend | ||
}); | ||
@@ -418,2 +427,2 @@ } | ||
}; | ||
} | ||
} |
This is the `qwebchannel.js` file exactly as it is from the Qt WebChannel repository, uploaded to NPM for convenience. | ||
*Note: not an official Digia upload, this is a community-maintained package* | ||
***Note**: not an official Digia upload, this is a community-maintained package* | ||
# Official description | ||
The QWebChannel fills the gap between C++ applications and HTML/JavaScript applications. By publishing a QObject derived object to a QWebChannel and using the qwebchannel.js on the HTML side, one can transparently access properties and public slots and methods of the QObject. No manual message passing and serialization of data is required, property updates and signal emission on the C++ side get automatically transmitted to the potentially remotely running HTML clients. On the client side, a JavaScript object will be created for any published C++ QObject. It mirrors the C++ object's API and thus is intuitively useable. | ||
The C++ QWebChannel API makes it possible to talk to any HTML client, which could run on a local or even remote machine. The only limitation is that the HTML client supports the JavaScript features used by qwebchannel.js. As such, one can interact with basically any modern HTML browser or standalone JavaScript runtime, such as node.js. | ||
You can take the JS file and use it in the browser with a `<script />` tag or via Browserify/Webpack, or from node using `require('qwebchannel')`. From this, you can interact your Qt 5 or PySide 2-based application from a WebEngine view or a Node script. | ||
@@ -6,0 +13,0 @@ |
17538
377
20