Location:
calprogresscallback.h
class MCalProgressCallBack;
A call back class to show the progress of long-running operations.
When a long-running operation is carried out on the instance view or the entry view, this class is used to signal its progress, and when the function is complete.
Defined in MCalProgressCallBack
:
Completed()
, NotifyProgress()
, Progress()
virtual void Progress(TInt aPercentageCompleted)=0;
Progress callback.
This calls the observing class with the percentage complete of the current operation.
|
virtual void Completed(TInt aError)=0;
Progress callback.
This calls the observing class when the current operation is finished.
|
virtual TBool NotifyProgress()=0;
Asks the observing class whether progress callbacks are required. This is called once only to check if callbacks are enabled.
|