os/graphics/windowing/windowserver/test/t_ratelimiter/tratelimitdrawer/wsratelimitdrawer.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @internalComponent - Internal Symbian test code
22 #include "wsratelimitdrawer.h"
24 //Constant message handle, which is used to send count value between client and plug-in
25 const TUint8 KCmdCount=0;
28 Creates new object of type CWsRateLimitGraphic based on existing plug-in id.
29 This interally constructs CWsGraphic object
30 @param TUid Test plug-in id
32 EXPORT_C CWsRateLimitGraphic* CWsRateLimitGraphic::NewL(TUid aUid)
34 CWsRateLimitGraphic* self = new(ELeave) CWsRateLimitGraphic;
35 CleanupStack::PushL(self);
36 self->BaseConstructL(aUid,KRateLimitDrawerImplId,KNullDesC8());
37 CleanupStack::Pop(self);
42 Creates new object of type CWsRateLimitGraphic based on active screen number.
43 This interally constructs CWsGraphic object
45 EXPORT_C CWsRateLimitGraphic* CWsRateLimitGraphic::NewL()
47 CWsRateLimitGraphic* self = new(ELeave) CWsRateLimitGraphic;
48 CleanupStack::PushL(self);
49 self->BaseConstructL(KRateLimitDrawerImplId,KNullDesC8());
50 CleanupStack::Pop(self);
54 EXPORT_C CWsRateLimitGraphic::~CWsRateLimitGraphic()
58 CWsRateLimitGraphic::CWsRateLimitGraphic()
62 void CWsRateLimitGraphic::HandleMessage(const TDesC8& aData)
66 Mem::Copy(iAnimData, aData.Ptr(),(aData.Size()));
70 void CWsRateLimitGraphic::OnReplace()
75 Query a message value from test plug-in.
76 @param TAnimData Drawing count for two animations.
78 EXPORT_C TInt CWsRateLimitGraphic::QueryPluginForFrameRate(TAnimData& aAnimData)
81 cmd.Append(KCmdCount);