Update contrib.
2 * Copyright (c) 2003-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.
15 * FORM Cursor Navigation header file holding policy interface class.
25 #include <frmconst_partner.h>
28 class CTmViewAnchoredLayout;
32 This policy interface class maintains the cursor position and sets the
33 policy for its movement.
37 class MCursorPositioningPolicy
42 //-- Interface enumerations ---------------------------------------------
45 /** Types of delete operation. This is used when...???
56 /** Types of reformatting. This is used when...???
60 ETextChangeUndefined = 0,
61 /** Change that causes no change in cursor position. */
62 ETextChangeNonLocal = 1,
63 /** Change that moves the cursor to its trailing edge. */
64 ETextChangeTyping = 2,
66 // Maybe several more.
72 Hint for positioning the visual cursor. Describes properties of the
73 editing operation that is most likely to happen next.
77 EPosHintUndefined = 0,
78 /** Left to right typing expected. */
80 /** Right to left typing expected. */
83 // Maybe several more.
90 //-- Object creation/setup API ------------------------------------------
94 virtual ~MCursorPositioningPolicy() {}
97 Sets the document/layout object on which all the cursor navigation will
100 virtual void SetTmLayout(CTmViewAnchoredLayout* aLayout) = 0;
103 //-- Cursor positioning API ---------------------------------------------
106 Gets the cursor position for display and insertion.
107 @return TTmDocPos value holding cursor document position.
109 virtual const TTmDocPos& Pos() const = 0;
112 Sets the cursor position explicitly.
113 @param aNewPos New position cursor is to be moved to.
115 virtual void SetPos(const TTmDocPos& aNewPos) = 0;
119 @return ETrue if successful, EFalse otherwise e.g. no formatting
121 virtual void PosXyL(TPoint& aXy) const = 0;
124 Sets the X, Y co-ordinates to jump to.
125 @param aXy Layout co-ordinates to approx. move the cursor to.
127 @return ETrue if successful, EFalse otherwise e.g. no formatting
129 virtual void SetPosByXyL(TPoint& aNewXy) = 0;
132 Allows change of cursor position in response to a hint as to
134 @param aHint Text directional hint from client.
136 virtual void SetPositioningHintL(TPosHint aHint) = 0;
139 Suggests a new latent X,Y position for Up/Down operations/scrolls.
140 @param aX X Layout co-ordinate for latent position of cursor.
142 virtual void SetLatentX(TInt aX) = 0;
145 Suggests a new latent X,Y position for Up/Down operations/scrolls.
146 @param aY Y Layout co-ordinate for latent position of cursor.
148 virtual void SetLatentY(TInt aY) = 0;
151 Suggests a new latent X,Y position for Up/Down operations/scrolls.
152 @param aXy X,Y Layout co-ordinate for latent position of cursor.
154 virtual const TPoint& LatentXy() const = 0;
157 Suggests a new latent X,Y position for Up/Down operations/scrolls.
158 @param aXy X,Y Layout co-ordinate for latent position of cursor.
160 virtual void SetLatentXy(const TPoint& aXy) = 0;
165 virtual const TPoint& UpdateLatentXyL() = 0;
168 //--- Cursor navigation API ---------------------------------------------
172 Moves the cursor up or down a line.
173 @param aUp ETrue if wish to move up, EFalse to go down.
174 @return TCursorMove Actual movement that took place.
176 virtual TCursorMove UpDownL(TBool aUp) = 0;
179 Moves the cursor left or right a character position.
180 @param aDown ETrue if wish to move left, EFalse to go right.
181 @return TCursorMove Actual movement that took place.
183 virtual TCursorMove LeftRightL(TBool aLeft) = 0;
186 Moves the cursor to the start or to the end of the line.
187 @param aStart ETrue if wish to move to the start, EFalse to go to the end.
188 @return TCursorMove Actual movement that took place.
190 virtual TCursorMove LineStartEndL(TBool aStart) = 0;
193 //--- Cursor reactionary API to changes ---------------------------------
197 Responds to total change of formatting.
199 virtual void HandleGlobalReformatL() = 0;
202 Responds to partial change of formatting.
206 @param aParaFormatChg ?
209 virtual void HandleReformatL(TInt aStart, TInt aOldEnd,
210 TInt aNewEnd, TBool aParaFormatChg, TTextChangeType aChgType) = 0;
213 //-- Misc/Unknown API ---------------------------------------------------
217 Gets the cursor position for delete. ???
222 virtual void GetDeletePosition(TDeleteType aDelType, TInt& aStart,
223 TInt& aEnd) const = 0;
226 Place holder for future expansion when if more virtual methods
229 virtual void* ExtendedInterface(TUid aInterfaceId) = 0;
234 #endif // __FRMCURS_H__