Qt WebChannel Chatclient QML Example

The chatclient-html example provides a simple QWebChannel client implemented using JavaScript and QML.

Overview

The client initializes a WebSocket connection to the chat server and receives an object containing all neccessarry signals, slots and properties for implementing a chat client.

After login, the client can invoke the method sendMessage and receive the signal newMessage to send and receive messages. Furthermore, there is a userList property which provides the names of all other connected clients. It is automatically updated when its contents change. Also, the client responds to the servers keep alive signal which is needed to detect disconnected clients and remove them from the userList property.

The example shows how basic elements can be used with the client JavaScript implementation of QWebChannel, like connecting to signals (newMessage), calling slots (sendMessage) and handle property changes (userList).

The client is able to work with the chatserver-cpp as server application

The example can be run by invoking path/to/qmlscene qmlchatclient.qml.

Files:

See also chatserver-cpp and chatclient-html.

© 2015 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.