On 10 May 2007, at 14:51, Thorsten Wilms wrote:
On Thu, May 10, 2007 at 12:53:44PM +0200,
torbenh(a)gmx.de wrote:
the problem will be rather: why has this plugin a GUI in ardour and
ingen and not in qtractor.
while this other plugin has a gui in qtractor and non in ardour and
ingen.
So how can the toolkit issue be adressed?
Could there be something like GUI hosts to assist plugin hosts
by running plugin GUIs that use another toolkit?
What does DSSI do?
DSSI runs the plugin UI in a separate process with its own X
connection. It's not ideal, but it works OK. The biggest problem is
that it makes it trickier for the host to re-parent the UI - I don't
know if anyone's made that work.
Re-parenting can be done using the XEMBED protocol, implemented in e.g.
GTK as the Socket and Plug widgets. You need to give the Socket the
window ID of the Plug or vice versa, so to do it in DSSI would require a
(trivial) extension of the host <-> GUI communication protocol. I did
some simple experiments with it earlier and it seems to work fine.
--ll