sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "compwin.h" sl@0: #include "utils.h" sl@0: #include "crpwin.h" sl@0: #include "edgedwin.h" sl@0: #include "coordinatewin.h" sl@0: #include "backedupwin.h" sl@0: #include "enormouswin.h" sl@0: #include "spritewin.h" sl@0: #include "animatedwin.h" sl@0: sl@0: #include "test_step_logger.h" sl@0: #include "test_step_comparison.h" sl@0: #include "stresslet.h" sl@0: #include "comparison.h" sl@0: sl@0: //static configuration data, definitions and default assignments sl@0: TInt CCompWin::sBackgroundAlpha = 0; sl@0: sl@0: //configuration parameter names sl@0: _LIT(KT_WservStressParamBackgroundAlpha, "background_alpha"); sl@0: sl@0: sl@0: /** sl@0: BASE COMPARISON WINDOW sl@0: */ sl@0: CCompWin* CCompWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) sl@0: { sl@0: typedef CCompWin* (*TPtrNewLC)(RWsSession&, RWindowGroup*, CCompWin*, CWindowGc&); sl@0: TPtrNewLC winFactory[8]; sl@0: TInt numEnabledWindows = 0; sl@0: sl@0: //setup an array of factory functions, one for each enabled window type sl@0: if (CAnimatedWin::IsEnabled()) sl@0: { sl@0: winFactory[numEnabledWindows++] = TPtrNewLC(CAnimatedWin::NewLC); sl@0: } sl@0: if (CCoordinateWin::IsEnabled()) sl@0: { sl@0: winFactory[numEnabledWindows++] = TPtrNewLC(CCoordinateWin::NewLC); sl@0: } sl@0: if (CBackedupWin::IsEnabled()) sl@0: { sl@0: winFactory[numEnabledWindows++] = TPtrNewLC(CBackedupWin::NewLC); sl@0: } sl@0: if (CEnormousWin::IsEnabled()) sl@0: { sl@0: winFactory[numEnabledWindows++] = TPtrNewLC(CEnormousWin::NewLC); sl@0: } sl@0: if (CCrpWin::IsEnabled()) sl@0: { sl@0: winFactory[numEnabledWindows++] = TPtrNewLC(CCrpWin::NewLC); sl@0: } sl@0: if (CEdgedWin::IsEnabled()) sl@0: { sl@0: winFactory[numEnabledWindows++] = TPtrNewLC(CEdgedWin::NewLC); sl@0: } sl@0: if (CSpritedWin::IsEnabled()) sl@0: { sl@0: winFactory[numEnabledWindows++] = TPtrNewLC(CSpritedWin::NewLC); sl@0: } sl@0: sl@0: if (numEnabledWindows == 0) sl@0: { sl@0: aWs.LogMessage(_L("Error: No window-type is enabled(see ini file)")); sl@0: User::Leave(KErrNotFound); sl@0: } sl@0: sl@0: TInt winType = TRnd::rnd(numEnabledWindows); sl@0: CCompWin* self = winFactory[ winType ](aWs, aGroup, aParent, aGc); sl@0: return self; sl@0: } sl@0: sl@0: void CCompWin::LoadConfiguration(const MTestStepConfigurationContext* aContext) sl@0: { sl@0: aContext->GetInt(KT_WservStressParamBackgroundAlpha, sBackgroundAlpha); sl@0: } sl@0: sl@0: /** sl@0: Get a random TDrawMode value. sl@0: */ sl@0: CGraphicsContext::TDrawMode CCompWin::GetRandomDrawMode() sl@0: { sl@0: static CGraphicsContext::TDrawMode modes[] = sl@0: { sl@0: CGraphicsContext::EDrawModeAND, CGraphicsContext::EDrawModeNOTAND, sl@0: CGraphicsContext::EDrawModePEN, CGraphicsContext::EDrawModeANDNOT, sl@0: CGraphicsContext::EDrawModeXOR, CGraphicsContext::EDrawModeOR, sl@0: CGraphicsContext::EDrawModeNOTANDNOT, CGraphicsContext::EDrawModeNOTXOR, sl@0: CGraphicsContext::EDrawModeNOTSCREEN, CGraphicsContext::EDrawModeNOTOR, sl@0: CGraphicsContext::EDrawModeNOTPEN, CGraphicsContext::EDrawModeORNOT, sl@0: CGraphicsContext::EDrawModeNOTORNOT, CGraphicsContext::EDrawModeWriteAlpha sl@0: }; sl@0: return modes[TRnd::rnd(sizeof(modes)/sizeof(CGraphicsContext::TDrawMode))]; sl@0: } sl@0: sl@0: CGraphicsContext::TPenStyle CCompWin::GetRandomPenStyle() sl@0: { sl@0: static CGraphicsContext::TPenStyle styles[] = sl@0: { sl@0: CGraphicsContext::ENullPen, sl@0: CGraphicsContext::ESolidPen, sl@0: CGraphicsContext::EDottedPen, sl@0: CGraphicsContext::EDashedPen, sl@0: CGraphicsContext::EDotDashPen, sl@0: CGraphicsContext::EDotDotDashPen sl@0: }; sl@0: return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TPenStyle))]; sl@0: } sl@0: sl@0: CGraphicsContext::TBrushStyle CCompWin::GetRandomBrushStyle() sl@0: { sl@0: //CGraphicsContext::EPatternedBrush is not joined in the test in current version. sl@0: static CGraphicsContext::TBrushStyle styles[] = sl@0: { sl@0: CGraphicsContext::ENullBrush, sl@0: CGraphicsContext::ESolidBrush, sl@0: CGraphicsContext::EVerticalHatchBrush, sl@0: CGraphicsContext::EForwardDiagonalHatchBrush, sl@0: CGraphicsContext::EHorizontalHatchBrush, sl@0: CGraphicsContext::ERearwardDiagonalHatchBrush, sl@0: CGraphicsContext::ESquareCrossHatchBrush, sl@0: CGraphicsContext::EDiamondCrossHatchBrush sl@0: }; sl@0: return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TBrushStyle))]; sl@0: } sl@0: sl@0: CCompWin::CCompWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) : sl@0: iWs(aWs), sl@0: iGroup(aGroup), sl@0: iParent(aParent), sl@0: iWsGc(aGc) sl@0: { sl@0: } sl@0: sl@0: CCompWin::~CCompWin() sl@0: { sl@0: iChildren.ResetAndDestroy(); sl@0: sl@0: if (iParent) sl@0: { sl@0: iParent->RemoveChild(this); sl@0: } sl@0: sl@0: if (iWindow) sl@0: { sl@0: iWindow->Close(); sl@0: delete iWindow; sl@0: } sl@0: } sl@0: sl@0: void CCompWin::PreConstructL(TBool aTransparency, TBool aBackedup) sl@0: { sl@0: if (aBackedup) sl@0: { sl@0: iWindow = iBackedupWindow = new(ELeave) RBackedUpWindow(iWs); sl@0: if (iParent) sl@0: { sl@0: User::LeaveIfError(iBackedupWindow->Construct(*iParent->Window(), EColor64K, (TUint32)(this))); sl@0: iParent->AddChildL(this); sl@0: } sl@0: else sl@0: { sl@0: User::LeaveIfError(iBackedupWindow->Construct(*iGroup, EColor64K, (TUint32)(this))); sl@0: } sl@0: } sl@0: else sl@0: { sl@0: iWindow = iRedrawWindow = new(ELeave) RWindow(iWs); sl@0: if (iParent) sl@0: { sl@0: User::LeaveIfError(iRedrawWindow->Construct(*iParent->Window(), (TUint32)(this))); sl@0: iParent->AddChildL(this); sl@0: } sl@0: else sl@0: { sl@0: User::LeaveIfError(iRedrawWindow->Construct(*iGroup, (TUint32)(this))); sl@0: } sl@0: } sl@0: if (iRedrawWindow) sl@0: { sl@0: if (aTransparency) sl@0: { sl@0: iRedrawWindow->SetTransparencyAlphaChannel(); sl@0: } sl@0: /* Note: if background color is set to include a transparent background sl@0: * and AUTOCLEAR is set to 1 in wsini.ini, window's background will not be sl@0: * totaly cleared. sl@0: */ sl@0: iRedrawWindow->SetBackgroundColor(BackgroundColor()); sl@0: } sl@0: sl@0: iPos.iX = TRnd::rnd(KPosLimit); sl@0: iPos.iY = TRnd::rnd(KPosLimit); sl@0: iSize.iWidth = TRnd::rnd(KPosLimit); sl@0: iSize.iHeight = TRnd::rnd(KPosLimit); sl@0: iPos.iX -= iSize.iWidth / 2; sl@0: iPos.iY -= iSize.iHeight / 2; sl@0: SetPos(iPos); sl@0: SetSize(iSize); sl@0: iWindow->SetOrdinalPosition(0); sl@0: } sl@0: sl@0: void CCompWin::PostConstructL() sl@0: { sl@0: iVisible = ETrue; sl@0: iWindow->Activate(); sl@0: } sl@0: sl@0: void CCompWin::SetPos(const TPoint & aPos) sl@0: { sl@0: iPos = aPos; sl@0: iWindow->SetPosition(iPos); sl@0: } sl@0: sl@0: void CCompWin::SetSize(const TSize & aSize) sl@0: { sl@0: iSize = aSize; sl@0: TInt err = iWindow->SetSizeErr(iSize); sl@0: if (err != KErrNone) sl@0: { sl@0: __DEBUGGER(); sl@0: } sl@0: if (iRedrawWindow) sl@0: { sl@0: iRedrawWindow->Invalidate(); sl@0: } sl@0: else if (iBackedupWindow) sl@0: { sl@0: Redraw(aSize); sl@0: } sl@0: } sl@0: sl@0: sl@0: void CCompWin::BringToFrontL() sl@0: { sl@0: if (iParent) sl@0: { sl@0: iParent->RemoveChild(this); sl@0: iParent->AddChildL(this); sl@0: } sl@0: iWindow->SetOrdinalPosition(0); sl@0: } sl@0: sl@0: void CCompWin::SendToBackL() sl@0: { sl@0: if (iParent) sl@0: { sl@0: iParent->RemoveChild(this); sl@0: iParent->iChildren.Insert(this, 0); sl@0: iWindow->SetOrdinalPosition(-1); sl@0: } sl@0: } sl@0: sl@0: void CCompWin::RemoveChild(CCompWin* aChild) sl@0: { sl@0: TInt num = iChildren.Find(aChild); sl@0: if (num != KErrNotFound) sl@0: { sl@0: iChildren.Remove(num); sl@0: } sl@0: } sl@0: sl@0: void CCompWin::AddChildL(CCompWin* aChild) sl@0: { sl@0: CleanupStack::PushL(aChild); sl@0: User::LeaveIfError(iChildren.Append(aChild)); sl@0: CleanupStack::Pop(aChild); sl@0: } sl@0: sl@0: CCompWin * CCompWin::RandomWindow() sl@0: { sl@0: TInt num = TRnd::rnd(iChildren.Count() + 1); sl@0: sl@0: if (num == iChildren.Count()) sl@0: { sl@0: return this; sl@0: } sl@0: else sl@0: { sl@0: return iChildren[num]->RandomWindow(); sl@0: } sl@0: } sl@0: sl@0: void CCompWin::ToggleVisible() sl@0: { sl@0: iVisible = !iVisible; sl@0: iWindow->SetVisible(iVisible); sl@0: } sl@0: sl@0: void CCompWin::Dump(RFile& aFile, TPoint& aOrigin, TInt aDepth, CCompWin * aMark) sl@0: { sl@0: TPoint abs = aOrigin + iPos; sl@0: static TBuf8<256> buf; sl@0: buf.SetLength(0); sl@0: for (TInt d = 0; d < aDepth; ++d) sl@0: { sl@0: buf.Append(_L8(" ")); sl@0: } sl@0: buf.Append(_L8("rel [")); sl@0: buf.AppendNum((TInt64)iPos.iX); sl@0: buf.Append(_L8(",")); sl@0: buf.AppendNum((TInt64)iPos.iY); sl@0: buf.Append(_L8("] abs [")); sl@0: buf.AppendNum((TInt64)abs.iX); sl@0: buf.Append(_L8(",")); sl@0: buf.AppendNum((TInt64)abs.iY); sl@0: buf.Append(_L8("] size [")); sl@0: buf.AppendNum((TInt64)iSize.iWidth); sl@0: buf.Append(_L8(",")); sl@0: buf.AppendNum((TInt64)iSize.iHeight); sl@0: buf.Append(_L8("] ")); sl@0: if (iVisible) sl@0: { sl@0: buf.Append(_L8("visible ")); sl@0: } sl@0: else sl@0: { sl@0: buf.Append(_L8("invisible ")); sl@0: } sl@0: buf.Append(TypeName()); sl@0: if (this == aMark) sl@0: { sl@0: buf.Append(_L8(" ")); sl@0: } sl@0: buf.Append(_L8("\r\n")); sl@0: aFile.Write(buf); sl@0: sl@0: DumpDetails(aFile, aDepth); sl@0: sl@0: for (TInt num = 0; num < iChildren.Count(); ++num) sl@0: { sl@0: iChildren[num]->Dump(aFile, abs, aDepth + 1, aMark); sl@0: } sl@0: } sl@0: sl@0: void CCompWin::DumpDetails(RFile&, TInt) sl@0: { sl@0: } sl@0: sl@0: void CCompWin::HandleRedraw(TWsRedrawEvent& aEvent) sl@0: { sl@0: Redraw(aEvent.Rect()); sl@0: } sl@0: sl@0: void CCompWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin) sl@0: { sl@0: if (aClip.Width() > 0 && aClip.Height() > 0) sl@0: { sl@0: TPoint origin = iPos + aOrigin; sl@0: TRect clip(origin, iSize); sl@0: clip.Intersection(aClip); sl@0: sl@0: for (TInt num = 0; num < iChildren.Count(); ++num) sl@0: { sl@0: if (iChildren[num]->iVisible) sl@0: { sl@0: iChildren[num]->DrawBitmap(aGc, clip, origin); sl@0: } sl@0: } sl@0: } sl@0: } sl@0: sl@0: /** sl@0: Fills window's background with it's background color, sl@0: then iterates visible children sl@0: */ sl@0: void CCompWin::ClearBitmapBackground(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin) sl@0: { sl@0: if (aClip.Width() > 0 && aClip.Height() > 0) sl@0: { sl@0: TPoint origin = iPos + aOrigin; sl@0: TRect clip(origin, iSize); sl@0: clip.Intersection(aClip); sl@0: sl@0: aGc->Reset(); sl@0: aGc->SetOrigin(TPoint(0,0)); sl@0: aGc->SetPenColor(BackgroundColor()); sl@0: aGc->SetBrushColor(BackgroundColor()); sl@0: aGc->SetPenStyle(CGraphicsContext::ESolidPen); sl@0: aGc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: aGc->DrawRect(clip); sl@0: sl@0: for (TInt num = 0; num < iChildren.Count(); ++num) sl@0: { sl@0: if (iChildren[num]->iVisible) sl@0: { sl@0: iChildren[num]->ClearBitmapBackground(aGc, clip, origin); sl@0: } sl@0: } sl@0: } sl@0: } sl@0: sl@0: TBool CCompWin::QueryReadyForVerification() sl@0: { sl@0: TBool res = ETrue; sl@0: sl@0: TInt idx = 0; sl@0: sl@0: while ( idx < iChildren.Count() && res ) sl@0: { sl@0: res = iChildren[ idx ]->QueryReadyForVerification(); sl@0: idx++; sl@0: } sl@0: sl@0: return res; sl@0: } sl@0: sl@0: /** sl@0: Subtracts window region from the supplied region sl@0: then calls all children to subtract themsleves sl@0: @param aRegion region from which current window are should be subtructed sl@0: @param aClip clipping area provided by the parent window sl@0: @param aOrigin absolute origin of parent sl@0: */ sl@0: void CCompWin::SubSelfFromRegion(TRegion& aRegion, const TRect& aClip, const TPoint& aOrigin) sl@0: { sl@0: if (!iVisible) sl@0: { sl@0: return; sl@0: } sl@0: TPoint origin = iPos + aOrigin; sl@0: TRect clip(origin, iSize); sl@0: clip.Intersection(aClip); sl@0: aRegion.SubRect(clip); sl@0: for (TInt num = 0; num < iChildren.Count(); ++num) sl@0: { sl@0: if (iChildren[num]->iVisible) sl@0: { sl@0: iChildren[num]->SubSelfFromRegion(aRegion, clip, origin); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void CCompWin::SetVerifyTick(TUint32 aTick) sl@0: { sl@0: iVerifyTick = aTick; sl@0: for (TInt num = 0; num < iChildren.Count(); ++num) sl@0: { sl@0: if (iChildren[num]->iVisible) sl@0: { sl@0: iChildren[num]->SetVerifyTick(aTick); sl@0: } sl@0: } sl@0: } sl@0: