35
|
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: definition of enum value for each view
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
// Version : %version: 6 %
|
|
19 |
|
|
20 |
#ifndef MPXHBVIDEOCOMMONDEFS_H
|
|
21 |
#define MPXHBVIDEOCOMMONDEFS_H
|
|
22 |
|
|
23 |
namespace MpxHbVideoCommon
|
|
24 |
{
|
|
25 |
|
|
26 |
const long int KMpxVideoPluginTypePlaybackUid = {0x20024338};
|
|
27 |
const long int KMpxVideoPluginTypeCollectionUid = {0x200211FC};
|
|
28 |
const long int KMpxVideoPluginTypeFileDetailsUid = {0x20021200};
|
|
29 |
|
|
30 |
const long int KMpxVideoPluginDllPlaybackUid = {0x20024335};
|
|
31 |
const long int KMpxVideoPluginDllCollectionUid = {0x200211FB};
|
|
32 |
const long int KMpxVideoPluginDllFileDetailsUid = {0x200211FF};
|
|
33 |
|
|
34 |
enum MpxHbVideoCommand
|
|
35 |
{
|
|
36 |
ActivateCollectionView,
|
|
37 |
ActivatePlaybackView,
|
|
38 |
ActivateVideoDetailsView,
|
|
39 |
DoDelayedLoad
|
|
40 |
};
|
|
41 |
|
|
42 |
enum MpxHbVideoViewType
|
|
43 |
{
|
|
44 |
CollectionView,
|
|
45 |
PlaybackView,
|
|
46 |
VideoDetailsView
|
|
47 |
};
|
|
48 |
}
|
|
49 |
|
|
50 |
#endif // MPXHBVIDEOCOMMONDEFS_H
|