idlehomescreen/xmluirendering/uiengine/inc/xnwidgetextensionadapter.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 1 5315654608de
child 15 ff572dfe6d86
permissions -rw-r--r--
Revision: 201003 Kit: 201007

/*
* Copyright (c) 2008 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:  Widget extension adapter
*
*/

#ifndef __XNWIDGETEXTENSIONADAPTER_H__
#define __XNWIDGETEXTENSIONADAPTER_H__

// System includes
#include <e32base.h>

// User includes
#include "xncontroladapter.h"
#include "xnuistatelistener.h"

// Forward declarations
class CXnAppUiAdapter;
class CXnNode;
class CXnUiEngine;

// CLASS DECLARATION

/**
*  @ingroup group_xnlayoutengine
*  Popup Control adapter interface class
*  @lib xnlayoutengine.lib
*  @since Series 60 5.0
*/
NONSHARABLE_CLASS( CXnWidgetExtensionAdapter ) : public CXnControlAdapter, 
    public MXnUiStateObserver
    {
public: // Constructors and destructor

    enum TPositionHint
           {
           ENone,
           EAboveLeft,
           EAboveRight,
           EBelowLeft,
           EBelowRight,
           ELeft,
           ERight
           };
    /**
    * Two-phased constructor.
    */
    static CXnWidgetExtensionAdapter* NewL( CXnNodePluginIf& aNode );
    
    /**
    * Destructor.
    */
    ~CXnWidgetExtensionAdapter();
     
private: 
    // Functions from base classes    
    /**
    * @see CCoeControl documentation        
    */         
    void MakeVisible( TBool aVisible );

    /**
    * see CCoeControl 
    */
    void HandlePointerEventL(const TPointerEvent& aPointerEvent);

    /**
    * see CCoeControl 
    */
    void Draw(const TRect& aRect) const;        

private:
    // from MXnUiStateObserver
    
    /**
     * @see MXnUiStateObserver
     */
    void NotifyForegroundChanged( TForegroundStatus aStatus );         

    /**
     * @see MXnUiStateObserver
     */    
    void NotifyLightStatusChanged( TBool aLightsOn );
       
    /**
     * @see MXnUiStateObserver
     */    
    void NotifyInCallStateChaged( TBool aInCall );    
    
private: 
    // Constructors
    /**
    * C++ default constructor.
    */
    CXnWidgetExtensionAdapter( CXnNodePluginIf& aNode );

    /**
    * Two-phased constructor.        
    */ 
    void ConstructL();	   
    
private: 
    // New functions
    
    void HidePopupL();
        
    void CalculatePosition();
    
private:    
    // Data
    
    /** UiEngine, not owned */
    CXnUiEngine* iUiEngine; 	    
    /** Node, not owned */ 
    CXnNodePluginIf& iNode;    
    /** Position hint */
    TPositionHint iPositionHint;    
    /** AppUi, not owned */
    CXnAppUiAdapter* iAppUiAdapter;
    /** Flag to indicate whether <popup> is permanent */
    TBool iPermanent;    
	};

#endif // __XNWIDGETEXTENSIONADAPTER_H__

// End of File