From: Daniel Calvelo Date: 2007-05-10T03:05:07+09:00 Subject: Re: wxRuby and wxGlade? On May 8, 3:08 am, Guaton Carcass wrote: [...] > NOW, I would like to able to create graphical interfaces in a more > "visual way"(event driven) than what wxRuby allows. I downloaded > wxPython so I can use wxGlade because I read somewhere that I still > could use ruby scripts even in wxGlade, is that so? can anyone > illustrate a little more about it? (please in simple language, until > last week computers where a magical box for me, je je je) wxGlade lets you build an interface graphically and then you use that visually-defined interface to generate the equivalent program generating the same interface. So, one general usage is: launch wxGlade, create your application's layout by installing widgets in the windows/frames/panels, generate the ruby/python/whatever code, call that code from within your main program (preferably in another file) which handles the logic of your application. > Are there any tutorials somewhere to learn more about wxRuby and > wxGlade? The examples given in the wx demo are certainly a very good source to read inspect and imitate. Daniel.