Andrew Sokolov

Results 5 issues of Andrew Sokolov

Hi! I'm trying to compile wxlua with the current version of wxWidgets from master (3.3). I'm using MSYS2, luaJIT, a static build of wxWidgets and the following set of wxlua...

I'm trying to store custom data in a wxTreeListCtrl items like this: ``` local item = myListCtrl:AppendItem(parentItem, "name", -1, -1) local obj = wx.wxStringClientData("test data") myListCtrl:SetItemData(item, obj) ``` It runs...

I have a piece of code very similar to the example [EchoClient example](https://github.com/ReactiveX/RxNetty/blob/0.5.x/rxnetty-examples/src/main/java/io/reactivex/netty/examples/http/ws/echo/WebSocketEchoClient.java) Here it is: ``` HttpClient.newClient("gateway.discord.gg", 443) .unsafeSecure().createGet("/?encoding=json&v=5") .requestWebSocketUpgrade() .doOnNext(resp -> logger.info(resp.toString())) .flatMap(resp -> resp.getWebSocketConnection()) .flatMap(conn -> conn.getInput())...

bug

I've tried building wxlua and wxwidgets as a static library (as described [here](https://github.com/pkulchenko/wxlua/issues/116#issuecomment-1489711775)), and everything works fine. Now, I need to have wxWidgets as a shared library, to expose some...

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,...