[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [lmi] Automated GUI testing
From: |
Greg Chicares |
Subject: |
Re: [lmi] Automated GUI testing |
Date: |
Sat, 19 Nov 2005 16:55:24 +0000 |
User-agent: |
Mozilla Thunderbird 1.0.2 (Windows/20050317) |
On 2005-11-19 16:45 UTC, Vadim Zeitlin wrote:
> On Sat, 19 Nov 2005 16:41:06 +0000 Greg Chicares <address@hidden> wrote:
>
> GC> > It should be (but this is untested) enough to just call
> GC> > wxTheApp->wxPostEvent(idleEvent).
> GC>
> GC> I tried that in code committed a moment ago (20051119T1631Z):
[...]
> GC> I still have to call the EVT_UPDATE_UI handler explicitly: idle processing
> GC> doesn't take care of that, even if I send 1000 idle events.
>
> [...] It's not enough to send idle event to the app
> object, in fact you need to tell it to generate idle events for all
> windows. This is done by calling wxTheApp->ProcessIdle() and, although it's
> still untested, at least I had a good look at the code this time and it
> seems that it really should work.
Yes, thanks very much, that does seem to work.