Location:
FRMPAGE.H
class MPaginateObserver;
An abstract class which must be mixed with application calling the active object. It specifies the protocol for a pagination
observer. A pagination observer may be used when paginating a document in the background (using CTextPaginator::PaginateCompleteDocumentL()
). It notifies the client on page completion, document completion, and on errors.
The observer is set up using the function CTextPaginator::SetObserver()
.
Defined in MPaginateObserver
:
NotifyCompletion()
, NotifyError()
, NotifyPageCompletion()
virtual void NotifyCompletion()=0;
Notifies the client on completion of document pagination.
virtual void NotifyError(TInt anErrorCode)=0;
Notifies the client when a leave is trapped or when the pagination is cancelled. Implements error handling.
|
virtual void NotifyPageCompletion(TInt aCurrentPageNum)=0;
Called by the paginator when each page has been completed.
|