diff -r 000000000000 -r 2e3d3ce01487 startupservices/Startup/src/startupview.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/startupservices/Startup/src/startupview.cpp Tue Feb 02 10:12:00 2010 +0200 @@ -0,0 +1,198 @@ +/* +* Copyright (c) 2007,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: Implementation of CStartupView class +* +*/ + + +#include +#include // Skin support +#include // Skin support + +#include "startupview.h" +#include "StartupDefines.h" + +// ======== MEMBER FUNCTIONS ======== + +// --------------------------------------------------------------------------- +// CStartupView::NewL +// +// --------------------------------------------------------------------------- +// +CStartupView* CStartupView::NewL( const TRect& aRect ) + { + TRACES("CStartupView::NewL()"); + + CStartupView* self = new( ELeave ) CStartupView; + CleanupStack::PushL( self ); + self->ConstructL( aRect ); + CleanupStack::Pop( self ); + + TRACES("CStartupView::NewL(): End"); + return self; + } + + +// --------------------------------------------------------------------------- +// CStartupView::~CStartupView +// +// --------------------------------------------------------------------------- +// +CStartupView::~CStartupView() + { + TRACES("CStartupView::~CStartupView()"); + delete iBgContext; + TRACES("CStartupView::~CStartupView(): End"); + } + + +// --------------------------------------------------------------------------- +// CStartupView::SetComponent +// +// --------------------------------------------------------------------------- +// +void CStartupView::SetComponent( CCoeControl& aComponent ) + { + TRACES("CStartupView::SetComponent()"); + + iComponent = &aComponent; + + TRACES("CStartupView::SetComponent(): End"); + } + + +// --------------------------------------------------------------------------- +// CStartupView::RemoveComponent +// +// --------------------------------------------------------------------------- +// +void CStartupView::RemoveComponent() + { + TRACES("CStartupView::RemoveComponent()"); + + iComponent = NULL; + + TRACES("CStartupView::RemoveComponent(): End"); + } + + +// --------------------------------------------------------------------------- +// CStartupView::SizeChanged +// +// --------------------------------------------------------------------------- +void CStartupView::SizeChanged() + { + TRACES("CStartupView::SizeChanged()"); + + if (iBgContext) + { + iBgContext->SetRect( Rect() ); + } + + if ( iComponent ) + { + iComponent->SetRect( Rect() ); + } + + DrawNow(); + + TRACES("CStartupView::SizeChanged(): End"); + } + + +// --------------------------------------------------------------------------- +// CStartupView::CountComponentControls +// +// --------------------------------------------------------------------------- +// +TInt CStartupView::CountComponentControls() const + { + if ( iComponent ) return 1; + return 0; + } + + +// --------------------------------------------------------------------------- +// CStartupView::ComponentControl +// +// --------------------------------------------------------------------------- +// +CCoeControl* CStartupView::ComponentControl( TInt /*aIndex*/ ) const + { + return iComponent; + } + + +// --------------------------------------------------------------------------- +// CStartupView::Draw +// +// --------------------------------------------------------------------------- +// +void CStartupView::Draw( const TRect& aRect ) const + { + TRACES("CStartupView::Draw()"); + + CWindowGc& gc = SystemGc(); + MAknsSkinInstance* skin = AknsUtils::SkinInstance(); + gc.SetPenStyle( CGraphicsContext::ENullPen ); + gc.SetBrushStyle( CGraphicsContext::ESolidBrush ); + + // Draw skin background + if ( !AknsDrawUtils::Background( skin, iBgContext, gc, aRect ) ) + { + // If Skin is missing, clear with default color + gc.SetClippingRect( aRect ); + gc.SetBrushColor( KRgbWhite ); + gc.Clear(); + } + + TRACES("CStartupView::Draw(): End"); + } + + +// --------------------------------------------------------------------------- +// CStartupView::CStartupView +// +// --------------------------------------------------------------------------- +// +CStartupView::CStartupView() + { + TRACES("CStartupView::CStartupView()"); + TRACES("CStartupView::CStartupView(): End"); + } + + +// --------------------------------------------------------------------------- +// CStartupView::ConstructL +// +// --------------------------------------------------------------------------- +// +void CStartupView::ConstructL( const TRect& aRect ) + { + TRACES("CStartupView::ConstructL()"); + + iAvkonAppUi->StatusPane()->MakeVisible( EFalse ); + CreateWindowL(); + SetRect( aRect ); + + // Create background drawing context + TRect bgrect(aRect.Size()); + iBgContext = CAknsBasicBackgroundControlContext::NewL( + KAknsIIDQsnBgScreen, + bgrect, EFalse ); + + ActivateL(); + + TRACES("CStartupView::ConstructL(): End"); + }