os/textandloc/textrendering/textformatting/inc/FRMCURS.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2003-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
* FORM Cursor Navigation header file holding policy interface class.
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef __FRMCURS_H__
sl@0
    21
#define __FRMCURS_H__
sl@0
    22
sl@0
    23
sl@0
    24
#include <frmconst.h>
sl@0
    25
#include <frmconst_partner.h>
sl@0
    26
sl@0
    27
sl@0
    28
class CTmViewAnchoredLayout;
sl@0
    29
class TTmDocPos;
sl@0
    30
sl@0
    31
/**
sl@0
    32
This policy interface class maintains the cursor position and sets the 
sl@0
    33
policy for its movement.
sl@0
    34
@publishedPartner
sl@0
    35
@deprecated
sl@0
    36
*/
sl@0
    37
class MCursorPositioningPolicy
sl@0
    38
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
sl@0
    42
	//-- Interface enumerations ---------------------------------------------
sl@0
    43
sl@0
    44
sl@0
    45
	/** Types of delete operation. This is used when...???
sl@0
    46
	*/
sl@0
    47
	enum TDeleteType
sl@0
    48
		{
sl@0
    49
		EDeleteUndefined = 0,
sl@0
    50
		EDeleteBackspace = 1,
sl@0
    51
		EDeleteForward   = 2,
sl@0
    52
sl@0
    53
		EDeleteLast
sl@0
    54
		};
sl@0
    55
 
sl@0
    56
	/** Types of reformatting. This is used when...???
sl@0
    57
	*/
sl@0
    58
	enum TTextChangeType
sl@0
    59
		{
sl@0
    60
		ETextChangeUndefined = 0,
sl@0
    61
		/** Change that causes no change in cursor position. */
sl@0
    62
		ETextChangeNonLocal  = 1,
sl@0
    63
		/** Change that moves the cursor to its trailing edge. */
sl@0
    64
		ETextChangeTyping    = 2,
sl@0
    65
sl@0
    66
		// Maybe several more.
sl@0
    67
		// ...
sl@0
    68
		ETExtChangeLast
sl@0
    69
	};
sl@0
    70
 
sl@0
    71
	/** 
sl@0
    72
	Hint for positioning the visual cursor. Describes properties of the
sl@0
    73
	editing operation that is most likely to happen next. 
sl@0
    74
	*/
sl@0
    75
	enum TPosHint
sl@0
    76
		{
sl@0
    77
		EPosHintUndefined           = 0,
sl@0
    78
		/** Left to right typing expected. */
sl@0
    79
		EInsertStrongL2R = 1,
sl@0
    80
		/** Right to left typing expected. */
sl@0
    81
		EInsertStrongR2L = 2,
sl@0
    82
sl@0
    83
		// Maybe several more.
sl@0
    84
		//...
sl@0
    85
		EPosHintLast
sl@0
    86
		};
sl@0
    87
sl@0
    88
public:
sl@0
    89
sl@0
    90
	//-- Object creation/setup API ------------------------------------------
sl@0
    91
sl@0
    92
	/**
sl@0
    93
	*/
sl@0
    94
	virtual ~MCursorPositioningPolicy() {}
sl@0
    95
sl@0
    96
	/**
sl@0
    97
	Sets the document/layout object on which all the cursor navigation will 
sl@0
    98
	take place. 
sl@0
    99
	*/
sl@0
   100
	virtual void SetTmLayout(CTmViewAnchoredLayout* aLayout) = 0;
sl@0
   101
sl@0
   102
sl@0
   103
	//-- Cursor positioning API ---------------------------------------------
sl@0
   104
	
sl@0
   105
	/** 
sl@0
   106
	Gets the cursor position for display and insertion. 
sl@0
   107
	@return TTmDocPos value holding cursor document position.
sl@0
   108
	*/
sl@0
   109
	virtual const TTmDocPos& Pos() const = 0;
sl@0
   110
sl@0
   111
	/** 
sl@0
   112
	Sets the cursor position explicitly.
sl@0
   113
	@param aNewPos New position cursor is to be moved to.
sl@0
   114
	*/
sl@0
   115
	virtual void SetPos(const TTmDocPos& aNewPos) = 0;
sl@0
   116
sl@0
   117
sl@0
   118
	/** 
sl@0
   119
	@return ETrue if successful, EFalse otherwise e.g. no formatting	
sl@0
   120
	*/
sl@0
   121
	virtual void PosXyL(TPoint& aXy) const = 0;
sl@0
   122
sl@0
   123
	/** 
sl@0
   124
	Sets the X, Y co-ordinates to jump to. 
sl@0
   125
	@param aXy Layout co-ordinates to approx. move the cursor to.
sl@0
   126
			   On exit
sl@0
   127
	@return ETrue if successful, EFalse otherwise e.g. no formatting	
sl@0
   128
	*/
sl@0
   129
	virtual void SetPosByXyL(TPoint& aNewXy) = 0;
sl@0
   130
sl@0
   131
	/** 
sl@0
   132
	Allows change of cursor position in response to a hint as to 
sl@0
   133
	positioning. 
sl@0
   134
	@param aHint Text directional hint from client.
sl@0
   135
	*/
