From: John L. <jla...@gm...> - 2009-08-25 12:51:26
|
On Tue, Aug 25, 2009 at 5:36 AM, Alexander Altshuler<al...@ka...> wrote: > > I have two questions both related Unicode support in wxLua: > > 1. Are current Windows binaries compiled with Unicode support? No, because Lua only uses ASCII C strings, but you can build it with wxWidgets unicode support and the strings will be converted as they're passed between Lua and wxWidgets. I'm not sure that you get any advantage by building wxWidgets in unicode mode, but you do get a performance penalty doing the translation. > 2. Are there any plans to support wxWidget 3.0? Yes, but the binding generator should be completely rewritten to take advantage of the interface files that they use to generate the docs. This will make it easier to follow changes in wxWidgets in the future. I have to immediate plans to do this, but it will be done. http://svn.wxwidgets.org/viewvc/wx/wxWidgets/trunk/interface/wx/ Regards, John |