sl@0
|
1 |
// Copyright (c) 1995-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 |
#include "Graphics/WSGRAPHICDRAWER.H"
|
sl@0
|
17 |
#include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
|
sl@0
|
18 |
#include "Graphics/wsgraphicdrawerinternal.h"
|
sl@0
|
19 |
|
sl@0
|
20 |
// TGraphicDrawerId \\\\\\\\\\\\\\\\\\\\\\\\
|
sl@0
|
21 |
|
sl@0
|
22 |
EXPORT_C TInt TGraphicDrawerId::Compare(const TGraphicDrawerId& aOther) const
|
sl@0
|
23 |
/** Compares another ID with this for equality.
|
sl@0
|
24 |
@param aOther the ID to be compared with this.
|
sl@0
|
25 |
@return 0 if identical, -1 if this is less than aOther and 1 if this is greater than aOther
|
sl@0
|
26 |
*/ {
|
sl@0
|
27 |
// id is expected to differ most 99.99% of the time
|
sl@0
|
28 |
if(iId < aOther.iId)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
return -1;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
else if(iId > aOther.iId)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
return 1;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
// else we have to compare the iIsUid flag too; again, expect it to be a match 99.99% of these times
|
sl@0
|
37 |
else if(iIsUid == aOther.iIsUid)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return 0;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
// collisions of id but not iIsUid are going to be really really rare
|
sl@0
|
42 |
else if(iIsUid)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
return 1;
|
sl@0
|
45 |
}
|
sl@0
|
46 |
else
|
sl@0
|
47 |
{
|
sl@0
|
48 |
return -1;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
EXPORT_C TInt TGraphicDrawerId::Compare(const TGraphicDrawerId& aFirst,const TGraphicDrawerId& aSecond)
|
sl@0
|
53 |
/** Compares two IDs for equality.
|
sl@0
|
54 |
@param aFirst the ID to be compared with aSecond
|
sl@0
|
55 |
@param aSecond the ID to be compared with aFirst
|
sl@0
|
56 |
@return 0 if identical, -1 if aFirst is less than aSecond and 1 if aFirst is greater than aSecond
|
sl@0
|
57 |
*/ {
|
sl@0
|
58 |
return aFirst.Compare(aSecond);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
// MWsAnimationScheduler \\\\\\\\\\\\\\\\\\\\\\\\
|
sl@0
|
62 |
|
sl@0
|
63 |
EXPORT_C void MWsAnimationScheduler::Animate(MWsScreen& aScreen)
|
sl@0
|
64 |
/** Calls the screen's OnAnimation() callback
|
sl@0
|
65 |
@param aScreen the screen to be called back
|
sl@0
|
66 |
*/ {
|
sl@0
|
67 |
aScreen.OnAnimation();
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
EXPORT_C void MWsAnimationScheduler::Animate(MWsScreen& aScreen, TRequestStatus* aFinished)
|
sl@0
|
71 |
/** This method is only here to keep compatibility with NGA Window Server.
|
sl@0
|
72 |
Please use Animate(MWsScreen&) instead!
|
sl@0
|
73 |
@internalTechnology
|
sl@0
|
74 |
*/ {
|
sl@0
|
75 |
aScreen.OnAnimation();
|
sl@0
|
76 |
|
sl@0
|
77 |
if(aFinished)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
*aFinished = KRequestPending;
|
sl@0
|
80 |
User::RequestComplete(aFinished, KErrNone);
|
sl@0
|
81 |
}
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
EXPORT_C void MWsAnimationScheduler::Redraw(MWsScreen& aScreen)
|
sl@0
|
85 |
/** Calls the screen's Redraw() method
|
sl@0
|
86 |
@param aScreen the screen to be redrawn
|
sl@0
|
87 |
*/ {
|
sl@0
|
88 |
aScreen.Redraw();
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C TBool MWsAnimationScheduler::RedrawInvalid(MWsScreen& aScreen,const TArray<TGraphicDrawerId>& aInvalid)
|
sl@0
|
92 |
/** Calls the screen's RedrawInvalid() method
|
sl@0
|
93 |
@param aScreen the screen to be signalled to redraw any affected areas
|
sl@0
|
94 |
@param the list of graphic IDs that are invalid
|
sl@0
|
95 |
@return whether the screen drew anything
|
sl@0
|
96 |
*/ {
|
sl@0
|
97 |
return aScreen.RedrawInvalid(aInvalid);
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
// MWsObjectProvider \\\\\\\\\\\\\\\\\\\\\\\\
|
sl@0
|
101 |
|
sl@0
|
102 |
EXPORT_C TAny* MWsObjectProvider::ResolveObjectInterface(TUint /*aTypeId*/)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
return NULL;
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
// MWsGraphicDrawerEnvironment \\\\\\\\\\\\\\\\\\\\\\\\
|
sl@0
|
108 |
|