os/graphics/windowing/windowserver/test/t_eventchecker/src/openwfc/scenechecker.cpp
Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include "scenechecker.h"
17 #include <graphics/wselement.h>
20 CSceneChecker* CSceneChecker::NewL(MWsGraphicDrawerEnvironment& /*aEnv*/, MWsScreen& aScreen)
22 CSceneChecker* self = new(ELeave) CSceneChecker(aScreen);
26 CSceneChecker::CSceneChecker(MWsScreen& aScreen)
31 CSceneChecker::~CSceneChecker()
34 iBottomElement = NULL;
35 iElementsWithoutAssociatedWindow.Reset();
38 void CSceneChecker::SetScene(MWsScene* aScene)
43 void CSceneChecker::OnEnd()
45 if(iElementSetChanged)
49 CHK_ASSERT_ALWAYS(iElementSetCount == 0, EEventCheckerPanicElementCountMismatch);
54 MWsElement* layer = iBottomElement;
55 CHK_ASSERT_ALWAYS(!layer->ElementBelow(), EEventCheckerPanicElementLinksMismatch);
57 while(layer->ElementAbove())
59 MWsElement* previousElement = layer;
60 layer = layer->ElementAbove();
62 CHK_ASSERT_ALWAYS(layer->ElementBelow() == previousElement, EEventCheckerPanicElementLinksMismatch);
64 CHK_ASSERT_ALWAYS(iElementSetCount == index + 1, EEventCheckerPanicElementCountMismatch);
66 CHK_ASSERT_ALWAYS(!layer->ElementAbove(), EEventCheckerPanicElementLinksMismatch);
67 while(layer->ElementBelow())
69 MWsElement* previousElement = layer;
70 layer = layer->ElementBelow();
72 CHK_ASSERT_ALWAYS(layer->ElementAbove() == previousElement, EEventCheckerPanicElementLinksMismatch);
74 CHK_ASSERT_ALWAYS(layer == iBottomElement, EEventCheckerPanicElementLinksMismatch);
75 CHK_ASSERT_ALWAYS(index == 0, EEventCheckerPanicElementLinksMismatch);
78 CHK_ASSERT_ALWAYS(iElementsWithoutAssociatedWindow.Count() == 0, EEventCheckerPanicElementsWithoutAssociatedWindow);
81 TAny* CSceneChecker::ResolveObjectInterface(TUint aTypeId)
85 case MWsWindowTreeObserver::EWsObjectInterfaceId:
86 return static_cast<MWsWindowTreeObserver*>(this);
88 return iScene->ResolveObjectInterface(aTypeId);
91 TInt CSceneChecker::SetSceneRotation(TSceneRotation aRotation)
93 return iScene->SetSceneRotation(aRotation);
96 MWsScene::TSceneRotation CSceneChecker::SceneRotation() const
98 return iScene->SceneRotation();
101 MWsElement* CSceneChecker::CreateSceneElementL()
103 return iScene->CreateSceneElementL();
106 void CSceneChecker::DestroySceneElement(MWsElement* aElement)
108 if(iBottomElement == aElement || aElement->ElementAbove() || aElement->ElementBelow()) //part of the layer set
111 iElementSetChanged = ETrue;
112 if(aElement == iBottomElement)
113 iBottomElement = iBottomElement->ElementAbove();
115 iScene->DestroySceneElement(aElement);
118 void CSceneChecker::ComposePendingScene(TSurfaceId& aOffScreenTarget, TRequestStatus* aCompleted)
120 iScene->ComposePendingScene(aOffScreenTarget, aCompleted);
123 TInt CSceneChecker::InsertSceneElement(MWsElement* aInsertElement, MWsElement* aSubordinateElement)
128 iElementSetChanged = ETrue;
130 if(!aSubordinateElement)
132 iBottomElement = aInsertElement;
134 else if(aInsertElement == iBottomElement)
136 iBottomElement = iBottomElement->ElementAbove();
140 aInsertElement->GetRenderStageFlags(flags);
141 if(!(flags & MWsElement::EElementIsIndirectlyRenderedUserInterface)) //the UI element won't be associated with any window
143 err = iElementsWithoutAssociatedWindow.Append(aInsertElement);
147 err = iScene->InsertSceneElement(aInsertElement, aSubordinateElement);
152 const TInt index = iElementsWithoutAssociatedWindow.Find(aInsertElement);
154 iElementsWithoutAssociatedWindow.Remove(index);
160 TInt CSceneChecker::RemoveSceneElement(MWsElement* aRemoveElement)
163 iElementSetChanged = ETrue;
164 if(aRemoveElement == iBottomElement)
165 iBottomElement = iBottomElement->ElementAbove();
166 return iScene->RemoveSceneElement(aRemoveElement);
169 TInt CSceneChecker::RegisterSurface(const TSurfaceId& aSurface)
171 return iScene->RegisterSurface(aSurface);
174 TInt CSceneChecker::UnregisterSurface(const TSurfaceId& aSurface)
176 return iScene->UnregisterSurface(aSurface);
179 void CSceneChecker::NodeCreated(const MWsWindowTreeNode& /*aWindowTreeNode*/, MWsWindowTreeNode const* /*aParent*/)
183 void CSceneChecker::NodeReleased(const MWsWindowTreeNode& /*aWindowTreeNode*/)
187 void CSceneChecker::NodeActivated(const MWsWindowTreeNode& /*aWindowTreeNode*/)
191 void CSceneChecker::NodeExtentChanged(const MWsWindowTreeNode& /*aWindowTreeNode*/, const TRect& /*aRect*/)
195 void CSceneChecker::SiblingOrderChanged(const MWsWindowTreeNode& /*aWindowTreeNode*/, TInt /*aNewPosition*/)
199 void CSceneChecker::MovedToWindowGroup(const MWsWindowTreeNode& /*aWindowTreeNode*/, const MWsWindowTreeNode& /*aNewWindowGroup*/)
203 void CSceneChecker::FlagChanged(const MWsWindowTreeNode& /*aWindowTreeNode*/, MWsWindowTreeObserver::TFlags /*aAttribute*/, TBool /*aNewValue*/)
207 void CSceneChecker::AttributeChanged(const MWsWindowTreeNode& /*aWindowTreeNode*/, MWsWindowTreeObserver::TAttributes /*aAttribute*/)
211 void CSceneChecker::TransparentRegionChanged(const MWsWindowTreeNode& /*aWindowTreeNode*/, const TRegion& /*aNewTransparentRegion*/, const TRegion* /*aNewOpaqueRegion*/)
215 void CSceneChecker::ElementAdded(const MWsWindowTreeNode& aWindowTreeNode, const MWsElement& aElement)
217 CHK_ASSERT_ALWAYS(aWindowTreeNode.Window(), EEventCheckerPanicAcquireElementWithoutWindow);
218 MWsScreen* eventScreen = aWindowTreeNode.Window()->WsScreen();
219 if(eventScreen == &iScreen)
221 const TInt index = iElementsWithoutAssociatedWindow.Find(&aElement);
222 CHK_ASSERT_ALWAYS(index >= 0, EEventCheckerPanicAcquireElementForUnknownElement);
223 iElementsWithoutAssociatedWindow.Remove(index);
227 void CSceneChecker::FadeCountChanged(const MWsWindowTreeNode& /*aWindowTreeNode*/, TInt /*aFadeCount*/)
231 void CSceneChecker::FadeAllChildren(const MWsWindowTreeNode& /*aWindowTreeNode*/, TBool /*aFaded*/)
235 void CSceneChecker::WindowGroupChained(const MWsWindowTreeNode& /*aParent*/, const MWsWindowTreeNode& /*aChild*/)
239 void CSceneChecker::WindowGroupChainBrokenAfter(const MWsWindowTreeNode& /*aWindowGroup*/)