idlehomescreen/xmluicontroller/inc/appui.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Feb 2010 22:42:37 +0200
branchRCL_3
changeset 9 f966699dea19
parent 0 f72a12da539e
child 11 ff572dfe6d86
permissions -rw-r--r--
Revision: 201003 Kit: 201007

/*
* Copyright (c) 2005-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:  App UI
*
*/


#ifndef C_APPUI_H
#define C_APPUI_H

// System includes
#include <coeview.h>

// User includes
#include <hspublisherinfo.h>
#include "xnappuiadapter.h"

// Forward declarations
class CAiUiIdleIntegration;

namespace AiXmlUiController
{        
class CContentRenderer;
class CXmlUiController;
class CAIXuikonEventHandler;
class COnlineOfflineHelper;

/**
 *  @ingroup group_xmluicontroller
 * 
 *  AppUI class of XML UI Controller application
 *
 *  @lib AiXmlUiMain
 */
NONSHARABLE_CLASS( CAppUi ) : public CXnAppUiAdapter,
    public MCoeViewActivationObserver
    {    
public:   // Constructors and destructor

    static CAppUi* NewL( CXmlUiController& aUiCtl );

    ~CAppUi();
    
public:  
    // new functions
    CCoeEnv* CoeEnv() { return iCoeEnv; }
            
private:  
    // from CXnAppUiAdapter
    
    void PrepareToExit();
           
    void HandleCommandL( TInt aCommand );

    void HandleXuikonEventL( CXnNodeAppIf& aOrigin, CXnNodeAppIf& aTrigger,  
         CXnDomNode& aTriggerDefinition, CXnDomNode& aEvent );
    
    void HandleEventL( const TDesC& aEvent, CXnNodeAppIf& aDestination );
                                                          
    void HandleWsEventL( const TWsEvent& aEvent, 
            CCoeControl* aDestination );

    TInt LoadPublisher( CXnNodeAppIf& aPublisher, TInt aReason );
                      
    TInt DestroyPublisher( CXnNodeAppIf& aPublisher, TInt aReason );
                           
    TBool DynInitMenuItemL( const TDesC& aItemType, 
        RPointerArray< CXnNodeAppIf >* aList = NULL );
    
    void HandleEnterEditModeL( TBool aEnter );
	    
    
private:
    // from MCoeViewActivationObserver
    
    /**
     * @see MCoeViewActivationObserver
     */
    void HandleViewActivation( const TVwsViewId& aNewlyActivatedViewId, 
        const TVwsViewId& aViewIdToBeDeactivated );
               
public: 
    // new functions
    
    /**
     * Sets plugins online state
     * 
     * @since S60 5.0
     * @param aOnline ETrue to enter online, EFalse to offline
     * 
     */
    void SetOnlineStateL( TBool aOnline );
    
    /**
     * Gets Ui controller
     *
     * @since S60 5.0
     * @return Ui Controller
     */
    CXmlUiController& UiController() const;
    
    /**
     * Gets online/offline helper object
     *
     * @since S60 5.0
     * @return online/offline helper
     */
    COnlineOfflineHelper* Helper() const;
               
private: 
    // Constructors

    CAppUi( CXmlUiController& aUiCtl, TUid aAppUid );
    
    void ConstructL();
          
private:     
    // data

    /** UI Controller implementation, not owned */
    CXmlUiController& iUiCtl;
    /** Event handler, owned */
    CAIXuikonEventHandler* iEventHandler;    
    /** Content renderer, owned */
    CContentRenderer* iContentRenderer;              
    /** Idle Integration helper object, owed */
    CAiUiIdleIntegration* iIdleIntegration;
    /** Online/Offline helper object, owned */
    COnlineOfflineHelper* iHelper;
    /** DeviceStatus publisher info */
    THsPublisherInfo iDeviceStatusInfo;
    /** Flag to indicate whether edit mode is active */
    TBool iInEditMode;
    /** Flag to indicate UI shutdown sequence is ongoing */
    TBool iUiShutdown;
    };
    
}  // namespace AiXmlUiController
    
#endif  // C_APPUI_H

// End of File.