meetingrequest/mrgui/inc/cesmrlistquery.h
branchRCL_3
changeset 12 4ce476e64c59
parent 11 0396474f30f5
child 13 8592a65ad3fb
--- a/meetingrequest/mrgui/inc/cesmrlistquery.h	Mon Mar 15 12:39:10 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,155 +0,0 @@
-/*
-* Copyright (c) 2007-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:  Definition for mrui list queries
-*
-*/
-
-
-#ifndef CESMRLISTQUERY_H
-#define CESMRLISTQUERY_H
-
-//  INCLUDES
-#include <e32base.h>
-//<cmail>
-#include "esmrdef.h"
-//</cmail>
-
-// FORWARD DECLARATIONS:
-class CDesC16ArrayFlat;
-class CAknPopupList;
-class CESMRAlarm;
-class CESMRRecurrence;
-
-// CLASS DECLARATION
-class CEikonEnv;
-/**
- * CESMRListQuery encapsulates edit before send pop-up list
- * query for ES MR Utils usage.
- *
- * Usage:
- *
- * TESMRResponseType resp = (TESMRResponseType)
- *      CESMRListQuery::ExecuteEditBeforeSendL(EESMRAttendeeStatusTentative);
- *
- * @lib esmrgui.lib
- */
-NONSHARABLE_CLASS( CESMRListQuery ) : public CBase
-    {
-    public:
-        enum TESMRListQueryType
-            {
-            EESMREditBeforeSendQuery = 0,
-            EESMRSendUpdateToAllQuery,
-            EESMRRecurrenceQuery,
-            EESMRRelativeAlarmTimeQuery,
-            EESMROpenThisOccurenceOrSeriesQuery,
-            EESMRPriorityPopup,
-            EESMRTodoPriorityPopup,
-            EESMRSynchronizationPopup,
-            EESMRDeleteThisOccurenceOrSeriesQuery,
-            EESMREditBeforeSendQueryWithSendOptionsOnly
-            };
-        
-    public:
-        /**
-        * Two-phased constructor.
-        */
-        IMPORT_C static CESMRListQuery* NewL(TESMRListQueryType aType);
-
-        /**
-        * Destructor.
-        */
-        ~CESMRListQuery();
-
-    private: // Constructors
-
-        CESMRListQuery( TESMRListQueryType aType );
-        void ConstructL();
-
-    public: // Implementation
-
-         /**
-         * Sets the attendee response status to Edit before send query's
-         * title.
-         * @param aStatus Response status
-         */
-         void SetAttendeeStatus(TESMRAttendeeStatus aStatus);
-
-
-         /**
-         * Executes the dialog and destroys itself.
-         * @return TESMRResponseType, or KErrCancel if dialog has
-         *         been cancelled.
-         */
-         IMPORT_C TInt ExecuteLD();
-
-         /**
-         * Static version of ExecuteLD for edit before send dialog
-         * @param aStatus attendee status.
-         * @return TESMRResponseType, or KErrCancel if dialog has
-         *         been cancelled.
-         */
-         IMPORT_C static TInt ExecuteEditBeforeSendL(
-                 TESMRAttendeeStatus aStatus);
-
-         /**
-         * Static version of ExecuteLD for edit before send dialog
-         * @param aStatus attendee status.
-         * @return TESMRResponseType, or KErrCancel if dialog has
-         *         been cancelled.
-         */
-         IMPORT_C static TInt ExecuteEditBeforeSendWithSendOptOnlyL(
-                 TESMRAttendeeStatus aStatus );
-
-         /**
-         * Static version of ExecuteLD for other list querys
-         * @param aStatus attendee status.
-         * @return
-         *         TESMRSendUpdateQueryResponeStatus if the type is EESMRSendUpdateAll
-         *         TESMRGUIAlarmValue if the type is EESMRRelativeAlarmTime
-         *         TESMRGUIRecurrenceValue if the type is EESMRRecurrence
-         *         TESMRThisOccurenceOrSeriesQuery if the type is
-         *              EESMRThisOccurenceOrSeriesQuery
-         *         or KErrCancel if dialog has
-         *         been cancelled.
-         */
-         IMPORT_C static TInt ExecuteL(
-                 TESMRListQueryType aType);
-
-    private: // Implementation:
-
-        void SetListQueryTextsL(
-                CDesC16ArrayFlat* aItemArray,
-                CAknPopupList* aPopupList);
-        TInt MapSelectedIndexToReturnValue(TInt aIndex);
-        void LoadTextsFromResourceL();
-
-    private: // Data
-        /// Own: Attendee status
-        TESMRAttendeeStatus iStatus;
-        /// Own: Resource offset;
-        TInt iResourceOffset;
-        /// Own: List query type
-        TESMRListQueryType iType;
-        /// Own: Array for Alarm items
-        RPointerArray< CESMRAlarm > iAlarmArray;
-        /// Own: Array for Recurrence items
-        RPointerArray< CESMRRecurrence > iRecurrenceArray;
-        /// Ref:
-        CEikonEnv* iEnv;
-    };
-
-#endif // CESMRLISTQUERY_H
-
-// End of File