Usually, when I have a task which takes some time, I use a script like this:

procedure Work;
var
  cPrevious: TCursor;
begin
  cPrevious     := Screen.Cursor;
  Screen.Cursor := crHourGlass;

  try    
  // the task

  finally    
    Screen.Cursor := cPrevious;
  end;
end;

With FireMonkey, Screen doesn't have a property: Cursor.

What is the best way to give some feedback to the user?



I followed the comments and the answer... with a TPanel which has less opacity, and a TAniIndicator (I also blur the other components):

Feedback

Thank you!

link|improve this question

4  
Dimming the form (by overlaying some alpha-blended rectangle) and displaying an animated GIF - like one of those which can be generated at ajaxload.info - maybe? – mjn Sep 15 '11 at 7:26
1  
Also if no user interaction is desired during this time, you could make it more obvious by disabling the controls and displaying a panel with a message like "Please wait while..." and the animated gif like mjn suggested, or a progress bar to indicate that the app is not frozen, etc. @mjn: +1 for dimming effect and gif, nice touch – Grove Sep 15 '11 at 7:50
1  
yes, that's make sense... FYI, I have used a TAniIndicator which is a component which looks like any ajaxload :o) – Whiler Sep 15 '11 at 7:57
@Whiler: it looks like the UIActivityIndicator on the iPhone or the NSActivityIndicator on the Mac. – Rudy Velthuis Sep 15 '11 at 10:44
1  
When doing this in Delphi Classic, you should wrap your time-consuming action in a try block and set the screen cursor back in the finally section. Otherwise an exception in the time-consuming activity leaves the cursor in the hour glass state. – Larry Lustig Sep 16 '11 at 15:41
show 3 more comments
feedback

2 Answers

up vote 1 down vote accepted

Like @mjn pointed out, the glass hour cursor is no more the only wait pattern you can utilize.

For example, in Silverlight/WPF, you can use a busy indicator control, http://www.codeproject.com/KB/silverlight/SilverlightBusyIndicator.aspx

So you may try to do something similar inside FireMonkey. There may be a similar control for you to use already, or you can write your own.

link|improve this answer
feedback

FireMonkey TScreen has no Cursor property, but global Platform instance has a SetCursor method:

uses FMX.Platform, System.UITypes;

... Platform.SetCursor(nil, crHourGlass); try ... finally Platform.SetCursor(nil, crDefault); end;

link|improve this answer
I just try your script... It works as long as the script is not over, and you don't call ProcessMessages... Platform.SetCursor(nil, crHourGlass); Sleep(3000); Beep; while (not CheckBox1.IsChecked) do begin Application.ProcessMessages; end; ShowMessage('over'); – Whiler Sep 16 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.