vtengines/videoteleng/Inc/Media/TVtEngRenderingDP.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 
       
    20 #ifndef TVTENGRENDERINGDP_H
       
    21 #define TVTENGRENDERINGDP_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32std.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 
       
    28 class MVtEngFrameObserver;
       
    29 class RWsSession;
       
    30 class CWsScreenDevice;
       
    31 class RWindowBase;
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 /**
       
    36 *  Display posting access rendering definitions.
       
    37 *
       
    38 *  @lib videoteleng
       
    39 *  @since 2.6
       
    40 */
       
    41 NONSHARABLE_CLASS( TVtEngRenderingOptionsDP )
       
    42     {
       
    43     public: // constructor
       
    44 
       
    45         /**
       
    46         * C++ constructor
       
    47         */
       
    48         inline TVtEngRenderingOptionsDP(
       
    49             MVtEngFrameObserver& aObserver,
       
    50             RWsSession& aWs,
       
    51             CWsScreenDevice& aScreenDevice,
       
    52             RWindowBase& aWindow,
       
    53             const TRect& aScreenRect,
       
    54             const TRect& aClipRect,
       
    55             const TPoint& aOffset );
       
    56 
       
    57         /**
       
    58         * C++ copy constructor.
       
    59         * @param aOptions options to be copied to this instance.
       
    60         */
       
    61         inline TVtEngRenderingOptionsDP(
       
    62             const TVtEngRenderingOptionsDP& aOptions );
       
    63 
       
    64     private:
       
    65         TVtEngRenderingOptionsDP& operator=(
       
    66             const TVtEngRenderingOptionsDP& );
       
    67 
       
    68     public: // data members
       
    69         RWsSession&      iWs;
       
    70         CWsScreenDevice& iWsSD;
       
    71         RWindowBase&     iWindow;
       
    72         TRect            iRect;
       
    73         TRect            iClipRect;
       
    74         TPoint           iOffset;
       
    75 
       
    76         // Frame observer
       
    77         MVtEngFrameObserver* iObserver;
       
    78     };
       
    79 
       
    80 #include <tvtengrenderingdp.inl>
       
    81 
       
    82 #endif      // TVTENGRENDERINGDP_H
       
    83 
       
    84 // End of File