class TBidiText |
This class works as a replacement for HBufC in those cases where a small amount of text is being formatted simply. The text must be all of one style and broken into lines of all the same length. The number of lines and the text itself is specified on construction, and the text may then be re-broken, re-truncated and re-drawn with non-leaving functions.
Protected Member Functions | |
---|---|
TBidiText () |
Private Member Functions | |
---|---|
TInt | DoWrapText ( TInt , const CFont &, const MLineBreaker *, TInt , TText *&, TInt &, TInt16 *) |
Public Member Enumerations | |
---|---|
enum | TDirectionality { ELeftToRight = 0, ERightToLeft = 1 } |
enum | TPanicCodes { EPanicRunArrayNull } |
IMPORT_C TDirectionality | Directionality | ( | ) | const |
Returns the directionality of the text.
IMPORT_C TPtrC | DisplayText | ( | ) | const |
Returns the text as prepared for display, provided that WrapText has been called. If WrapText has not been called, a panic will result.
TInt | DoWrapText | ( | TInt | aWrappingWidth, |
const CFont & | aFont, | |||
const MLineBreaker * | aBreaker, | |||
TInt | aMaxLines, | |||
TText *& | aOutputText, | |||
TInt & | aNumLines, | |||
TInt16 * | aLineWidthArray | |||
) | const [private] |
IMPORT_C void | DrawText | ( | CGraphicsContext & | aGc, |
const TPoint & | aLeft | |||
) | const |
Draws the first line of the text. WrapText must have been called already. Alignment is taken from the directionality of the text.
CGraphicsContext & aGc | The graphics context to draw the text to. The graphics context's font is assumed to have been set to the same font that was passed to the previous call to WrapText. |
const TPoint & aLeft | The left extreme of the baseline. Note that this should not be at the very edge of the available space, or characters such as "W" with left side bearings may be truncated. |
IMPORT_C void | DrawText | ( | CGraphicsContext & | aGc, |
const TPoint & | aLeft, | |||
TInt | aBaseLineSpacing, | |||
CGraphicsContext::TTextAlign | aAlignment | |||
) | const |
Draws all of the text. WrapText must have been called already.
CGraphicsContext & aGc | The graphics context to draw the text to. The graphics context's font is assumed to have been set to the same font that was passed to the previous call to WrapText. |
const TPoint & aLeft | The left extreme of the baseline. Note that this should not be at the very edge of the available space, or characters such as "W" with left side bearings may be truncated. |
TInt aBaseLineSpacing | The spacing between each line. If 0, only the first line is drawn. |
CGraphicsContext::TTextAlign aAlignment | How to position the text horizontally. |
IMPORT_C void | DrawText | ( | CGraphicsContext & | aGc, |
const TPoint & | aLeft, | |||
TInt | aBaseLineSpacing | |||
) | const |
Draws all of the text. Alignment is taken from the directionality of the text. WrapText must have been called already.
CGraphicsContext & aGc | The graphics context to draw the text to. The graphics context's font is assumed to have been set to the same font that was passed to the previous call to WrapText. |
const TPoint & aLeft | The left extreme of the baseline. Note that this should not be at the very edge of the available space, or characters such as "W" with left side bearings may be truncated. |
TInt aBaseLineSpacing | The spacing between each line. If 0, only the first line is drawn. |
IMPORT_C TPtrC | LineOfDisplayText | ( | TInt | aLine, |
TInt & | aWidthInPixels | |||
) | const |
Returns the text as prepared for display, provided that WrapText has been called. If WrapText has not been called, a panic will result.
IMPORT_C TSize | MinimumSize | ( | TInt | aWrappingWidth, |
const CFont & | aFont, | |||
TInt | aLineGap, | |||
TInt | aMaxLines = -1, | |||
const MLineBreaker * | aBreaker = NULL | |||
) | const |
Calculate the minimum size needed to draw the current text, given the specified wrapping width, font, and line gap. Calling this method will not rewrap the object's text.
TInt aWrappingWidth | The maximum width of the text in pixels. Note that this distance should be slightly less than the available width to allow for characters such as "W" which can have side-bearings that leak into the margins. |
const CFont & aFont | The font that will provide the character metrics. |
TInt aLineGap | The number of empty pixels between two lines of text. Note that this is not the same as the baseline spacing, which is the font height plus the line gap. |
TInt aMaxLines = -1 | Number of lines to restrict wrapping to. The truncation character will be used if the text is too long for this number of lines. The number of lines wrapped to may be greater than the figure passed to NewL, and that figure will be used if the number of lines is specified as -1. If 0 (zero) is specified no limit is applied. |
const MLineBreaker * aBreaker = NULL | An object for breaking the lines. May be NULL for default behaviour. |
IMPORT_C TBidiText * | NewL | ( | TInt | aReservedMaxLength, |
TInt | aMaxLines | |||
) | [static] |
Creates a bidirectional text object with enough room for up to aReservedMaxLength number of characters. The number of characters that will actually fit (when calling SetText() ) might be slightly less than aReservedMaxLength, as each change between a left-to-right and a right-to-left sub-string (and the other way around) needs about two characters worth of memory.
IMPORT_C TBidiText * | NewL | ( | const TDesC & | aText, |
TInt | aMaxLines | |||
) | [static] |
Creates a bidirectional text object with directionality determined by the text itself. Use this for text that has been obtained from a resource file.
IMPORT_C TBidiText * | NewL | ( | const TDesC & | aText, |
TInt | aMaxLines, | |||
TDirectionality | aDirectionality | |||
) | [static] |
Creates a bidirectional text object with directionality determined by aDirectionality. Use this for text that has come from user input.
const TDesC & aText | The text in logical order. |
TInt aMaxLines | The maximum number of lines that this text will need to be split into. Must be at least 1, but should not be too large, as each potential line takes an extra 8 bytes of memory. |
TDirectionality aDirectionality | Direction to use. |
IMPORT_C TInt | NumberOfLinesInDisplayText | ( | ) | const |
Reports the number of lines in the text to be drawn.
WrapText must have been called already.
IMPORT_C TDirectionality | ScriptDirectionality | ( | TLanguage | aLanguage | ) | [static] |
Returns the directionality of a given language.
TLanguage aLanguage | Language. |
IMPORT_C TInt | SetText | ( | const TDesC & | aText, |
RRunInfoArray & | aRunInfoArray | |||
) |
Sets the text of the bidirectional text object with directionality determined by the text itself. Use this for text that has been obtained from a resource file.
const TDesC & aText | The text in logical order. |
RRunInfoArray & aRunInfoArray |
IMPORT_C TInt | SetText | ( | const TDesC & | aText, |
TDirectionality | aDirectionality, | |||
RRunInfoArray & | aRunInfoArray | |||
) |
Sets the text of the bidirectional text with directionality determined by aDirectionality. Use this for text that has come from user input.
const TDesC & aText | The text in logical order. |
TDirectionality aDirectionality | Direction to use. |
RRunInfoArray & aRunInfoArray |
IMPORT_C void | SetTruncationChar | ( | TChar | aTruncateWith | ) |
Sets the character that will be added at the end of the text if the whole text cannot fit into the space specified.
TChar aTruncateWith | The truncation char. |
IMPORT_C TPtrC | Text | ( | ) | const |
Returns the original logically-ordered text supplied in the constructor.
IMPORT_C TDirectionality | TextDirectionality | ( | const TDesC & | aText, |
TBool * | aFound = 0 | |||
) | [static] |
Reports the implicit directionality of a piece of text.
const TDesC & aText | The text to be examined. |
TBool * aFound = 0 | If non-null, returns ETrue if there were any strongly directional characters and EFalse if there were none. If a piece of text is spread over several descriptors, They need to be queried in sequence until one returns ETrue in aFound. |
IMPORT_C void | WrapText | ( | TInt | aWrappingWidth, |
const CFont & | aFont, | |||
const MLineBreaker * | aBreaker, | |||
TInt | aMaxLines | |||
) |
Prepares the visually-ordered text according to the wrapping width and font specified. Text cannot be drawn until this has been done.
TInt aWrappingWidth | The maximum width of the text in pixels. Note that this distance should be slightly less than the available width to allow for characters such as "W" which can have side-bearings that leak into the margins. |
const CFont & aFont | The font that will provide the character metrics. |
const MLineBreaker * aBreaker | An object for breaking the lines. May be NULL for default behaviour. |
TInt aMaxLines | Number of lines to restrict wrapping to. The truncation character will be used if the text is too long for this number of lines. The number of lines wrapped to may not be greater than the figure passed to NewL. |
IMPORT_C void | WrapText | ( | TInt | aWrappingWidth, |
const CFont & | aFont, | |||
const MLineBreaker * | aBreaker = NULL | |||
) |
Prepares the visually-ordered text according to the wrapping width and font specified. Text cannot be drawn until this has been done.
TInt aWrappingWidth | The maximum width of the text in pixels. Note that this distance should be slightly less than the available width to allow for characters such as "W" which can have side-bearings that leak into the margins. |
const CFont & aFont | The font that will provide the character metrics. |
const MLineBreaker * aBreaker = NULL | An object for breaking the lines. May be NULL for default behaviour. |
IMPORT_C TInt | WrappingWidth | ( | ) | const |
Returns the wrapping width previously supplied to WrapText.
Overall directionality of the text.
ELeftToRight = 0 |
Text reading begins on the left. |
ERightToLeft = 1 |
Text reading begins on the right. |
Class specific panic codes This enum has been replaced by TBidiPanic.
EPanicRunArrayNull |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.