calendarui/controller/inc/calenactionui.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 10:12:19 +0200
changeset 0 f979ecb2b13e
child 18 c198609911f9
child 65 12af337248b1
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2007 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:   Calendar controller
*
*/



#ifndef CALENACTIONUI_H
#define CALENACTIONUI_H

// INCLUDES
#include <e32base.h>
#include <calencommandhandler.h>
#include <calencommands.hrh>

// FORWARD DECLARATIONS
class CCalenController;
class CCalenDeleteUi;
class CCalenEditUi;
class CCalenLocationUi;
class CCalenCustomisationManager;
class MCalenCommandHandler;
class CCalenAttachmentUi;

// CLASS DEFINITIONS
/**
 * The action ui handles events passed from the controller and delegates
 * them to the appropriate place (i.e. the specific action ui classes).
 */
class CCalenActionUi : public CBase,
                       public MCalenCommandHandler
    {

public:  // Construction and destruction

    /**
     * 1st phase constructor
     * @param aController A reference to calencontroller
     */
    static CCalenActionUi* NewL( CCalenController& aController );

    /**
     * Virtual destructor
     */
    virtual ~CCalenActionUi();

public: // From MCalenCommandHandler

    /**
     * Handles key presses.
     * 
     * @param aCommand The command Id of the key.
     */
    TBool HandleCommandL( const TCalenCommand& aCommand );

    /**
     * Allows extending this API without breaking BC.
     * 
     * @param aExtensionUid specifies
     * @return extension of the requested type
     */
    TAny* CalenCommandHandlerExtensionL( TUid aExtensionUid );

public:  // New functions

    /**
     * Handle actionui related command
     * @param aCommand A command to be handled
     * @return a boolean showing wether the command is being handled or not
     */
    //TBool HandleActionUiCommandL( TInt aCommand );

    /**
     * Gets a command handler or NULL.
     */
    MCalenCommandHandler* GetCommandHandlerL( TInt aCommand );
	
	 /**
     * Function to tell whether editor is active or not
     * @return ETrue if editor is active else EFalse
     */
    TBool IsEditorActive();

private:  // Construction and destruction

    /**
     * C++ constructor, non-leaving
     * @param aController A reference to the calencontroller
     */
    CCalenActionUi( CCalenController& aController );

    /**
     * 2nd phase constructor
     */
    void ConstructL();

private:  // New functions

    /**
     * Show settings dialog
     */
    void ShowSettingsL();
    /**
     * Show calenders dialog
     */
    void ShowCalendarsL();

private:  // Data

    CCalenDeleteUi* iDeleteUi;          // pointer to the deleteui
    CCalenEditUi* iEditUi;              // pointer to the seditui
    CCalenLocationUi* iLocationUi;      // pointer to the locationui
    CCalenController& iController;      // reference to the calencontroller
    CCalenAttachmentUi* iAttachmentUi;

    };

#endif // CALENACTIONUI_H

// End of file