equal
deleted
inserted
replaced
|
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: Declares UI class for application. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __EMAILWIDGETSETTINGSAPPUI_H__ |
|
19 #define __EMAILWIDGETSETTINGSAPPUI_H__ |
|
20 |
|
21 #include <aknapp.h> |
|
22 #include <aknViewAppUi.h> |
|
23 #include <aknview.h> |
|
24 |
|
25 #include <AknDoc.h> |
|
26 #include <e32std.h> |
|
27 #include <apgtask.h> |
|
28 #include <eiklbo.h> |
|
29 #include <u32std.h> |
|
30 |
|
31 const TUid KUidWidgetSettApp={ 0x2002429E }; |
|
32 |
|
33 class CEmailWidgetSettingsAppUi : public CAknViewAppUi |
|
34 { |
|
35 public: |
|
36 void ConstructL(); |
|
37 ~CEmailWidgetSettingsAppUi(); |
|
38 |
|
39 private: |
|
40 void HandleCommandL(TInt aCommand); |
|
41 |
|
42 private: |
|
43 void CreateListViewL(); |
|
44 void LaunchEmailWizardL(); |
|
45 |
|
46 private: |
|
47 TInt iCloseCount; |
|
48 }; |
|
49 |
|
50 |
|
51 class CEmailWidgetSettingsDocument : public CAknDocument |
|
52 { |
|
53 public: |
|
54 void ConstructL(); |
|
55 CEmailWidgetSettingsDocument(CEikApplication& aApp): CAknDocument(aApp) { } |
|
56 ~CEmailWidgetSettingsDocument() { } |
|
57 |
|
58 public: |
|
59 |
|
60 private: |
|
61 CEikAppUi* CreateAppUiL(); |
|
62 }; |
|
63 |
|
64 class CEmailWidgetSettingsApplication : public CAknApplication |
|
65 { |
|
66 private: |
|
67 CApaDocument* CreateDocumentL(); |
|
68 TUid AppDllUid() const; |
|
69 }; |
|
70 |
|
71 #endif // __EMAILWIDGETSETTINGSAPPUI_H__ |
|
72 // End of File |