vtengines/videoteleng/Inc/Media/TVtEngRenderingDSA.h
changeset 18 d9b6a8729acd
parent 4 6dc066157ed4
child 23 c378a0498b84
child 27 dcbddbbaf8fd
equal deleted inserted replaced
4:6dc066157ed4 18:d9b6a8729acd
     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:  Local and remote video rendering configuration.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TVTENGRENDERINGDSA_H
       
    20 #define TVTENGRENDERINGDSA_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32std.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 
       
    27 class MVtEngFrameObserver;
       
    28 class RWsSession;
       
    29 class CWsScreenDevice;
       
    30 class RWindowBase;
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35 *  Direct screen access rendering definitions.
       
    36 *
       
    37 *  @lib videoteleng
       
    38 *  @since 2.6
       
    39 */
       
    40 NONSHARABLE_CLASS( TVtEngRenderingOptionsDSA )
       
    41     {
       
    42     public: // constructor
       
    43 
       
    44         /**
       
    45         * C++ constructor
       
    46         */
       
    47         inline TVtEngRenderingOptionsDSA(
       
    48             MVtEngFrameObserver& aObserver,
       
    49             RWsSession& aWs,
       
    50             CWsScreenDevice& aScreenDevice,
       
    51             RWindowBase& aWindow,
       
    52             const TRect& aScreenRect,
       
    53             const TRect& aClipRect );
       
    54 
       
    55         /**
       
    56         * C++ copy constructor.
       
    57         * @param aOptions options to be copied to this instance.
       
    58         */
       
    59         inline TVtEngRenderingOptionsDSA(
       
    60             const TVtEngRenderingOptionsDSA& aOptions );
       
    61 
       
    62     private:
       
    63         TVtEngRenderingOptionsDSA& operator=(
       
    64             const TVtEngRenderingOptionsDSA& );
       
    65 
       
    66     public: // data members
       
    67         RWsSession&      iWs;
       
    68         CWsScreenDevice& iWsSD;
       
    69         RWindowBase&     iWindow;
       
    70         TRect            iRect;
       
    71         TRect            iClipRect;
       
    72 
       
    73         // Frame observer
       
    74         MVtEngFrameObserver* iObserver;
       
    75     };
       
    76 
       
    77 #include <tvtengrenderingdsa.inl>
       
    78 
       
    79 #endif      // TVTENGRENDERINGDSA_H
       
    80 
       
    81 // End of File