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 |
|
sl@0
|
23 |
#if !defined(__STRESSTESTANIM_H__)
|
sl@0
|
24 |
#define __STRESSTESTANIM_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <e32std.h>
|
sl@0
|
27 |
#include <w32std.h>
|
sl@0
|
28 |
#include <w32adll.h>
|
sl@0
|
29 |
#include <bitstd.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
class CStressWindowAnim : public CWindowAnim
|
sl@0
|
33 |
{
|
sl@0
|
34 |
enum {ENumPolyPoints=9};
|
sl@0
|
35 |
public:
|
sl@0
|
36 |
~CStressWindowAnim();
|
sl@0
|
37 |
virtual void ConstructL(TAny *aArgs, TBool aHasFocus);
|
sl@0
|
38 |
virtual void Animate(TDateTime *aDateTime);
|
sl@0
|
39 |
virtual void Redraw();
|
sl@0
|
40 |
virtual void Command(TInt aOpcode, TAny *aArgs);
|
sl@0
|
41 |
virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
|
sl@0
|
42 |
void SetPolyList(const TRect &aRect);
|
sl@0
|
43 |
void DrawPolyLine();
|
sl@0
|
44 |
void DrawBitmap();
|
sl@0
|
45 |
void DrawText();
|
sl@0
|
46 |
void TweakPolyList(TInt aState);
|
sl@0
|
47 |
void FocusChanged(TBool aState);
|
sl@0
|
48 |
void InvalidateText();
|
sl@0
|
49 |
void InvalidateBitmap();
|
sl@0
|
50 |
//Pure virtual function from MEventHandler
|
sl@0
|
51 |
virtual TBool OfferRawEvent(const TRawEvent &aRawEvent);
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
void AppendTime(TDes& aTimeText,const TTime& aTime) const;
|
sl@0
|
54 |
private:
|
sl@0
|
55 |
TPoint iPos;
|
sl@0
|
56 |
TSize iSize;
|
sl@0
|
57 |
TInt iColor;
|
sl@0
|
58 |
TBool iMasked;
|
sl@0
|
59 |
TRect iPolyRect;
|
sl@0
|
60 |
TInt iPolyState;
|
sl@0
|
61 |
TInt iWiggleSize;
|
sl@0
|
62 |
TPoint iTextPos;
|
sl@0
|
63 |
TBool iHasFocus;
|
sl@0
|
64 |
CArrayFixFlat<TPoint> *iPolyList;
|
sl@0
|
65 |
CFbsBitmap iBitmap1;
|
sl@0
|
66 |
CFbsBitmap iBitmap2;
|
sl@0
|
67 |
CFbsBitmap iMask;
|
sl@0
|
68 |
CFbsFont *iFont;
|
sl@0
|
69 |
|
sl@0
|
70 |
TUint32 iLastAnimShot;
|
sl@0
|
71 |
TBool iDoAnimation;
|
sl@0
|
72 |
TInt iKernelTicksPeriod;
|
sl@0
|
73 |
};
|
sl@0
|
74 |
|
sl@0
|
75 |
class CStressAnimDll : public CAnimDll
|
sl@0
|
76 |
{
|
sl@0
|
77 |
public:
|
sl@0
|
78 |
CAnim *CreateInstanceL(TInt aType);
|
sl@0
|
79 |
private:
|
sl@0
|
80 |
};
|
sl@0
|
81 |
|
sl@0
|
82 |
|
sl@0
|
83 |
#endif // __STRESSTESTANIM_H__
|