|
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: Contains headers needed in plugin |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef IPSIMAP4MTMUI_H |
|
19 #define IPSIMAP4MTMUI_H |
|
20 |
|
21 |
|
22 #include <e32base.h> |
|
23 #include <mtmuibas.h> |
|
24 #include <e32des8.h> |
|
25 |
|
26 NONSHARABLE_CLASS ( CIpsMtmUi ) : public CBaseMtmUi |
|
27 { |
|
28 public: |
|
29 |
|
30 IMPORT_C static CIpsMtmUi* NewL( |
|
31 CBaseMtm& aBaseMtm, |
|
32 CRegisteredMtmDll& aRegisteredMtmDll); |
|
33 |
|
34 virtual ~CIpsMtmUi(); |
|
35 |
|
36 CMsvOperation* OpenL(TRequestStatus& aStatus); |
|
37 CMsvOperation* CloseL(TRequestStatus& aStatus); |
|
38 CMsvOperation* EditL(TRequestStatus& aStatus); |
|
39 CMsvOperation* ViewL(TRequestStatus& aStatus); |
|
40 CMsvOperation* OpenL( |
|
41 TRequestStatus& aStatus, |
|
42 const CMsvEntrySelection& aSelection); |
|
43 CMsvOperation* CloseL( |
|
44 TRequestStatus& aStatus, |
|
45 const CMsvEntrySelection& aSelection); |
|
46 CMsvOperation* EditL( |
|
47 TRequestStatus& aStatus, |
|
48 const CMsvEntrySelection& aSelection); |
|
49 CMsvOperation* ViewL( |
|
50 TRequestStatus& aStatus, |
|
51 const CMsvEntrySelection& aSelection); |
|
52 CMsvOperation* CancelL( |
|
53 TRequestStatus& aStatus, |
|
54 const CMsvEntrySelection& aSelection); |
|
55 CMsvOperation* ReplyL( |
|
56 TMsvId aDestination, |
|
57 TMsvPartList aPartlist, |
|
58 TRequestStatus& aCompletionStatus); |
|
59 CMsvOperation* ForwardL( |
|
60 TMsvId aDestination, |
|
61 TMsvPartList aPartList, |
|
62 TRequestStatus& aCompletionStatus); |
|
63 protected: |
|
64 |
|
65 CIpsMtmUi(CBaseMtm& aBaseMtm, |
|
66 CRegisteredMtmDll& aRegisteredMtmDll); |
|
67 |
|
68 void ConstructL(); |
|
69 |
|
70 void GetResourceFileName(TFileName& aFileName) const; |
|
71 |
|
72 private: |
|
73 |
|
74 TBuf8<1> iDummyBuf; |
|
75 }; |
|
76 |
|
77 |
|
78 #endif // IPSIMAP4MTMUI_H |
|
79 |
|
80 |