|
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 TVTENGRENDERCONFIGDP_H |
|
21 #define TVTENGRENDERCONFIGDP_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "TVtEngRenderConfig.h" |
|
25 #include "TVtEngRenderingDP.h" |
|
26 #include <posting_surface.h> |
|
27 |
|
28 // FORWARD DECLARATIONS |
|
29 |
|
30 class MVtEngFrameObserver; |
|
31 class RWsSession; |
|
32 class CWsScreenDevice; |
|
33 class RWindowBase; |
|
34 |
|
35 // CLASS DECLARATION |
|
36 |
|
37 /** |
|
38 * Configuration for representation of local or remote video. |
|
39 * Used only internally. |
|
40 * |
|
41 * @lib videoteleng |
|
42 * @since 2.6 |
|
43 */ |
|
44 NONSHARABLE_CLASS( TVtEngRenderConfigDP ) : public TVtEngRenderConfig |
|
45 { |
|
46 public: // new functions |
|
47 |
|
48 TVtEngRenderConfigDP(); |
|
49 |
|
50 TVtEngRenderConfigDP( const TVtEngRenderingOptionsDP& aOptions ); |
|
51 |
|
52 TVtEngRenderConfigDP& operator=( const TVtEngRenderConfig& aConfig ); |
|
53 |
|
54 public: // data |
|
55 // Background color value. This color is filled to areas that are not |
|
56 // covered by the image. |
|
57 TUint iBackGround; |
|
58 }; |
|
59 |
|
60 #include "TVtEngRenderConfigDP.inl" |
|
61 |
|
62 #endif // TVTENGRENDERCONFIGDP_H |
|
63 |
|
64 // End of File |