presencesettingsui/src/psuigsplugincontainer.cpp
changeset 26 04ca1926b01c
parent 20 76bddcd072ba
child 28 d9861ae9169c
child 32 32463a6c57b3
equal deleted inserted replaced
20:76bddcd072ba 26:04ca1926b01c
     1 /*
       
     2 * Copyright (c) 2006 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:    Presence Settings UI GS plugin container implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <psuigspluginrsc.rsg>
       
    23 #include <aknlists.h>
       
    24 #include "psuigsplugincontainer.h"
       
    25 #include "psuigspluginmodel.h"
       
    26 #include "psuigsplugin.h"
       
    27 #include "psuigspluginids.hrh"
       
    28 #include <csxhelp/pre.hlp.hrh>
       
    29 
       
    30 // ========================= MEMBER FUNCTIONS ================================
       
    31 
       
    32 // ---------------------------------------------------------------------------
       
    33 // CPSUIGSPluginContainer::CPSUIGSPluginContainer()
       
    34 // Default constructor.
       
    35 // ---------------------------------------------------------------------------
       
    36 //
       
    37 CPSUIGSPluginContainer::CPSUIGSPluginContainer( CPSUIGSPlugin* aView )
       
    38     : iView ( aView )
       
    39     {
       
    40     }
       
    41     
       
    42 // ---------------------------------------------------------------------------
       
    43 // CPSUIGSPluginContainer::ConstructL(const TRect& aRect)
       
    44 // Symbian OS phase 2 constructor
       
    45 // ---------------------------------------------------------------------------
       
    46 //
       
    47 void CPSUIGSPluginContainer::ConstructL( const TRect& /*aRect*/ )
       
    48     {
       
    49     }
       
    50 
       
    51 // ---------------------------------------------------------------------------
       
    52 // CPSUIGSPluginContainer::~CPSUIGSPluginContainer()
       
    53 // Destructor
       
    54 // ---------------------------------------------------------------------------
       
    55 //
       
    56 CPSUIGSPluginContainer::~CPSUIGSPluginContainer()
       
    57     {
       
    58     }
       
    59 
       
    60 // ---------------------------------------------------------------------------
       
    61 // CPSUIGSPluginContainer::SetEmptyTextsToListboxL()
       
    62 // See header for details. 
       
    63 // ---------------------------------------------------------------------------
       
    64 //
       
    65 void CPSUIGSPluginContainer::SetEmptyTextsToListboxL()
       
    66     {
       
    67     }
       
    68 
       
    69 // -----------------------------------------------------------------------------
       
    70 // CPSUIGSPluginContainer::GetHelpContext()
       
    71 // See header for details.
       
    72 // -----------------------------------------------------------------------------
       
    73 //
       
    74 void CPSUIGSPluginContainer::GetHelpContext( TCoeHelpContext& aContext ) const
       
    75     {
       
    76     aContext.iMajor = TUid::Uid( PSUIGSPluginDllUid );
       
    77     aContext.iContext = KPRE_HLP_LIST_VIEW;
       
    78     }
       
    79     
       
    80 // End of File