|
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 // ============================ MEMBER FUNCTIONS =============================== |
|
21 |
|
22 // ----------------------------------------------------------------------------- |
|
23 // TVtEngRenderingOptionsDP::TVtEngRenderingOptionsDP |
|
24 // C++ constructor |
|
25 // ----------------------------------------------------------------------------- |
|
26 // |
|
27 inline TVtEngRenderingOptionsDP::TVtEngRenderingOptionsDP( |
|
28 MVtEngFrameObserver& aObserver, |
|
29 RWsSession& aWs, |
|
30 CWsScreenDevice& aScreenDevice, |
|
31 RWindowBase& aWindow, |
|
32 const TRect& aScreenRect, |
|
33 const TRect& aClipRect, |
|
34 const TPoint& aOffset ) : |
|
35 iWs( aWs ), |
|
36 iWsSD( aScreenDevice ), |
|
37 iWindow( aWindow ), |
|
38 iRect( aScreenRect ), |
|
39 iClipRect( aClipRect ), |
|
40 iOffset( aOffset ), |
|
41 iObserver( &aObserver ) |
|
42 { |
|
43 } |
|
44 |
|
45 // ----------------------------------------------------------------------------- |
|
46 // TVtEngRenderingOptionsDSA::TVtEngRenderingOptionsDP |
|
47 // C++ copy constructor |
|
48 // ----------------------------------------------------------------------------- |
|
49 // |
|
50 inline TVtEngRenderingOptionsDP::TVtEngRenderingOptionsDP( |
|
51 const TVtEngRenderingOptionsDP& aOptions ) |
|
52 : iWs( aOptions.iWs ), |
|
53 iWsSD( aOptions.iWsSD ), |
|
54 iWindow( aOptions.iWindow ), |
|
55 iRect( aOptions.iRect ), |
|
56 iClipRect( aOptions.iClipRect ), |
|
57 iOffset( aOptions.iOffset ), |
|
58 iObserver( aOptions.iObserver ) |
|
59 { |
|
60 } |
|
61 |
|
62 // End of File |