|
1 /* |
|
2 * Copyright (c) 2006 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: Document class of VCommandManager |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef VCMANAGERDOCUMENT_H |
|
20 #define VCMANAGERDOCUMENT_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <AknDoc.h> |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 // FORWARD DECLARATIONS |
|
28 class CEikAppUi; |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * CAiNameDialerDocument application class. |
|
34 */ |
|
35 class CVCommandManagerDocument : public CAknDocument |
|
36 { |
|
37 public: // Constructors and destructor |
|
38 |
|
39 /** |
|
40 * Two-phased constructor. |
|
41 * |
|
42 * @param "CEikApplication& aApp" Application object |
|
43 */ |
|
44 static CVCommandManagerDocument* NewL( CEikApplication& aApp ); |
|
45 |
|
46 /** |
|
47 * Destructor. |
|
48 */ |
|
49 virtual ~CVCommandManagerDocument(); |
|
50 |
|
51 public: // From CAknDocument |
|
52 |
|
53 /** |
|
54 * Updates window group task name |
|
55 * |
|
56 * @param "CApaWindowGroupName* aWgName" Window group name |
|
57 */ |
|
58 void UpdateTaskNameL( CApaWindowGroupName* aWgName ); |
|
59 |
|
60 private: |
|
61 |
|
62 /** |
|
63 * Default constructor. |
|
64 * |
|
65 * @param "CEikApplication& aApp" Application object |
|
66 */ |
|
67 CVCommandManagerDocument( CEikApplication& aApp ); |
|
68 |
|
69 /** |
|
70 * Second phase constructor |
|
71 */ |
|
72 void ConstructL(); |
|
73 |
|
74 private: |
|
75 |
|
76 /** |
|
77 * From CEikDocument, creates CAiNameDialerAppUi "App UI" object. |
|
78 * |
|
79 * @return Created AppUi instance |
|
80 */ |
|
81 CEikAppUi* CreateAppUiL(); |
|
82 }; |
|
83 |
|
84 #endif // VCMANAGERDOCUMENT_H |
|
85 |
|
86 // End of File |