idlefw/plugins/pslnactiveidleplugin/src/gsactiveidleplugincontainer.cpp
branchRCL_3
changeset 8 d0529222e3f0
parent 4 1a2a00e78665
child 11 bd874ee5e5e2
equal deleted inserted replaced
4:1a2a00e78665 8:d0529222e3f0
     1 /*
       
     2 * Copyright (c) 2005-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:  Psln Active Idle settings plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "gsactiveidleplugincontainer.h"
       
    20 
       
    21 // ---------------------------------------------------------------------------
       
    22 // CGSActiveIdlePluginContainer::ConstructL()
       
    23 //
       
    24 // Symbian OS two phased constructor.
       
    25 // ---------------------------------------------------------------------------
       
    26 //
       
    27 void CGSActiveIdlePluginContainer::ConstructL(const TRect& aRect)
       
    28 {
       
    29     CreateWindowL(); // Makes the control a window-owning control
       
    30     SetRect(aRect);
       
    31     ActivateL();
       
    32 }
       
    33 
       
    34 // ---------------------------------------------------------------------------
       
    35 // CGSActiveIdlePluginContainer::~CGSActiveIdlePluginContainer()
       
    36 //
       
    37 // Destructor.
       
    38 // ---------------------------------------------------------------------------
       
    39 //
       
    40 CGSActiveIdlePluginContainer::~CGSActiveIdlePluginContainer()
       
    41 {
       
    42 }
       
    43 
       
    44 CGSActiveIdlePluginContainer::CGSActiveIdlePluginContainer()
       
    45 {
       
    46 }
       
    47 
       
    48 void CGSActiveIdlePluginContainer::SizeChanged()
       
    49 {
       
    50 }
       
    51 
       
    52 TInt CGSActiveIdlePluginContainer::CountComponentControls() const
       
    53 {
       
    54     return 0;
       
    55 }
       
    56 
       
    57 CCoeControl* CGSActiveIdlePluginContainer::ComponentControl(TInt /*aIndex*/ ) const
       
    58 {
       
    59     return NULL;
       
    60 }
       
    61 
       
    62 // End of File.