|
1 /* |
|
2 * Copyright (c) 2002-2004 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: Datafiller for meeting request |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef CMRDATAFILLERMEETINGREQUEST_H |
|
22 #define CMRDATAFILLERMEETINGREQUEST_H |
|
23 |
|
24 // INCLUDES |
|
25 #include "CMRDataFillerBase.h" |
|
26 #include <e32base.h> |
|
27 #include <coemain.h> //CCoeEnv |
|
28 #include <MAgnEntryUi.h> |
|
29 |
|
30 |
|
31 // FORWARD DECLARATIONS |
|
32 class CCalEntry; |
|
33 class CRichBio; |
|
34 |
|
35 // CLASS DECLARATION |
|
36 |
|
37 /** |
|
38 * ?one_line_short_description. |
|
39 * ?other_description_lines |
|
40 * |
|
41 * @lib ?library |
|
42 * @since Series ?XX ?SeriesXX_version |
|
43 */ |
|
44 class CMRDataFillerMeetingRequest : public CMRDataFillerBase |
|
45 { |
|
46 |
|
47 public: // Constructors and destructor |
|
48 |
|
49 |
|
50 /** |
|
51 * Two-phased constructor. |
|
52 */ |
|
53 static CMRDataFillerMeetingRequest* NewL( CRichBio& aViewer, |
|
54 MMRModelInterface& aModel, |
|
55 CCoeEnv& aCoeEnv, |
|
56 CMRMailboxUtils& aUtils, |
|
57 MAgnEntryUi::TAgnEntryUiInParams& aParams); |
|
58 |
|
59 /** |
|
60 * Destructor. |
|
61 */ |
|
62 virtual ~CMRDataFillerMeetingRequest(); |
|
63 |
|
64 |
|
65 |
|
66 public: //API |
|
67 |
|
68 void DoFillViewerL(); |
|
69 |
|
70 private: //construction |
|
71 |
|
72 /** |
|
73 * Constructor |
|
74 * @param aEntry Reference to the agenda entry. |
|
75 */ |
|
76 CMRDataFillerMeetingRequest( CRichBio& iRichBio, |
|
77 MMRModelInterface& aModel, |
|
78 CCoeEnv& aCoeEnv, |
|
79 CMRMailboxUtils& aUtils, |
|
80 MAgnEntryUi::TAgnEntryUiInParams& aParams ); |
|
81 |
|
82 /** |
|
83 * By default Symbian 2nd phase constructor is private. |
|
84 */ |
|
85 void ConstructL(); |
|
86 }; |
|
87 |
|
88 #endif // ?CLASSNAME_H |
|
89 |
|
90 // End of File |