diff -r 9674c1a575e9 -r b8fae6b8a148 idlehomescreen/xmluirendering/uiengine/inc/xnbgcontrol.h --- a/idlehomescreen/xmluirendering/uiengine/inc/xnbgcontrol.h Mon Mar 15 12:39:47 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 -#include - -// 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