Location:
LogViewChangeObserver.h
class MLogViewChangeObserver;
This class allows a client of the log engine to observe specific change events within a given view.
Defined in MLogViewChangeObserver
:
HandleLogViewChangeEventAddedL()
, HandleLogViewChangeEventChangedL()
, HandleLogViewChangeEventDeletedL()
virtual void HandleLogViewChangeEventAddedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount)=0;
Handle a change corresponding to a view addition
This method is called when a log event is added to a view. The event maybe recently added, or have existed for some time but only now meet the criteria of this view (i.e satisfy the filter) due to some other change.
|
virtual void HandleLogViewChangeEventChangedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount)=0;
Handle a change corresponding to a view change
This method is called when a log event changes within a view.
|
virtual void HandleLogViewChangeEventDeletedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount)=0;
Handle a change corresponding to a view deletion
This method is called when a log event is removed from a view.
|