classicui_plat/personalisation_framework_api/tsrc/src/testdompslnfwbv.cpp
changeset 21 558113899881
parent 14 3320e4e6e8bb
child 22 75713bee6484
child 33 b3425bf29f82
equal deleted inserted replaced
14:3320e4e6e8bb 21:558113899881
     1 /*
       
     2 * Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 *
       
    16 */
       
    17 
       
    18 #include "testdompslnfwbv.h"
       
    19 #include "testdompslnfwbc.h"
       
    20 
       
    21 //==============================CTestPslnFWBaseView===========================
       
    22 //
       
    23 // ---------------------------------------------------------------------------
       
    24 // CTestPslnFWBaseView::ConstructL()
       
    25 // ---------------------------------------------------------------------------
       
    26 //    
       
    27 void CTestPslnFWBaseView::ConstructL()
       
    28     {
       
    29     iContainer = new( ELeave ) CTestPslnFWBaseContainer();
       
    30     }
       
    31 
       
    32 // ---------------------------------------------------------------------------
       
    33 // CTestPslnFWBaseView::NewContainerL()
       
    34 // ---------------------------------------------------------------------------
       
    35 //    
       
    36 void CTestPslnFWBaseView::NewContainerL()
       
    37     {
       
    38     if( iContainer )
       
    39     delete iContainer;
       
    40     iContainer = NULL;
       
    41     iContainer = new ( ELeave )CTestPslnFWBaseContainer;
       
    42     }
       
    43 
       
    44 // ---------------------------------------------------------------------------
       
    45 // CTestPslnFWBaseView::HandleListBoxSelectionL()
       
    46 // ---------------------------------------------------------------------------
       
    47 //   
       
    48 void CTestPslnFWBaseView::HandleListBoxSelectionL()
       
    49     { 
       
    50     }
       
    51 
       
    52 // ---------------------------------------------------------------------------
       
    53 // CTestPslnFWBaseView::GetCaptionL()
       
    54 // ---------------------------------------------------------------------------
       
    55 //   
       
    56 void CTestPslnFWBaseView::GetCaptionL( TDes& /*aCaption*/ ) const
       
    57     {  
       
    58     }
       
    59     
       
    60 // ---------------------------------------------------------------------------
       
    61 // CTestPslnFWBaseView::GetTabTextL()
       
    62 // ---------------------------------------------------------------------------
       
    63 //   
       
    64 void CTestPslnFWBaseView::GetTabTextL( TDes& /*aCaption*/ ) const
       
    65     {   
       
    66     }
       
    67 
       
    68 // ---------------------------------------------------------------------------
       
    69 // CGulIcon* CTestPslnFWBaseView::CreateIconL()
       
    70 // ---------------------------------------------------------------------------
       
    71 //   
       
    72 CGulIcon* CTestPslnFWBaseView::CreateIconL()
       
    73     {
       
    74     return NULL;
       
    75     }
       
    76 
       
    77 // ---------------------------------------------------------------------------
       
    78 // CTestPslnFWBaseView::SetNaviPaneL()
       
    79 // ---------------------------------------------------------------------------
       
    80 //   
       
    81 void CTestPslnFWBaseView::SetNaviPaneL()
       
    82     {
       
    83     CPslnFWBaseView::SetNaviPaneL();
       
    84     }
       
    85 
       
    86 // ---------------------------------------------------------------------------
       
    87 // CTestPslnFWBaseView::CreateNaviPaneContextL()
       
    88 // ---------------------------------------------------------------------------
       
    89 //   
       
    90 void CTestPslnFWBaseView::CreateNaviPaneContextL( TInt aResourceId )
       
    91     {
       
    92     CPslnFWBaseView::CreateNaviPaneContextL( aResourceId );
       
    93     }
       
    94 
       
    95 // ---------------------------------------------------------------------------
       
    96 // CTestPslnFWBaseView::CreateContainerL()
       
    97 // ---------------------------------------------------------------------------
       
    98 //   
       
    99 void CTestPslnFWBaseView::CreateContainerL()
       
   100     {
       
   101     CPslnFWBaseView::CreateContainerL();
       
   102     }
       
   103 
       
   104 // ---------------------------------------------------------------------------
       
   105 // CTestPslnFWBaseView::SetNaviPaneL()
       
   106 // ---------------------------------------------------------------------------
       
   107 //   
       
   108 void CTestPslnFWBaseView::SetNaviPaneL( const TInt aTabLocation )
       
   109     {
       
   110     CPslnFWBaseView::SetNaviPaneL( aTabLocation );
       
   111     }
       
   112 
       
   113 // ---------------------------------------------------------------------------
       
   114 // CTestPslnFWBaseView::SetMiddleSoftKeyLabelL()
       
   115 // ---------------------------------------------------------------------------
       
   116 //   
       
   117 void CTestPslnFWBaseView::SetMiddleSoftKeyLabelL( const TInt aResourceId, const TInt aCommandId )
       
   118     {
       
   119     CPslnFWBaseView::SetMiddleSoftKeyLabelL( aResourceId, aCommandId );
       
   120     }
       
   121 
       
   122 // ---------------------------------------------------------------------------
       
   123 // CTestPslnFWBaseView::HandleCommandL()
       
   124 // ---------------------------------------------------------------------------
       
   125 //   
       
   126 void CTestPslnFWBaseView::HandleCommandL( TInt aCommand )
       
   127     {
       
   128     CPslnFWBaseView::HandleCommandL( aCommand );
       
   129     }
       
   130 
       
   131 // ---------------------------------------------------------------------------
       
   132 // CTestPslnFWBaseView::SetTitlePaneL()
       
   133 // ---------------------------------------------------------------------------
       
   134 //   
       
   135 void CTestPslnFWBaseView::SetTitlePaneL( TInt& aResourceId )
       
   136     {
       
   137     CPslnFWBaseView::SetTitlePaneL( aResourceId );
       
   138     }
       
   139 // ---------------------------------------------------------------------------
       
   140 // CTestPslnFWBaseView::Id()
       
   141 // ---------------------------------------------------------------------------
       
   142 //   
       
   143 TUid CTestPslnFWBaseView::Id() const
       
   144     {
       
   145     return KNullUid;
       
   146     }
       
   147