classicui_plat/labels_api/tsrc/src/testsdklabelssubaknpictographcallback.cpp
changeset 45 667edd0b8678
equal deleted inserted replaced
37:89c890c70182 45:667edd0b8678
       
     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:  Test EIKLABEL.H
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "testsdklabelssubaknpictographcallback.h"
       
    20 
       
    21 // ============================ MEMBER FUNCTIONS ===============================
       
    22 // -----------------------------------------------------------------------------
       
    23 // CTestSDKLabelsSubAknPictographCallBack::NewLC
       
    24 // -----------------------------------------------------------------------------
       
    25 CTestSDKLabelsSubAknPictographCallBack* CTestSDKLabelsSubAknPictographCallBack::NewLC()
       
    26     {
       
    27     CTestSDKLabelsSubAknPictographCallBack* self = new (ELeave) CTestSDKLabelsSubAknPictographCallBack;
       
    28     CleanupStack::PushL( self );
       
    29     self->ConstructL();
       
    30     return self;
       
    31     }
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // CTestSDKLabelsSubAknPictographCallBack::~CTestSDKLabelsSubAknPictographCallBack
       
    35 // -----------------------------------------------------------------------------
       
    36 CTestSDKLabelsSubAknPictographCallBack::~CTestSDKLabelsSubAknPictographCallBack()
       
    37     {
       
    38     delete iInterface;
       
    39     }
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // CTestSDKLabelsSubAknPictographCallBack::DrawPictographArea
       
    43 // -----------------------------------------------------------------------------
       
    44 void CTestSDKLabelsSubAknPictographCallBack::DrawPictographArea()
       
    45     {
       
    46     
       
    47     }
       
    48 
       
    49 // -----------------------------------------------------------------------------
       
    50 // CTestSDKLabelsSubAknPictographCallBack::ConstructL
       
    51 // -----------------------------------------------------------------------------
       
    52 void CTestSDKLabelsSubAknPictographCallBack::ConstructL()
       
    53     {
       
    54     iInterface = CAknPictographInterface::NewL( *this, *this);
       
    55     }
       
    56 
       
    57 // -----------------------------------------------------------------------------
       
    58 // CTestSDKLabelsSubAknPictographCallBack::CTestSDKLabelsSubAknPictographCallBack
       
    59 // -----------------------------------------------------------------------------
       
    60 CTestSDKLabelsSubAknPictographCallBack::CTestSDKLabelsSubAknPictographCallBack():CCoeControl()
       
    61     {
       
    62     
       
    63     }
       
    64 
       
    65 // -----------------------------------------------------------------------------
       
    66 // CTestSDKLabelsSubAknPictographCallBack::Interface
       
    67 // -----------------------------------------------------------------------------
       
    68 CAknPictographInterface* CTestSDKLabelsSubAknPictographCallBack::Interface()
       
    69     {
       
    70     return iInterface;
       
    71     }