71
|
1 |
/*
|
|
2 |
* Copyright (c) 2002 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: Declares document for LWPLayer application
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
// Version : %version: 3 %
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
#ifndef _LWPLAYERDOCUMENT_H_
|
|
23 |
#define _LWPLAYERDOCUMENT_H_
|
|
24 |
|
|
25 |
#include <GenericParamConsumer.h>
|
|
26 |
|
|
27 |
//
|
|
28 |
// FORWARD DECLARATIONS
|
|
29 |
//
|
|
30 |
class CEikAppUi;
|
|
31 |
class CApaWindowGroupName;
|
|
32 |
|
|
33 |
/*
|
|
34 |
* CLWPlayerDocument application class.
|
|
35 |
*/
|
|
36 |
|
|
37 |
class CLWPlayerDocument : public CAiwGenericParamConsumer
|
|
38 |
{
|
|
39 |
public:
|
|
40 |
/*
|
|
41 |
* Two-phased constructor.
|
|
42 |
*/
|
|
43 |
static CLWPlayerDocument* NewL(CEikApplication& aApp);
|
|
44 |
|
|
45 |
/*
|
|
46 |
* Destructor.
|
|
47 |
*/
|
|
48 |
virtual ~CLWPlayerDocument();
|
|
49 |
|
|
50 |
private:
|
|
51 |
/*
|
|
52 |
* EPOC default constructor.
|
|
53 |
*/
|
|
54 |
CLWPlayerDocument(CEikApplication& aApp);
|
|
55 |
|
|
56 |
/*
|
|
57 |
* Two-phased constructor.
|
|
58 |
*/
|
|
59 |
void ConstructL();
|
|
60 |
|
|
61 |
/*
|
|
62 |
* From CEikDocument, create CLWPlayerAppUi "App UI" object.
|
|
63 |
*/
|
|
64 |
CEikAppUi* CreateAppUiL();
|
|
65 |
|
|
66 |
/*
|
|
67 |
* From CEikDocument, used to hide icon from task list
|
|
68 |
*/
|
|
69 |
void UpdateTaskNameL(CApaWindowGroupName* aWgName);
|
|
70 |
};
|
|
71 |
|
|
72 |
#endif
|
|
73 |
|
|
74 |
// End of File
|