2 * Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __MEDOBSRV_H__
20 #define __MEDOBSRV_H__
28 Specifies the mixin protocol for a rich text edit observer.
30 This class is implemented by controls which use a rich text (CRichText) object,
31 when it is possible for the text object to be changed from outside of the
32 control without the control's knowledge.
34 An edit observer is a callback to the control from the CRichText object which
35 it has been set up to observe. The edit observer is set up using CRichText::SetEditObserver().
41 // Observer function called by CRichText to signal changes to the text
42 // buffer within it. A pointer to this function must be passed in to
43 // a CRichText instance by <rich text instance>.SetEditObserver(<ptr>).
44 // aStart is the start position of the edit and aExtent is the number
45 // of characters added or, if negative, deleted after this position.
48 /** Observer function called by the CRichText object when the object is edited
49 to give notification of changes to its text buffer. In this way, the control
50 knows how the text object has changed and can reformat and redraw the text
53 A pointer to the observer object must have been passed in to a CRichText instance
54 using CRichText::SetEditObserver().
56 @param aStart The start position of the edit.
57 @param aExtent The number of characters added or, if negative, deleted after
59 virtual void EditObserver(TInt aStart, TInt aExtent) = 0;