sl@0
   136
	virtual void SetPositioningHintL(TPosHint aHint) = 0;
sl@0
   137
	
sl@0
   138
	/** 
sl@0
   139
	Suggests a new latent X,Y position for Up/Down operations/scrolls. 
sl@0
   140
	@param aX X Layout co-ordinate for latent position of cursor.
sl@0
   141
	*/
sl@0
   142
	virtual void SetLatentX(TInt aX) = 0;
sl@0
   143
sl@0
   144
	/** 
sl@0
   145
	Suggests a new latent X,Y position for Up/Down operations/scrolls. 
sl@0
   146
	@param aY Y Layout co-ordinate for latent position of cursor.
sl@0
   147
	*/
sl@0
   148
	virtual void SetLatentY(TInt aY) = 0;
sl@0
   149
sl@0
   150
	/** 
sl@0
   151
	Suggests a new latent X,Y position for Up/Down operations/scrolls. 
sl@0
   152
	@param aXy X,Y Layout co-ordinate for latent position of cursor.
sl@0
   153
	*/
sl@0
   154
	virtual const TPoint& LatentXy() const = 0;
sl@0
   155
sl@0
   156
	/** 
sl@0
   157
	Suggests a new latent X,Y position for Up/Down operations/scrolls. 
sl@0
   158
	@param aXy X,Y Layout co-ordinate for latent position of cursor.
sl@0
   159
	*/
sl@0
   160
	virtual void SetLatentXy(const TPoint& aXy) = 0;
sl@0
   161
sl@0
   162
	/** 
sl@0
   163
	@leave 
sl@0
   164
	*/
sl@0
   165
	virtual const TPoint& UpdateLatentXyL() = 0;
sl@0
   166
sl@0
   167
sl@0
   168
	//--- Cursor navigation API ---------------------------------------------
sl@0
   169
	
sl@0
   170
sl@0
   171
	/**
sl@0
   172
	Moves the cursor up or down a line.
sl@0
   173
	@param aUp ETrue if wish to move up, EFalse to go down.
sl@0
   174
	@return TCursorMove Actual movement that took place.
sl@0
   175
	*/
sl@0
   176
	virtual TCursorMove UpDownL(TBool aUp) = 0;
sl@0
   177
sl@0
   178
	/** 
sl@0
   179
	Moves the cursor left or right a character position. 
sl@0
   180
	@param aDown ETrue if wish to move left, EFalse to go right.
sl@0
   181
	@return TCursorMove Actual movement that took place.
sl@0
   182
	*/
sl@0
   183
	virtual TCursorMove LeftRightL(TBool aLeft) = 0;
sl@0
   184
sl@0
   185
	/** 
sl@0
   186
	Moves the cursor to the start or to the end of the line. 
sl@0
   187
	@param aStart ETrue if wish to move to the start, EFalse to go to the end.
sl@0
   188
	@return TCursorMove Actual movement that took place.
sl@0
   189
	*/
sl@0
   190
	virtual TCursorMove LineStartEndL(TBool aStart) = 0;
sl@0
   191
sl@0
   192
sl@0
   193
	//--- Cursor reactionary API to changes ---------------------------------
sl@0
   194
sl@0
   195
sl@0
   196
	/** 
sl@0
   197
	Responds to total change of formatting. 
sl@0
   198
	*/
sl@0
   199
	virtual void HandleGlobalReformatL() = 0;
sl@0
   200
sl@0
   201
	/** 
sl@0
   202
	Responds to partial change of formatting.
sl@0
   203
	@param aStart ?
sl@0
   204
	@param aOldEnd ?
sl@0
   205
	@param aNewEnd ?
sl@0
   206
	@param aParaFormatChg ?
sl@0
   207
	@param aChgType ?
sl@0
   208
	*/
sl@0
   209
	virtual void HandleReformatL(TInt aStart, TInt aOldEnd, 
sl@0
   210
		TInt aNewEnd, TBool aParaFormatChg, TTextChangeType aChgType) = 0;
sl@0
   211
	
sl@0
   212
sl@0
   213
	//-- Misc/Unknown API ---------------------------------------------------
sl@0
   214
sl@0
   215
sl@0
   216
	/** 
sl@0
   217
	Gets the cursor position for delete. ???
sl@0
   218
	@param aDelType ?
sl@0
   219
	@param aStart ?
sl@0
   220
	@param aEnd ?
sl@0
   221
	*/
sl@0
   222
	virtual void GetDeletePosition(TDeleteType aDelType, TInt& aStart, 
sl@0
   223
		TInt& aEnd) const = 0;
sl@0
   224
		
sl@0
   225
	/**
sl@0
   226
	Place holder for future expansion when if more virtual methods 
sl@0
   227
	are requried.
sl@0
   228
	*/
sl@0
   229
	virtual void* ExtendedInterface(TUid aInterfaceId) = 0;
sl@0
   230
sl@0
   231
	};
sl@0
   232
sl@0
   233
sl@0
   234
#endif // __FRMCURS_H__