5
|
1 |
/*
|
|
2 |
* Copyright (c) 2007-2007 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 functionality specific to video files
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef __CMGVIDEOFILE_H
|
|
20 |
#define __CMGVIDEOFILE_H
|
|
21 |
|
|
22 |
#include <e32std.h>
|
|
23 |
|
|
24 |
#include "mgmediaitem.h"
|
|
25 |
|
|
26 |
class MCLFItem;
|
|
27 |
class CLiwDefaultMap;
|
|
28 |
|
|
29 |
/**
|
|
30 |
* This class is responsible for obtaining those parameters
|
|
31 |
* which are specific to video files
|
|
32 |
*
|
|
33 |
*
|
|
34 |
* @since Series60 v3.2
|
|
35 |
*/
|
|
36 |
NONSHARABLE_CLASS( CMgVideoFile ) : public CMgMediaItem
|
|
37 |
{
|
|
38 |
|
|
39 |
public:
|
|
40 |
|
|
41 |
/**
|
|
42 |
* Two-phased constructor.
|
|
43 |
* @return A pointer to CMgVideoFile class
|
|
44 |
*/
|
|
45 |
static CMgVideoFile* NewL();
|
|
46 |
|
|
47 |
/**
|
|
48 |
* Destructor.
|
|
49 |
*/
|
|
50 |
CMgVideoFile(){};
|
|
51 |
|
|
52 |
// from base class CMgMediaItem
|
|
53 |
/**
|
|
54 |
* This is responsible for filling only video file
|
|
55 |
* specific information
|
|
56 |
* @param aOutputMap Contains the result in the form of
|
|
57 |
* name-value pairs
|
|
58 |
* @param aClfItem A reference to the list model item to be processed
|
|
59 |
* @return void
|
|
60 |
*/
|
|
61 |
void FillInfoL( CLiwDefaultMap *aOutputMap, const MCLFItem& aClfItem );
|
|
62 |
|
|
63 |
|
|
64 |
};
|
|
65 |
|
|
66 |
#endif // __CMGVIDEOFILE_H |