On Wed, May 5, 2010 at 5:08 PM, Domingo Alvarez Duarte
wrote:
> Here is a lua script that convert the cpp file generated from wxFormBuilder
> to lua.
>
Very interesting, I'll try it out when I get a chance.
Thanks for sharing.
John
--
On Tue, May 4, 2010 at 3:50 AM, Chunlin Zhang wrote:
> In wxpython define a new event can use this code:
> '''
> # This creates a new Event class and a EVT binder function
> (UpdateBarEvent, EVT_UPDATE_BARGRAPH) = wx.lib.newevent.NewEvent()
> '''
>
> How can I do same job in lua using wxlua?
> I s
Here is an improved version of it that now uses the information of both
cpp/h files to generate a runable wxlua file.
Why it's not published on the mailing list ?
On Fri, May 7, 2010 at 4:47 AM, John Labenski wrote:
> On Wed, May 5, 2010 at 5:08 PM, Domingo Alvarez Duarte
> wrote:
> > Here is