mpxplugins/viewplugins/views/pdplaybackview/src/mpxpdplaybackviewlayout.cpp
changeset 0 ff3acec5bc43
child 21 a1247965635c
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     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:  Layout and graphic factory for Progressive Download Playback View
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <AknsUtils.h>
       
    22 #include <AknUtils.h>
       
    23 #include <barsread.h>
       
    24 #include <gulicon.h>
       
    25 #include <aknlayoutscalable_apps.cdl.h>
       
    26 #include <layoutmetadata.cdl.h>
       
    27 #include <data_caging_path_literals.hrh>
       
    28 #include <mpxpdplaybackview.rsg>
       
    29 #include <centralrepository.h>
       
    30 #include <mpxinternalcrkeys.h>
       
    31 #include <mpxlbxextendedfeatures.h>
       
    32 
       
    33 #include "mpxpdplaybackviewlayout.h"
       
    34 #include "mpxlog.h"
       
    35 
       
    36 using namespace AknLayoutScalable_Apps;
       
    37 
       
    38 
       
    39 // ======== MEMBER FUNCTIONS ========
       
    40 
       
    41 // ---------------------------------------------------------------------------
       
    42 // Two-phased constructor.
       
    43 // ---------------------------------------------------------------------------
       
    44 //
       
    45 CMPXPdPlaybackViewLayout* CMPXPdPlaybackViewLayout::NewL()
       
    46     {
       
    47     CMPXPdPlaybackViewLayout* self = CMPXPdPlaybackViewLayout::NewLC();
       
    48     CleanupStack::Pop( self );
       
    49     return self;
       
    50     }
       
    51 
       
    52 // ---------------------------------------------------------------------------
       
    53 // Two-phased constructor.
       
    54 // ---------------------------------------------------------------------------
       
    55 //
       
    56 CMPXPdPlaybackViewLayout* CMPXPdPlaybackViewLayout::NewLC()
       
    57     {
       
    58     CMPXPdPlaybackViewLayout* self = new ( ELeave ) CMPXPdPlaybackViewLayout();
       
    59     CleanupStack::PushL( self );
       
    60     self->ConstructL();
       
    61     return self;
       
    62     }
       
    63 
       
    64 // ---------------------------------------------------------------------------
       
    65 // Destructor
       
    66 // ---------------------------------------------------------------------------
       
    67 //
       
    68 CMPXPdPlaybackViewLayout::~CMPXPdPlaybackViewLayout()
       
    69     {
       
    70     // Do nothing
       
    71     }
       
    72 
       
    73 // ---------------------------------------------------------------------------
       
    74 // C++ default constructor can NOT contain any code, that
       
    75 // might leave.
       
    76 // ---------------------------------------------------------------------------
       
    77 //
       
    78 CMPXPdPlaybackViewLayout::CMPXPdPlaybackViewLayout()
       
    79     {
       
    80     // Do nothing
       
    81     }
       
    82 
       
    83 // ---------------------------------------------------------------------------
       
    84 // Symbian 2nd phase constructor can leave.
       
    85 // ---------------------------------------------------------------------------
       
    86 //
       
    87 void CMPXPdPlaybackViewLayout::ConstructL()
       
    88     {
       
    89     MPX_FUNC( "CMPXPdPlaybackViewLayout::ConstructL" );
       
    90     }
       
    91 
       
    92 //  End of File