[Interest] Guide me through the Qt offerings for GUIs

Konstantin Shegunov kshegunov at gmail.com
Sat Apr 24 13:55:28 CEST 2021


On Sat, Apr 24, 2021 at 2:42 PM Rui Oliveira <ruilvo at hotmail.com> wrote:

> Audio applications, like DAWs solve this by just allowing VST developers
> to bring their own UI at their will, on a separate window. But I have an
> app I want to create a space for the plugin/module to display it's
> controller for it's own hardware... How?
>
You can do that both with widgets and with QML, no one is saying you can't
return a Quick item from a plugin, which is after that exposed to the main
QML interface (by adding it to the scene as necessary). Should take
approximately the same effort as doing it with the widgets or thereabout.
It is also possible in a client-server architecture, however the "how" will
depend very much on the requirements you have. Servers come in different
flavours as well, it's not mandatory to stick to HTTP, but it may be
beneficial in some cases. Personally, I don't like the idea of streaming
the UI related stuff over the network (e.g. with WebGL), but again this'd
be a decision made based on the actual requirements of your project.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/interest/attachments/20210424/e15173ca/attachment.html>


More information about the Interest mailing list