Adding scrollbars to a CEikRichTextEditor
hamishwillee
(Talk | contribs) m (Removed protection from "CS000823 - Adding scrollbars to a rich text editor": Merging into Wiki) |
hamishwillee
(Talk | contribs) m (moved CS000823 - Adding scrollbars to a rich text editor to Adding scrollbars to a CEikRichTextEditor: Merge into wiki.) |
Revision as of 08:28, 17 April 2012
Article Metadata
Tested with
Devices(s): Nokia E90 Communicator
Nokia N95 8GB
Nokia N95 8GB
Compatibility
Platform(s): S60 3rd Edition
S60 3rd Edition, FP1
S60 3rd Edition, FP2
S60 3rd Edition, FP1
S60 3rd Edition, FP2
Article
Keywords: CEikScrollBarFrame, CEikRichTextEditor
Created: tapiolaitinen
(08 Feb 2008)
Last edited: hamishwillee
(17 Apr 2012)
Overview
This code snippet demonstrates how to add scrollbars to a rich text editor.
This snippet can be self-signed.
Header file
CEikRichTextEditor* iEditor;
CEikScrollBarFrame* iScrollBarFrame;
Source file
// Second phase construction.
void CClientAppView::ConstructL(const TRect& aRect)
{
// Create the rich text editor (iEditor)
// (left out for brevity)
// Create the scrollbar for the editor
iScrollBarFrame = iEditor->CreateScrollBarFrameL();
// Set horizontal scrollbar invisible (EOff) and vertical scrollbar
// visible (EOn)
iScrollBarFrame->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff,
CEikScrollBarFrame::EOn);
}
Note: Scrollbars are not included in the inner region of the editor. This must be taken into account when drawing the editor on the screen:
// Called whenever SetExtent(), SetSize(), SetRect(),
// SetCornerAndSize(), or SetExtentToWholeScreen() is
// called on the control.
void CAppView::SizeChanged()
{
TRect r = Rect();
TInt scrollbarWidth = iEditor->ScrollBarFrame()->
ScrollBarBreadth(CEikScrollBar::EVertical);
TInt editorWidth = r.Width() - scrollbarWidth;
TPoint upperLeftCorner = TPoint(0, 0);
iEditor->SetExtent(upperLeftCorner, TSize(editorWidth, r.Height()));
}

