vtengines/videoteleng/Inc/Media/TVtEngRendering.h
changeset 0 ed9695c8bcbe
equal deleted inserted replaced
-1:000000000000 0:ed9695c8bcbe
       
     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 TVTENGRENDERING_H
       
    21 #define TVTENGRENDERING_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 *  Configuration for representation of local or remote video
       
    37 *  via window server.
       
    38 *
       
    39 *  @lib videoteleng
       
    40 *  @since 2.6
       
    41 */
       
    42 NONSHARABLE_CLASS( TVtEngRenderingOptions )
       
    43     {
       
    44     public: // constructor
       
    45 
       
    46         /**
       
    47         * C++ constructor
       
    48         */
       
    49         inline TVtEngRenderingOptions(
       
    50             MVtEngFrameObserver& aObserver,
       
    51             TSize aRect );
       
    52 
       
    53         /**
       
    54         * copy constructor
       
    55         */
       
    56         inline TVtEngRenderingOptions( const TVtEngRenderingOptions& aOptions );
       
    57 
       
    58     private:
       
    59         TVtEngRenderingOptions& operator=( const TVtEngRenderingOptions& );
       
    60 
       
    61     public:
       
    62         // Frame observer
       
    63         MVtEngFrameObserver* iObserver;
       
    64 
       
    65         // Bitmap size
       
    66         TSize iSize;
       
    67     };
       
    68 
       
    69 #include <tvtengrendering.inl>
       
    70 
       
    71 #endif      // TVTENGRENDERING_H
       
    72 
       
    73 // End of File