vtengines/videoteleng/Inc/Media/TVtEngRenderingNGA.h
changeset 0 ed9695c8bcbe
child 24 f15ac8e65a02
equal deleted inserted replaced
-1:000000000000 0:ed9695c8bcbe
       
     1 /*
       
     2 * Copyright (c) 2004-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:  Class for NGA Rendering.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef TVTENGRENDERINGNGA_H
       
    19 #define TVTENGRENDERINGNGA_H
       
    20 
       
    21 //  INCLUDES
       
    22 #include <e32std.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 
       
    26 class MVtEngFrameObserver;
       
    27 class RWindow;
       
    28 class RWsSession;
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 *  Direct screen access rendering definitions.
       
    33 *
       
    34 *  @lib videoteleng
       
    35 *  @since 2.6
       
    36 */
       
    37 NONSHARABLE_CLASS( TVtEngRenderingOptionsNGA )
       
    38     {
       
    39     public: // constructor
       
    40 
       
    41         /**
       
    42         * C++ constructor
       
    43         */
       
    44         inline TVtEngRenderingOptionsNGA(
       
    45             MVtEngFrameObserver& aObserver,
       
    46             RWindow& aWindow, RWsSession& aWs );
       
    47 
       
    48         /**
       
    49         * C++ copy constructor.
       
    50         * @param aOptions options to be copied to this instance.
       
    51         */
       
    52         inline TVtEngRenderingOptionsNGA(
       
    53             const TVtEngRenderingOptionsNGA& aOptions );
       
    54 
       
    55     private:
       
    56         TVtEngRenderingOptionsNGA& operator=(
       
    57             const TVtEngRenderingOptionsNGA& );
       
    58 
       
    59     public: // data members
       
    60         RWindow&    iWindow;
       
    61         
       
    62         RWsSession&      iWs;
       
    63         
       
    64         // Frame observer
       
    65         MVtEngFrameObserver* iObserver;
       
    66     };
       
    67 
       
    68 #include <tvtengrenderingnga.inl>
       
    69 
       
    70 #endif      // TVTENGRENDERINGNGA_H
       
    71 
       
    72 // End of File