I have an OnIdle handler in my D2006 app. With this code:
procedure TMainForm.ApplicationEvents1Idle(Sender: TObject; var Done: Boolean);
begin
Inc (IdleCalls) ;
Sleep (10) ;
Done := False ;
end ;
the app runs smoothly, the idle handler is called 100 times per second, and the CPU usage is next to zero.
I then added a TActionList and connected up some controls to actions, coded an Execute and Update handler.
procedure TMainForm.ActionNewButtonExecute(Sender: TObject);
begin
DoNewProject ;
end ;
procedure TMainForm.ActionNewButtonUpdate(Sender: TObject);
begin
ActionNewButton.Enabled := AccessLevelIsSupervisor ;
end;
Problem. The OnUpdate event doesn't fire. On a hunch I set Done := true in the OnIdle handler and the OnIdle handler is then only called when I move the mouse. And the Update action still doesn't fire.
Why might the Update handler not be firing, and should I set Done to true or false? Or both?
Sleepin OnIdle is a terrible thing - it causes "sputtering" or glitches in the UI.) – Ken White Apr 1 '11 at 0:13Sleepis always a bad idea unless there's an absolute requirement for it; there's a reason Windows and other OSes support multiple threads of execution. It's so background processing can be done in the background, not the UI thread. And what happens if the user happens to move the mouse just as OnIdle is called? There's a delay before the mouse event is processed. A glitch. – Ken White Apr 1 '11 at 1:13