--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/meetingrequest/mrgui/inc/cesmrtrackingviewdialog.h Wed Sep 01 12:28:57 2010 +0100
@@ -0,0 +1,107 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description : ESMR tracking viewe dialog
+* Version : %version: e002sa32#7.1.1 %
+*
+*/
+#ifndef CESMRTRACKINGVIEWDIALOG_H
+#define CESMRTRACKINGVIEWDIALOG_H
+
+// SYSTEM INCLUDE
+#include <AknDialog.h>
+#include <caluser.h>
+//#include <aknlists.h>
+
+#include "mesmruibase.h"
+#include "mesmrresponseobserver.h"
+#include "resmrstatic.h"
+
+
+// FORWARD DECLARATIONS
+class CESMRPolicy;
+class MAgnEntryUiCallback;
+class MESMRCalEntry;
+class CESMRTrackingView;
+
+class CESMRTrackingViewDialog : public CAknDialog,
+ public MESMRUiBase
+ {
+public:
+
+ /**
+ * Two-phased constructor.
+ *
+ */
+ static CESMRTrackingViewDialog* NewL(
+ const CESMRPolicy& aPolicy,
+ MESMRCalEntry& aEntry,
+ MAgnEntryUiCallback& aCallback
+ );
+
+ /*
+ * Destructor.
+ */
+ ~CESMRTrackingViewDialog();
+
+public: // From CAknDialog
+ SEikControlInfo CreateCustomControlL( TInt aType );
+ TKeyResponse OfferKeyEventL(const TKeyEvent& aEvent, TEventCode aType);
+ TBool OkToExitL (TInt aButtonId);
+ void ProcessCommandL( TInt aCommand );
+ void DynInitMenuPaneL(
+ TInt aResourceId,
+ CEikMenuPane* aMenuPane );
+ void ActivateL();
+
+public: // From MESUIBase
+ TInt ExecuteViewLD();
+
+public: // Used by tracking vieww
+
+ void HandleListEventL();
+
+private: // Implementation
+ void DoProcessCommandL( TInt aCommand );
+ CESMRTrackingViewDialog( const CESMRPolicy& aPolicy,
+ MESMRCalEntry& aEntry,
+ MAgnEntryUiCallback& aCallback);
+ void ConstructL();
+ TInt CountAttendeesL(CCalAttendee::TCalRole aRole);
+ void SortAttendeesL();
+
+private:
+
+ /**
+ * Ref: Policy for building fields and menus
+ */
+ const CESMRPolicy& iPolicy;
+
+ /// Ref: Reference to MESRCalEntry (CCalEntry wrapper)
+ MESMRCalEntry& iEntry;
+
+ /// Ref: Agn Entry UI callback interface
+ MAgnEntryUiCallback& iCallback;
+
+ /**
+ * Ref: The only control in this dialog. Fwk deletes.
+ */
+ CESMRTrackingView* iView;
+
+ /// Own: Static TLS data handler
+ RESMRStatic iESMRStatic;
+ };
+
+#endif /*CESMRTRACKINGVIEWDIALOG_H*/
+
+// End of File