javauis/lcdui_akn/lcdui/src/CMIDDefaultBackground.cpp
branchRCL_3
changeset 66 2455ef1f5bbc
parent 19 04becd199f91
equal deleted inserted replaced
65:ae942d28ec0e 66:2455ef1f5bbc
       
     1 /*
       
     2 * Copyright (c) 2003 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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include "CMIDDefaultBackground.h"
       
    22 
       
    23 
       
    24 //
       
    25 // CMIDDefaultBackground
       
    26 //
       
    27 
       
    28 CMIDDefaultBackground* CMIDDefaultBackground::NewL(CCoeControl& aWindow)
       
    29 {
       
    30     CMIDDefaultBackground* self = new(ELeave) CMIDDefaultBackground();
       
    31     CleanupStack::PushL(self);
       
    32     self->ConstructL(aWindow);
       
    33     CleanupStack::Pop(self);
       
    34     return self;
       
    35 }
       
    36 
       
    37 CMIDDefaultBackground::CMIDDefaultBackground()
       
    38 {
       
    39 }
       
    40 
       
    41 void CMIDDefaultBackground::ConstructL(CCoeControl& aWindow)
       
    42 {
       
    43     SetContainerWindowL(aWindow);
       
    44 }
       
    45 
       
    46 CMIDDefaultBackground::~CMIDDefaultBackground()
       
    47 {
       
    48 }
       
    49 
       
    50 //
       
    51 // MMIDComponent
       
    52 //
       
    53 
       
    54 void CMIDDefaultBackground::Dispose()
       
    55 {
       
    56     delete this;
       
    57 }
       
    58 
       
    59 MMIDComponent::TType CMIDDefaultBackground::Type() const
       
    60 {
       
    61     return MMIDComponent::EDefaultBackground;
       
    62 }
       
    63 
       
    64