user interface - Dynamically manipulate Qt GUI -
Is there any way to open the QT process and then add widgets progressively? For example, start the process of opening a frame and then, with another program, say, another program (this is mine, is actually another scripting language), add a button to that frame?
Then, in another program, I quickly say "open border" and opens the frame. And then I say "Add Button" and only the opened frame has been populated with a button.
Updated the updated to solve the comment.
As already mentioned, this is possible. If you need a domain specific scripting language, then I would suggest using it, it is based on ECMAScript 262 and allows access to signals, slots and other things.
Although you can use IPC or TCP to control the application, QQT provides signal and slot between connected applications through a QIODevice, such as a TCP or local Connection
Comments
Post a Comment