Update contrib.
1 // Copyright (c) 2007-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.
18 @test - Test client library used to communicate between framerate plug-in and twsgraphs.
19 @internalComponent - Internal Symbian test code
22 #include "wsframerate.h"
24 //Constant message handle, which is used to send count value between client and plug-in
25 const TUint8 KCmdCount=0;
27 LOCAL_C const TUid KUidWsGraphicTestFrameRate = {0x1028292A};
30 Creates new object of type CGraphicTestFrameRate based on existing plug-in id.
31 This interally constructs CWsGraphic object
33 @param TUid Test plug-in id
36 EXPORT_C CGraphicTestFrameRate* CGraphicTestFrameRate::NewL(TUid aUid)
38 CGraphicTestFrameRate* self = new(ELeave) CGraphicTestFrameRate;
39 CleanupStack::PushL(self);
40 self->BaseConstructL(aUid,KUidWsGraphicTestFrameRate,KNullDesC8());
41 CleanupStack::Pop(self);
46 Creates new object of type CGraphicTestFrameRate based on active screen number.
47 This interally constructs CWsGraphic object
49 @param TInt Screen number
51 EXPORT_C CGraphicTestFrameRate* CGraphicTestFrameRate::NewL(TInt aScreen)
53 CGraphicTestFrameRate* self = new(ELeave) CGraphicTestFrameRate;
54 CleanupStack::PushL(self);
56 data.Append((TUint8)aScreen);
57 self->BaseConstructL(KUidWsGraphicTestFrameRate,data);
58 CleanupStack::Pop(self);
62 EXPORT_C CGraphicTestFrameRate::~CGraphicTestFrameRate()
66 CGraphicTestFrameRate::CGraphicTestFrameRate()
71 Handles message between client and Twsgraphs test call.
73 @param TDesc8 Descriptor values passed between client and plugin
75 void CGraphicTestFrameRate::HandleMessage(const TDesC8& aData)
79 Mem::Copy(iCount, aData.Ptr(),(aData.Size()));
84 void CGraphicTestFrameRate::OnReplace()
89 Query a message value from test plug-in.
91 @param TAnimRate Drawing count for two animations.
93 EXPORT_C TInt CGraphicTestFrameRate::QueryPlugin(TAnimRate& aCount)
96 cmd.Append(KCmdCount);
106 Set the callback function
108 @param TCallBack Name of the callback function to invoke.
110 EXPORT_C void CGraphicTestFrameRate::SetCallBack(TCallBack aCallBack)
112 iCallBack = aCallBack;