Re: [wxlua-users] static_compilation_with_system_lua_r148

2012-10-18 Thread Konstantin
COMPILATION ERRORS at rev. 150 I have *wxWidgets 2.9.4 Linux gcc 4.5.2* Now (at rev. 150) I have compilation errors: *1)* /tmp/wxLua-r150/modules/wxstedit/src/stefindr.cpp:122:56: error: passing ‘const wxSTEditorFindReplaceData’ as ‘this’ argument of ‘const wxString

[wxlua-users] At Revisions 150

2012-10-18 Thread Andre Arpin
encounter following problem: wxLua\Modules\LuaLibShared: Deleting file E:\programs\wxWidgets\wxlua\cmake\modules\lua\ LuaLibShared.tmp_Release_Win32.vcproj. ..\..\..\modules\wxstedit\src\stefindr.cpp(122): error C2662: 'wxFindReplaceData::GetFindString' : cannot convert 'this' pointer from

Re: [wxlua-users] At Revisions 150

2012-10-18 Thread John Labenski
On Thu, Oct 18, 2012 at 9:06 AM, Andre Arpin ar...@kingston.net wrote: encounter following problem: wxLua\Modules\LuaLibShared: Deleting file E:\programs\wxWidgets\wxlua\cmake\modules\lua\ LuaLibShared.tmp_Release_Win32.vcproj. ..\..\..\modules\wxstedit\src\stefindr.cpp(122): error C2662:

Re: [wxlua-users] static_compilation_with_system_lua_r148

2012-10-18 Thread John Labenski
On Thu, Oct 18, 2012 at 5:06 AM, Konstantin lalakos...@gmail.com wrote: Now (at rev. 150) I have compilation errors: 1) /tmp/wxLua-r150/modules/wxstedit/src/stefindr.cpp:122:56: error: passing ‘const wxSTEditorFindReplaceData’ as ‘this’ argument of ‘const wxString

Re: [wxlua-users] WxApp::FilterEvent available in wxlua?

2012-10-18 Thread John Labenski
On Thu, Oct 18, 2012 at 1:23 AM, Paul K paulclin...@yahoo.com wrote: Hi John, You should be able to call Connect() on the window you're interested in getting them from. window:Connect(wx.wxEVT_KEY_DOWN, Lua function) I'm looking for reducing the number of windows to check as there are

Re: [wxlua-users] WxApp::FilterEvent available in wxlua?

2012-10-18 Thread John Labenski
On Thu, Oct 18, 2012 at 11:14 PM, Paul K paulclin...@yahoo.com wrote: Hi John, If you can you explain what you are trying to do I might be able to help. Sure; I'm trying to detect idle time in the application when a user doesn't do any activity for X seconds. Any activity is defined as

Re: [wxlua-users] WxApp::FilterEvent available in wxlua?

2012-10-18 Thread Paul K
Hi John, A wxIdleEvent event is sent after every event or batch of events so you are guaranteed to get it. You could be tricked that a user was active with your app if a different window is dragged on top and a paint event sent, but does that matter? I saw that code, but he is using