Namespaces
Variants
Actions

How to apply highlighting in richtexteditor

Jump to: navigation, search
Article Metadata

Article
Created: rathodavinash (28 Jun 2007)
Last edited: hamishwillee (30 May 2013)
Richtexteditor offers many functions that can set the text bold, italics, underline, etc...

One such good function is highlighting the text. It's very helpful if we want to show a link (hyperlink) like effect. Additional coding is required with relevent data structures to implement moving from one word to the other or moving from one highlighted word to some other one.

The following function applies/removes highlighting in a CEikRichTextEditor.

void CMyRichTextEditor::SetHighlightOn(TBool aOn)
{
SetSmallFontOn();
iCharFormatMask.SetAttrib(EAttFontHighlightColor);
iCharFormatMask.SetAttrib(EAttFontHighlightStyle);
 
if (aOn)
{
iCharFormat.iFontPresentation.iHighlightColor=TLogicalRgb( TRgb(0,255,255) );
iCharFormat.iFontPresentation.iHighlightStyle=TFontPresentation ::EFontHighlightNormal;
}
else
{
iCharFormat.iFontPresentation.iHighlightColor=KRgbWhite;
iCharFormat.iFontPresentation.iHighlightStyle=TFontPresentation ::EFontHighlightNone;
}
}
This page was last modified on 30 May 2013, at 07:33.
53 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved