|
1 /* |
|
2 * Copyright (c) 2009 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: CTvOutBehaviourImpl class declaration. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __TVOUTBEHAVIOURIMPL_H__ |
|
20 #define __TVOUTBEHAVIOURIMPL_H__ |
|
21 |
|
22 // INCLUDE FILES |
|
23 #include <e32base.h> |
|
24 #include "tvoutbehaviour.h" |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * TV Out Behaviour Stub implementation. |
|
30 * |
|
31 * @lib tvoutbehaviour.lib |
|
32 * @since S60 TB9.2 |
|
33 */ |
|
34 NONSHARABLE_CLASS(CTvOutBehaviourImpl) : public CTvOutBehaviour |
|
35 { |
|
36 public: |
|
37 |
|
38 /** |
|
39 * Symbian two phased constructors. |
|
40 * |
|
41 * @since S60 TB9.2 |
|
42 * @param None. |
|
43 * @return CTvOutBehaviourImpl |
|
44 */ |
|
45 static CTvOutBehaviourImpl* NewL(); |
|
46 |
|
47 /** |
|
48 * C++ destructor. |
|
49 */ |
|
50 virtual ~CTvOutBehaviourImpl(); |
|
51 |
|
52 protected: // From CTvOutBehaviour |
|
53 |
|
54 virtual TInt SetTvOutSettings(const TTvOutSettings& aParams); |
|
55 virtual TInt DeActivateSettings(); |
|
56 virtual TUint GetTvOutScreenDevices(); |
|
57 virtual TInt GetTvOutDisplayNumber(); |
|
58 virtual TInt GetTvOutSettings(TTvOutSettings& aParams); |
|
59 virtual TInt SettingsListener(TRequestStatus& aStatus); |
|
60 virtual TInt CancelSettingsListener(); |
|
61 virtual TInt GetTvOutDefaultSettings(TTvOutSettings& aParams); |
|
62 |
|
63 private: |
|
64 |
|
65 CTvOutBehaviourImpl(); |
|
66 }; |
|
67 |
|
68 #endif //__TVOUTBEHAVIOURIMPL_H__ |
|
69 |
|
70 // End of File |
|
71 |