wxlua icon indicating copy to clipboard operation
wxlua copied to clipboard

wxlua: Lua bindings for wxWidgets cross-platform GUI toolkit; supports Lua 5.1, 5.2, 5.3, 5.4, LuaJIT and wxWidgets 3.x

Results 23 wxlua issues
Sort by recently updated
recently updated
newest added

I passed parameter -DwxLuaBind_COMPONENTS="core;base" and I get wx.dll. dumpbin declares that wx.dll has 5 dependencies, base, core, aui, html and net. I'm able to write a Lua script and I...

The functions used for raising errors from wxLua bindings (e.g. bad arguments) internally call `luaL_error()`, which jumps out of the current stack frame, bypassing any C++ object cleanup. Even if...

Hi! I would like to send events to the wxFrame created in Lua from another thread from C++. According to the wxWidgets docs, I need the thread-safe `wxEvtHandler::QueueEvent` method. However,...