Re: LazGUI
- Posted by jmduro Feb 12, 2016
- 1818 views
I successfully ran your demo program.
How is lazGUI going to work for an actual application? Can a server and client exist inside a single Euphoria application? How do you get multiple applications running at the same time?
( laz comes out as "lazy", does that make for a good or bad name? )
Nice work
_tom
Thank you, Tom. A lazy programmer is an efficient one
Both client an server can be packed in one archive. The OE client will launch the server to let the GUI appear. Actually, the listening port of the server is fixed. If you want multiple applications to run simultaneously, than each GUI server must have a different listening port.This could be provided as a parameter on the server launch.
I have to deal with RTTI (RunTimeTypeInfo) to build generic routines that can handle many classes of widgets: this is new to me. There lies the problem.
Client and server will exchange XML structured sequences to create or update widgets or to send event notifications.
Jean-Marc