mpxplugins/viewplugins/views/playbackview/inc/mpxplaybackviewlayout.h
changeset 0 ff3acec5bc43
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:  An interface providing skin and layout data for playback view.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CMPXPLAYBACKVIEWLAYOUT_H
       
    20 #define C_CMPXPLAYBACKVIEWLAYOUT_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include "mpxcommonplaybackviewlayout.h"
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 *  An interface providing skin and layout data for playback view.
       
    29 *
       
    30 *  @lib mpxplaybackview.dll
       
    31 *  @since S60 v3.0
       
    32 */
       
    33 NONSHARABLE_CLASS( CMPXPlaybackViewLayout ) : public CMPXCommonPlaybackViewLayout
       
    34     {
       
    35 public:
       
    36 
       
    37     /**
       
    38      * Two-phased constructor.
       
    39      *
       
    40      * @since 3.0
       
    41      * @return Pointer to newly created object.
       
    42      */
       
    43     static CMPXPlaybackViewLayout* NewL();
       
    44 
       
    45     /**
       
    46      * Two-phased constructor.
       
    47      *
       
    48      * @since 3.0
       
    49      * @return Pointer to newly created object.
       
    50      */
       
    51     static CMPXPlaybackViewLayout* NewLC();
       
    52 
       
    53     /**
       
    54      * Destructor.
       
    55      */
       
    56     ~CMPXPlaybackViewLayout();
       
    57 
       
    58 private:
       
    59 
       
    60     /**
       
    61      * C++ default constructor.
       
    62      */
       
    63     CMPXPlaybackViewLayout();
       
    64 
       
    65     /**
       
    66      * By default Symbian 2nd phase constructor is private.
       
    67      */
       
    68     void ConstructL();
       
    69     };
       
    70 
       
    71 #endif  // C_CMPXPLAYBACKVIEWLAYOUT_H
       
    72 
       
    73 // End of file