EXPORT_C void CAknPasswordSettingPage::SizeChanged()
	{
	StandardSettingPageLayout();  // Must be part of any re-implementation
	
    iSecretEditorLayoutRect.LayoutRect( 
            CAknSettingPage::SettingItemContentRect( EFalse ),
            AknLayoutScalable_Avkon::setting_code_pane_copy1() );

    TRect editorRect = iSecretEditorLayoutRect.Rect();

	iHorizontalShadow.LayoutRect(editorRect, 
		AKN_LAYOUT_WINDOW_Code_time_and_date_entry_pane_elements_Line_1);
	iVerticalShadow.LayoutRect(editorRect, 
		AKN_LAYOUT_WINDOW_Code_time_and_date_entry_pane_elements_Line_2);
	iOutlineFrame.LayoutRect(editorRect, 
		AKN_LAYOUT_WINDOW_Code_time_and_date_entry_pane_elements_Line_3);

    AknLayoutUtils::LayoutSecretEditor( ( CEikSecretEditor * )EditorControl(), 
    editorRect, AknLayoutScalable_Avkon::setting_code_pane_t1_copy1() );

	TRAP_IGNORE(((CEikSecretEditor*)EditorControl())->SetSkinTextColorL(EAknsCIQsnTextColorsCG26));

    TAknLayoutRect layoutRect;
    layoutRect.LayoutRect(
        editorRect,
        AknLayoutScalable_Avkon::input_focus_pane_cp2_copy1() );
    TRect editorFrameRect( layoutRect.Rect() );
    
    layoutRect.LayoutRect(
        editorFrameRect,
        AknLayoutScalable_Avkon::set_opt_bg_pane_g1_copy1() );
    
    SetEditedItemFrameRects( editorFrameRect, layoutRect.Rect() );
    
    layoutRect.LayoutRect(
        editorRect,
        AknLayoutScalable_Avkon::indicator_popup_pane_cp6() );
    SetEditorIndicatorRect( layoutRect.Rect() );
	}
EXPORT_C void CAknSliderSettingPage::SizeChanged(void)
{
  StandardSettingPageLayout();
  AknLayoutUtils::LayoutControl(EditorControl(),Rect(),TAknWindowLineLayout::TAknWindowLineLayout(0x127));
}
EXPORT_C CAknSlider* CAknSliderSettingPage::SliderControl(void)
{
  return (CAknSlider*)EditorControl();
}
CAknSingleGraphicPopupMenuStyleListBox* CAknFileSettingPage::FileControl(void)
{
    return (CAknSingleGraphicPopupMenuStyleListBox*)EditorControl();
}
void CAknFileSettingPage::SizeChanged(void)
{
    StandardSettingPageLayout();
    AknLayoutUtils::LayoutControl(EditorControl(),Rect(),ELayoutEmpty,4,30,ELayoutEmpty,ELayoutEmpty,168,104);
    iOutlineFrame.LayoutRect(Rect(),0xd7,3,29,ELayoutEmpty,ELayoutEmpty,170,106);
}