I have a Qt(c++) and FLTK (lua) GUI running. And i have Java AWT/Swing GUI running, side by side in a Desktop.
How can i now inject the Qt/FLTK GUI window A-Z to my JAva Window or JWindow? So that it becomes such tree:
JWindow
|_ Third party (Qt/FLTK windows)
|_ Button pressed on QT triggers its own c++ functions
|_ Button pressed on FLTK triggers its own lua functions
|
|_ Watching them side by side in one main window (java)
Thanks