os/graphics/windowing/windowserver/test/t_stress/tstressanim/inc/stressanim.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 
    23 #if !defined(__STRESSTESTANIM_H__)
    24 #define __STRESSTESTANIM_H__
    25 
    26 #include <e32std.h>
    27 #include <w32std.h>
    28 #include <w32adll.h>
    29 #include <bitstd.h>
    30 
    31 
    32 class CStressWindowAnim : public CWindowAnim
    33 	{
    34 	enum {ENumPolyPoints=9};
    35 public:
    36 	~CStressWindowAnim();
    37 	virtual void ConstructL(TAny *aArgs, TBool aHasFocus);
    38 	virtual void Animate(TDateTime *aDateTime);
    39 	virtual void Redraw();
    40 	virtual void Command(TInt aOpcode, TAny *aArgs);
    41 	virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
    42 	void SetPolyList(const TRect &aRect);
    43 	void DrawPolyLine();
    44 	void DrawBitmap();
    45 	void DrawText();
    46 	void TweakPolyList(TInt aState);
    47 	void FocusChanged(TBool aState);
    48 	void InvalidateText();
    49 	void InvalidateBitmap();
    50 	//Pure virtual function from MEventHandler
    51 	virtual TBool OfferRawEvent(const TRawEvent &aRawEvent);
    52 private:
    53 	void AppendTime(TDes& aTimeText,const TTime& aTime) const;
    54 private:
    55 	TPoint iPos;
    56 	TSize iSize;
    57 	TInt iColor;
    58 	TBool iMasked;
    59 	TRect iPolyRect;
    60 	TInt iPolyState;
    61 	TInt iWiggleSize;
    62 	TPoint iTextPos;
    63 	TBool iHasFocus;
    64 	CArrayFixFlat<TPoint> *iPolyList;
    65 	CFbsBitmap iBitmap1;
    66 	CFbsBitmap iBitmap2;
    67 	CFbsBitmap iMask;
    68 	CFbsFont *iFont;
    69 	
    70 	TUint32	iLastAnimShot;
    71 	TBool iDoAnimation;
    72 	TInt iKernelTicksPeriod;
    73 	};
    74 	
    75 class CStressAnimDll : public CAnimDll 
    76 	{
    77 public:
    78 	CAnim *CreateInstanceL(TInt aType);
    79 private:
    80 	};
    81 	
    82 
    83 #endif // __STRESSTESTANIM_H__