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 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef ANIMATED_H
|
sl@0
|
23 |
#define ANIMATED_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <w32std.h>
|
sl@0
|
26 |
#include "compwin.h"
|
sl@0
|
27 |
#include "test_step_conf.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
_LIT8(KAnimatedWindowType, "Animated");
|
sl@0
|
30 |
|
sl@0
|
31 |
class CAnimatedWin : public CCompWin
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
static CAnimatedWin* NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
|
sl@0
|
35 |
static void LoadConfiguration(const MTestStepConfigurationContext* aContext);
|
sl@0
|
36 |
static TBool IsEnabled() { return iEnabled; }
|
sl@0
|
37 |
|
sl@0
|
38 |
~CAnimatedWin();
|
sl@0
|
39 |
|
sl@0
|
40 |
// from CCompWin
|
sl@0
|
41 |
void Redraw(const TRect& aRect);
|
sl@0
|
42 |
void DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin);
|
sl@0
|
43 |
void SetSize(const TSize & aSize);
|
sl@0
|
44 |
void SetPos(const TPoint & aPos);
|
sl@0
|
45 |
virtual const TDesC8& TypeName() { return KAnimatedWindowType; }
|
sl@0
|
46 |
void DumpDetails(RFile & aFile, TInt aDepth);
|
sl@0
|
47 |
|
sl@0
|
48 |
protected:
|
sl@0
|
49 |
CAnimatedWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc);
|
sl@0
|
50 |
void ConstructL();
|
sl@0
|
51 |
|
sl@0
|
52 |
// from CCompWin
|
sl@0
|
53 |
TBool QueryReadyForVerification();
|
sl@0
|
54 |
|
sl@0
|
55 |
private:
|
sl@0
|
56 |
void SetAnimPos(const TPoint& aPos);
|
sl@0
|
57 |
void AppendTime(TDes& aTimeText,const TTime& aTime) const;
|
sl@0
|
58 |
|
sl@0
|
59 |
static TBool iEnabled;
|
sl@0
|
60 |
static TBool iTransparent;
|
sl@0
|
61 |
static TBool iTransparentForegroundWindow;
|
sl@0
|
62 |
|
sl@0
|
63 |
private:
|
sl@0
|
64 |
class RStressAnim : public RAnim
|
sl@0
|
65 |
{
|
sl@0
|
66 |
public:
|
sl@0
|
67 |
RStressAnim (RAnimDll& aAnimDll);
|
sl@0
|
68 |
TInt Construct(const RWindowBase &aDevice, const TDesC8 &aParams);
|
sl@0
|
69 |
|
sl@0
|
70 |
TInt RequestAnimThis(TInt aOpcode);
|
sl@0
|
71 |
TInt RequestAnimThis(TInt aOpcode, const TDesC8 &aParams);
|
sl@0
|
72 |
|
sl@0
|
73 |
friend class CAnimatedWin;
|
sl@0
|
74 |
};
|
sl@0
|
75 |
|
sl@0
|
76 |
enum TValues
|
sl@0
|
77 |
{
|
sl@0
|
78 |
ENofFrames = 2,
|
sl@0
|
79 |
EFrame1 = 0,
|
sl@0
|
80 |
EFrame2 = 1,
|
sl@0
|
81 |
EFrameSzX = 64,
|
sl@0
|
82 |
EFrameSzY = 64,
|
sl@0
|
83 |
EFrameSzXHalf = (EFrameSzX / 2),
|
sl@0
|
84 |
EFrameSzYHalf = (EFrameSzY / 2),
|
sl@0
|
85 |
EFrameSzXQtr = (EFrameSzX / 4),
|
sl@0
|
86 |
EFrameSzYQtr = (EFrameSzY / 4),
|
sl@0
|
87 |
EFrameSzXEgt = (EFrameSzX / 8),
|
sl@0
|
88 |
EFrameSzYEgt = (EFrameSzY / 8),
|
sl@0
|
89 |
EFrameDurMult = 100000,
|
sl@0
|
90 |
EFrameDurMaxTenthSec = 15,
|
sl@0
|
91 |
EWatchUrgentSync = 100000, // 1/10 sec
|
sl@0
|
92 |
EWatchLazySync = 800000, // 8/10 sec
|
sl@0
|
93 |
EWatchSafeGap = 100000,
|
sl@0
|
94 |
EWatchMatchGap = 900000
|
sl@0
|
95 |
};
|
sl@0
|
96 |
|
sl@0
|
97 |
RAnimDll iAnimDll;
|
sl@0
|
98 |
RStressAnim* iAnim;
|
sl@0
|
99 |
|
sl@0
|
100 |
CFbsBitmap* iAnimContent [ENofFrames];
|
sl@0
|
101 |
CFbsBitmap* iAnimMask;
|
sl@0
|
102 |
|
sl@0
|
103 |
CFbsFont* iAnimFont;
|
sl@0
|
104 |
|
sl@0
|
105 |
CFbsBitmapDevice* iAnimCntDevice [ENofFrames];
|
sl@0
|
106 |
CFbsBitmapDevice* iAnimMskDevice;
|
sl@0
|
107 |
|
sl@0
|
108 |
TBool iConstructed;
|
sl@0
|
109 |
|
sl@0
|
110 |
TRgb iBgColor;
|
sl@0
|
111 |
|
sl@0
|
112 |
TTimeIntervalMicroSeconds32
|
sl@0
|
113 |
iFrameDuration;
|
sl@0
|
114 |
|
sl@0
|
115 |
TUint32 iAnimStartup,
|
sl@0
|
116 |
iAnimLastKnownAction;
|
sl@0
|
117 |
TInt iKernelTicksPeriod;
|
sl@0
|
118 |
|
sl@0
|
119 |
RBlankWindow* iForeWin; //transparent foreground window
|
sl@0
|
120 |
};
|
sl@0
|
121 |
|
sl@0
|
122 |
|
sl@0
|
123 |
#endif // ANIMATED_H
|