sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __SCENECHECKER_H__
|
sl@0
|
17 |
#define __SCENECHECKER_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <graphics/wsscene.h>
|
sl@0
|
20 |
#include <graphics/wsgraphicdrawer.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
class CSceneChecker : public CBase,
|
sl@0
|
23 |
public MWsScene,
|
sl@0
|
24 |
public MWsWindowTreeObserver
|
sl@0
|
25 |
{
|
sl@0
|
26 |
public:
|
sl@0
|
27 |
static CSceneChecker* NewL(MWsGraphicDrawerEnvironment& aEnv, MWsScreen& aScreen);
|
sl@0
|
28 |
~CSceneChecker();
|
sl@0
|
29 |
|
sl@0
|
30 |
void SetScene(MWsScene* aScene);
|
sl@0
|
31 |
void OnEnd();
|
sl@0
|
32 |
|
sl@0
|
33 |
public: // from MWsScene
|
sl@0
|
34 |
TAny* ResolveObjectInterface(TUint aTypeId);
|
sl@0
|
35 |
TInt SetSceneRotation(TSceneRotation aRotation);
|
sl@0
|
36 |
TSceneRotation SceneRotation() const;
|
sl@0
|
37 |
MWsElement* CreateSceneElementL();
|
sl@0
|
38 |
void DestroySceneElement(MWsElement* aLayer);
|
sl@0
|
39 |
void ComposePendingScene(TSurfaceId& aOffScreenTarget, TRequestStatus* aCompleted);
|
sl@0
|
40 |
TInt InsertSceneElement(MWsElement* aInsertElement, MWsElement* aSubordinateElement);
|
sl@0
|
41 |
TInt RemoveSceneElement(MWsElement* aRemoveElement);
|
sl@0
|
42 |
TInt RegisterSurface(const TSurfaceId& aSurface);
|
sl@0
|
43 |
TInt UnregisterSurface(const TSurfaceId& aSurface);
|
sl@0
|
44 |
|
sl@0
|
45 |
public: // from MWsWindowTreeObserver
|
sl@0
|
46 |
void NodeCreated(const MWsWindowTreeNode& aWindowTreeNode, MWsWindowTreeNode const* aParent);
|
sl@0
|
47 |
void NodeReleased(const MWsWindowTreeNode& aWindowTreeNode);
|
sl@0
|
48 |
void NodeActivated(const MWsWindowTreeNode& aWindowTreeNode);
|
sl@0
|
49 |
void NodeExtentChanged(const MWsWindowTreeNode& aWindowTreeNode, const TRect& aRect);
|
sl@0
|
50 |
void SiblingOrderChanged(const MWsWindowTreeNode& aWindowTreeNode, TInt aNewPosition);
|
sl@0
|
51 |
void MovedToWindowGroup(const MWsWindowTreeNode& aWindowTreeNode, const MWsWindowTreeNode& aNewWindowGroup);
|
sl@0
|
52 |
void FlagChanged(const MWsWindowTreeNode& aWindowTreeNode, MWsWindowTreeObserver::TFlags aAttribute, TBool aNewValue);
|
sl@0
|
53 |
void AttributeChanged(const MWsWindowTreeNode& aWindowTreeNode, MWsWindowTreeObserver::TAttributes aAttribute);
|
sl@0
|
54 |
void TransparentRegionChanged(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aNewTransparentRegion, const TRegion* aNewOpaqueRegion);
|
sl@0
|
55 |
void ElementAdded(const MWsWindowTreeNode& aWindowTreeNode, const MWsElement& aLayer);
|
sl@0
|
56 |
void FadeCountChanged(const MWsWindowTreeNode& aWindowTreeNode, TInt aFadeCount);
|
sl@0
|
57 |
void FadeAllChildren(const MWsWindowTreeNode& aWindowTreeNode, TBool aFaded);
|
sl@0
|
58 |
void WindowGroupChained(const MWsWindowTreeNode& aParent, const MWsWindowTreeNode& aChild);
|
sl@0
|
59 |
void WindowGroupChainBrokenAfter(const MWsWindowTreeNode& aWindowGroup);
|
sl@0
|
60 |
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
CSceneChecker(MWsScreen& aScreen);
|
sl@0
|
63 |
private:
|
sl@0
|
64 |
MWsScreen& iScreen;
|
sl@0
|
65 |
MWsScene* iScene;
|
sl@0
|
66 |
MWsElement* iBottomElement;
|
sl@0
|
67 |
TInt iElementSetCount;
|
sl@0
|
68 |
TBool iElementSetChanged;
|
sl@0
|
69 |
RPointerArray<MWsElement> iElementsWithoutAssociatedWindow;
|
sl@0
|
70 |
};
|
sl@0
|
71 |
|
sl@0
|
72 |
#endif //__SCENECHECKER_H__
|