[wxlua-users] static_compilation_with_system_lua_r148

2012-10-16 Thread Konstantin
Hello Can't compile my app on Linux with wxLua at rev 148 with system lua, so I've comment out one line and add four... See patch below (in the attachment too) diff -rup wxLua-r148.orig/CMakeLists.txt wxLua-r148/CMakeLists.txt --- wxLua-r148.orig/CMakeLists.txt2012-09-24

Re: [wxlua-users] Checkboxes don't react to clicks in editor.wx.lua on Mac OSX

2012-10-16 Thread Paul K
Hi John, Ok, I narrowed it down to a problem with wxStaticBoxSizer as the following short script shows (this is with wxlua 2.8.12.1 and wxwidgets 2.8.12 running on OSX10.7.4): require wx local findDialog = wx.wxFrame( wx.NULL, wx.wxID_ANY, Checkbox in sizer demo, wx.wxDefaultPosition,

Re: [wxlua-users] Checkboxes don't react to clicks in editor.wx.lua on Mac OSX [fixed]

2012-10-16 Thread Paul K
In the best tradition of answering my own question, the solution was easy: create wxStaticBox (or wxStaticBoxSizer) *before* checkboxes are created. There seems to be a bug (or feature) in how the order in event traversal is handled and if the staticbox is created after the checkboxes, none of

Re: [wxlua-users] static_compilation_with_system_lua_r148

2012-10-16 Thread John Labenski
On Tue, Oct 16, 2012 at 7:51 AM, Konstantin lalakos...@gmail.com wrote: Can't compile my app on Linux with wxLua at rev 148 with system lua, so I've comment out one line and add four... See patch below (in the attachment too) ... diff -rup wxLua-r148.orig/modules/CMakeLists.txt

Re: [wxlua-users] wxLua-config.cmake should be renamed

2012-10-16 Thread John Labenski
On Tue, Oct 16, 2012 at 8:16 AM, Konstantin lalakos...@gmail.com wrote: CMAKE on case-sensitive Linux... find_package command in cmake: The command searches for a file called nameConfig.cmake or lower-case-name-config.cmake for each name specified. So, it should be renamed to

Re: [wxlua-users] Checkboxes don't react to clicks in editor.wx.lua on Mac OSX [fixed]

2012-10-16 Thread John Labenski
On Tue, Oct 16, 2012 at 3:53 PM, Paul K paulclin...@yahoo.com wrote: In the best tradition of answering my own question, the solution was easy: create wxStaticBox (or wxStaticBoxSizer) *before* checkboxes are created. There seems to be a bug (or feature) in how the order in event traversal