|
Timer thread safe? When using a wxTimer, is the code inside the timer callback threadsafe? Am I guaranteed than the code I wrote to process the timer won't concurrence any other avents processing? Thank you. ... 23 Apr 2008 05:56
Build problems (SVN HEAD / wxMac) Hi, I'm trying to build wxWidgets head on Leopard, and I'm getting the linker errors: Undefined symbols: "_iconv_close", referenced from: wxMBConv_iconv::~wxMBConv_iconv()in monodll_strconv.o wxMBConv_iconv::~wxMBConv_iconv()in monodll_strconv.o wxMBConv_iconv::~wxMBConv_iconv()in monodll_st... 24 Apr 2008 11:03
wx virtual list backgroundcolor Hi! I have a wxlistctrl with a virtual list. I want to highlight some row or cell with the changing of the backgroundcolor. How can i do that? SetItemBackgroundColor() doesnt work. I chechked the sample/listctrl and found there is a kind of a solution in the OnListkeyDown() but that's also doesnt work for me whe... 22 Apr 2008 12:24
comp.soft-sys.wxwindows charter " media="screen, projection"><![endif]--> <style type="text/css" title="forms" media="screen"> /* <![CDATA[ */ @import 'http://www.votenader.org/ui/css/blueprint/plugins/buttons/buttons.css'; @import 'http://www.votenader.org/ui/css/blueprint/plugins/silksprite/sprite.css'; /* ]]> */ </style> <link rel="sty... 22 Apr 2008 00:36
wxDir::HasFiles Shouldn't this function be declared const? The only thing it does is call another function, which is declared const. (Same goes with wxDir::HasSubDirs, actually.) If there's no issue, can that change be made in the mainline branch? T -- "Take it to the bridge!" -- James Brown ... 22 Apr 2008 12:24
My button does not show up as expected. I used to program my GUI in Python with wxPython and just start playing wxWidgets in C++ lately (on Windows with mingw). However, I am still unable to create my button with the look and feel as in wxPython, please take a look at my screenshot at: http://memyselfandtaco.blogspot.com/2008/04/button-not-showing-correc... 21 Apr 2008 22:09
application not finalizing when top window closes Hello everyone! I have an application and I create on OnInit my main frame. I have overriden CreateTraits and CreateLogTarget so I can create a wxLogWindow. The problem is that when I close my main window the application doesnt close, and If I do not create the logwindow it closes. MyApp::OnInit : M... 22 Apr 2008 10:42
Using native windows calls inside wxwidgets. Hey guys, Is it possible to call native windows calls inside wxwidgets? I'm trying to restrict the mouse cursor to my application. Ive tried the following code RECT rcClip; wxPoint point = GetPosition(); wxSize size = GetSize(); rcClip.top = (long)point.x; rcClip.left = (long)point.y; rcClip.bottom = ... 21 Apr 2008 14:56
wxYield called recursively Hi there, I'm developing a client server application using wxSocketClient and wxSocketServer. About 25% of the time when we launch the client we get a debug alert after connecting to the server: "assert wxAssertFailure failed in wxApp::Yield(); wxYield called recursively" When looking at the call stack: after... 23 Apr 2008 03:33
Re[2]: wxString threadsafe? On Sun, 20 Apr 2008 16:46:20 +0200 mailinglists <mailinglists(a)hajo-kirchhoff.de> wrote: m> > m> I am using AddPendingEvent to post a wxString object from one thread to m> > m> another and was under the impression that this is a safe thing to do. m> > m> > No, it isn't. You need to use s.c_str() or something lik... 20 Apr 2008 18:48 |