idlehomescreen/xmluirendering/uiengine/inc/xnbgcontrol.h
branchRCL_3
changeset 20 899e4666ea9a
parent 16 1526727a5b85
parent 19 79311d856354
child 21 45cc9ca502a9
--- a/idlehomescreen/xmluirendering/uiengine/inc/xnbgcontrol.h	Fri Mar 26 15:15:17 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,145 +0,0 @@
-/*
-* 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:  Background appearance drawer
-*
-*/
-
-
-#ifndef _XNBGCONTROL_H
-#define _XNBGCONTROL_H
-
-// System includes
-#include <e32base.h>
-#include <coecntrl.h>
-
-// User includes
-#include "xnuistatelistener.h"
-
-// Forward declarations
-
-/**
- * Background appearance drawer
- * 
- * @ingroup group_xnlayoutengine
- * @lib xn3layoutengine.lib
- * @since S60 5.0
- */
-NONSHARABLE_CLASS( CXnBgControl ) : public CCoeControl , public MXnUiStateObserver
-    {
-public:    
-    // Constructors and destructor
-    
-    /**
-     * Two-phased constructor.
-     */
-    static CXnBgControl* NewL();
-
-    /**
-     * Two-phased constructor. Leaving on stack
-     */
-    static CXnBgControl* NewLC();
-
-    /**
-     * Destructor
-     */
-    ~CXnBgControl();
-
-private:
-    // private constructors
-
-    /**
-     * Leaving constructor
-     */
-    void ConstructL();
-    
-    /**
-     * C++ default constructor
-     */
-    CXnBgControl();
-    
-public:
-    // from CCoeControl
-
-    /**
-     * @see CCoeControl
-     */    
-    TInt CountComponentControls() const;
-
-    /**
-     * @see CCoeControl
-     */    
-    CCoeControl* ComponentControl( TInt aIndex ) const;
-    
-    /**
-     * @see CCoeControl
-     */
-    void SizeChanged();
-    
-    /**
-     * @see CCoeControl
-     */
-    void Draw( const TRect& aRect ) const;
-            
-    /**
-     * @see CCoeControl
-     */
-    void HandlePointerEventL( const TPointerEvent& aPointerEvent );
-    
-public:
-    // new functions
-    void SetCompoundControl( CCoeControl* aControl );
-    
-	/**
-     * Service for removing grabbing controls
-     */
-    void ResetGrabbingL();
-      
-private:  
-	// new functions
-    
-	/**
-     * Removes recursively grabbing controls
-     */
-    void RemoveGrabbingControL( const CCoeControl* aControl, const TPointerEvent& aEvent ) const;
-    
-private:
-    // from MXnUiStateObserver
-    
-    /**
-     * @see MXnUiStateObserver
-     */
-    void NotifyForegroundChanged( TForegroundStatus aStatus );
-    
-    /**
-     * @see MXnUiStateObserver
-     */
-    void NotifyLightStatusChanged( TBool aLightsOn );
-    
-    /**
-     * @see MXnUiStateObserver
-     */
-    void NotifyInCallStateChaged( TBool aInCall );   
-    
-private:
-    // data
-    
-    /** Compound Control, Not owned */
-    CCoeControl* iControl;
-    
-	/** stored point of EButton1Down */
-    TPoint iHitpoint;
-    
-    };
-
-#endif // _XNBGCONTROL_H