|
1 /* |
|
2 * Copyright (c) 2008 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 the License "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: contains mediator domain, category and event ids for raising* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 #ifndef VCXNSPLAYERWRAPPERMEDIATOR_ |
|
21 #define VCXNSPLAYERWRAPPERMEDIATOR_ |
|
22 |
|
23 |
|
24 const TUid KVcxNsVideoCenterMediatorDomain = { 0x05A04D9E }; |
|
25 |
|
26 /** |
|
27 * Category and events for local and stream playback cases. |
|
28 */ |
|
29 const TUid KVcxNsPlayerGeneralCategory = { 0x05A04D9E }; |
|
30 const TInt KVcxNsMediatorEventPlayerLastWatch = 0x1; |
|
31 const TInt KVcxNsMediatorEventPreloadedLastWatch = 0x2; |
|
32 const TInt KVcxNsMediatorPlayerVersion = 1; |
|
33 |
|
34 /** |
|
35 * Category and events for IPTV cases. |
|
36 */ |
|
37 const TUid KVcxNsIPTVGeneralCategory = { 0x102750F7 }; |
|
38 const TInt KVcxNsMediatorEventIPTVLastWatch = 0x1; |
|
39 const TInt KVcxNsMediatorIPTVVersion = 1; |
|
40 |
|
41 /** |
|
42 * Maximum length of the view title, value taken from vcxnsiptvcommon.h. |
|
43 */ |
|
44 const TInt KVcxNsLiveTVMaxTitleName( 272 ); |
|
45 |
|
46 /** |
|
47 * |
|
48 */ |
|
49 class TIPTVMediatorMsg |
|
50 { |
|
51 public: |
|
52 |
|
53 /** |
|
54 * |
|
55 */ |
|
56 TBuf< KVcxNsLiveTVMaxTitleName > iChannelName; |
|
57 |
|
58 /** |
|
59 * |
|
60 */ |
|
61 TBuf< KMaxPath > iIconPath; |
|
62 }; |
|
63 |
|
64 |
|
65 #endif /*VCXNSPLAYERWRAPPERMEDIATOR_*/ |