From: Mattia B. <mb...@ds...> - 2001-12-09 14:47:35
|
> can someone give me a little example how to use wxThread in wxPerl? > i really can't figure out how this works... wxThread is not yet wrapped; I didn't wrap it because if you want threads, you should use Perl threads, not wx ones; the only caveat is that you can only call the GUI functions from the main thread ( the one in wich Wx::App was created ); other threads can communicate with the main thread using Wx::EvtHandler::AddPendingEvent(); HTH Mattia |