sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __MEDOBSRV_H__
|
sl@0
|
20 |
#define __MEDOBSRV_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32def.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
|
sl@0
|
26 |
class MEditObserver
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
Specifies the mixin protocol for a rich text edit observer.
|
sl@0
|
29 |
|
sl@0
|
30 |
This class is implemented by controls which use a rich text (CRichText) object,
|
sl@0
|
31 |
when it is possible for the text object to be changed from outside of the
|
sl@0
|
32 |
control without the control's knowledge.
|
sl@0
|
33 |
|
sl@0
|
34 |
An edit observer is a callback to the control from the CRichText object which
|
sl@0
|
35 |
it has been set up to observe. The edit observer is set up using CRichText::SetEditObserver().
|
sl@0
|
36 |
@publishedAll
|
sl@0
|
37 |
@released
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
// Observer function called by CRichText to signal changes to the text
|
sl@0
|
42 |
// buffer within it. A pointer to this function must be passed in to
|
sl@0
|
43 |
// a CRichText instance by <rich text instance>.SetEditObserver(<ptr>).
|
sl@0
|
44 |
// aStart is the start position of the edit and aExtent is the number
|
sl@0
|
45 |
// of characters added or, if negative, deleted after this position.
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
/** Observer function called by the CRichText object when the object is edited
|
sl@0
|
49 |
to give notification of changes to its text buffer. In this way, the control
|
sl@0
|
50 |
knows how the text object has changed and can reformat and redraw the text
|
sl@0
|
51 |
object appropriately.
|
sl@0
|
52 |
|
sl@0
|
53 |
A pointer to the observer object must have been passed in to a CRichText instance
|
sl@0
|
54 |
using CRichText::SetEditObserver().
|
sl@0
|
55 |
|
sl@0
|
56 |
@param aStart The start position of the edit.
|
sl@0
|
57 |
@param aExtent The number of characters added or, if negative, deleted after
|
sl@0
|
58 |
this position. */
|
sl@0
|
59 |
virtual void EditObserver(TInt aStart, TInt aExtent) = 0;
|
sl@0
|
60 |
};
|
sl@0
|
61 |
|
sl@0
|
62 |
#endif
|