photosgallery/viewframework/views/fullscreenview/src/glxfullscreenview.cpp
changeset 0 4e91876724a2
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     1 /*
       
     2 * Copyright (c) 2008-2009 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:    Implementation of fULL-SCREEN view
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include "glxfullscreenview.h" 
       
    24 #include "glxfullscreenviewimp.h"
       
    25 #include <glxtracer.h>
       
    26 #include <glxlog.h>
       
    27 
       
    28 
       
    29 // ======== MEMBER FUNCTIONS ========
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // Two-phased constructor.
       
    33 // ---------------------------------------------------------------------------
       
    34 // 
       
    35 EXPORT_C CGlxFullScreenView* CGlxFullScreenView::NewL(MGlxMediaListFactory* aMediaListFactory,
       
    36                                  const TFullScreenViewResourceIds& aResourceIds,
       
    37                                  TInt aViewUID,
       
    38                                  const TDesC& aTitle)
       
    39     {
       
    40     TRACER("CGlxFullScreenView::NewL()");
       
    41     return CGlxFullScreenViewImp::NewL(aMediaListFactory,
       
    42                                  aResourceIds,
       
    43                                  aViewUID,
       
    44                                  aTitle);
       
    45     }
       
    46 
       
    47 // ---------------------------------------------------------------------------
       
    48 // Two-phased constructor.
       
    49 // ---------------------------------------------------------------------------
       
    50 //
       
    51 EXPORT_C CGlxFullScreenView* CGlxFullScreenView::NewLC(MGlxMediaListFactory* aMediaListFactory,
       
    52                                  const TFullScreenViewResourceIds& aResourceIds,
       
    53                                  TInt aViewUID,
       
    54                                  const TDesC& aTitle)
       
    55     {
       
    56     GLX_LOG_INFO("CGlxFullScreenView::NewLC()");
       
    57     return CGlxFullScreenViewImp::NewLC(aMediaListFactory,
       
    58                                   aResourceIds,
       
    59                                   aViewUID,
       
    60                                   aTitle);
       
    61     }
       
    62 
       
    63 // ---------------------------------------------------------------------------
       
    64 // Destructor
       
    65 // ---------------------------------------------------------------------------
       
    66 //
       
    67 CGlxFullScreenView::~CGlxFullScreenView()
       
    68     {
       
    69     GLX_LOG_INFO("CGlxFullScreenView::~CGlxFullScreenView()");
       
    70     // Do nothing
       
    71     }
       
    72 
       
    73 //  End of File