Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef LINEBREAKIMP_H_
17 #define LINEBREAKIMP_H_
21 const TText KZeroWidthSpace = 0x200B;
22 const TText KWhiteSpace = 0x0020;
24 // Forward delcarations.
25 GLREF_C void Panic(TInt aError);
29 Rule for which classes may be broken before.
34 /** Classes that breaks are illegal before, even after spaces. */
36 /** Classes that breaks are legal before, even without spaces. */
41 Range of characters which have a particular line breaking class.
44 struct TLineBreakRange
52 Single-entry line break cache. Saves asking the MLineBreaker for the classes
53 of multiple characters in the same run.
56 class TLineBreakClassCache
59 TLineBreakClassCache(const MLineBreaker& aBreaker): iBreaker(aBreaker), iStart(0), iEnd(0), iClass(0) { }
60 TUint LineBreakClass(TUint aChar);
61 const MLineBreaker& Breaker() const { return iBreaker; }
64 const MLineBreaker& iBreaker;
73 void TestLineBreakTables(void);
78 class TLineBreakClassIterator
81 void Set(const TText* aFirst, const TText* aText, TLineBreakClassCache& aBreaker);
83 /** Returns the pointer to the character that has the class returned by
85 const TText* Ptr() const { return iCurrent; }
86 /** Returns the class of the current character. */
87 TInt Class() const { return iClass; }
88 // Will not go beyond maximum of aLimit
89 // Should not be called with aLimit == Ptr()
90 // Will return EFalse if the limit has been exceeded
91 // aOffset must be 1 or -1
92 TBool Move(const TText* aLimit, const TText* aLimitAfterSpaces,
93 TInt aOffset, TBool& aHasSpaces, TLineBreakClassCache& aBreaker);
95 /** Addres of first character in the string to iterator through */
97 /** Current position within the iteration. */
98 const TText* iCurrent;
99 /** Class of the character at the currrent position. */
107 TInt MoveTextPtr(const TText*& aPtr, const TText* aLimit, TInt aOffset);
110 Class for implementing the Unicode line breaking algorithm
113 class TLineBreakIterator
116 TLineBreakIterator(TLineBreakClassCache& aBreaker,
117 const TText* aText, TInt aLength, TBool aForwards,
118 TInt aMinBreakPos, TInt aMaxBreakPos);
119 TBool IsBreak(TBool aForwards);
120 // Is one side of the potential line break CB class?
121 TBool HasContingentBreak() const;
122 // Get class before the break: useful for CB
123 TInt PreviousClass() const;
124 // Get class after the break: useful for CB
125 TInt NextClass() const;
126 // Are there spaces between the classes: useful for CB
127 TInt HasSpaces() const;
132 // position of iterator at the break
133 TInt BreakPos() const;
134 // position of iterator after the break
135 TInt AfterBreakPos() const;
136 // position of iterator before the break
137 TInt BeforeBreakPos() const;
139 TLineBreakClassCache iBreaker;
143 /** The limit that we are allowed to search beyond space characters. For
144 forwards this will be up to the end of the text, for backwards we may not
145 search beyond the minimum break position because that would mean that the
146 break position returned would be below the minimum. */
147 const TText* iLimitAfterSpaces;
148 TLineBreakClassIterator iBeforeBreak;
149 TLineBreakClassIterator iAfterBreak;
151 /** Holds the address of the lowest point allowed to break at */
152 const TText* iMinBreakPos;
153 /** Holds the address of the highest point allowed to break at */
154 const TText* iMaxBreakPos;
160 TBool HasContingentBreak(TLineBreakIterator& aIterator, TBool aForwards,
161 MContingentLineBreaker& aCbDelegate);
166 TBool HasContingentBreakL(TLineBreakIterator& aIterator, TBool aForwards,
167 MContingentLineBreakerL& aCbDelegate);
172 TBool FindBreak(TLineBreakIterator& aIterator, TBool aForwards,
173 MContingentLineBreaker* aCbDelegate);
178 TBool FindBreakL(TLineBreakIterator& aIterator, TBool aForwards,
179 MContingentLineBreakerL* aCbDelegate);