os/graphics/windowing/windowserver/test/tframerate/wsframerate.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-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 - Test client library used to communicate between framerate plug-in and twsgraphs.
sl@0
    19
 @internalComponent - Internal Symbian test code
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "wsframerate.h"
sl@0
    23
sl@0
    24
//Constant message handle, which is used to send count value between client and plug-in
sl@0
    25
const TUint8 KCmdCount=0;
sl@0
    26
sl@0
    27
LOCAL_C const TUid KUidWsGraphicTestFrameRate = {0x1028292A};
sl@0
    28
sl@0
    29
/**
sl@0
    30
Creates new object of type CGraphicTestFrameRate based on existing plug-in id.
sl@0
    31
This interally constructs CWsGraphic object
sl@0
    32
sl@0
    33
@param	TUid	Test plug-in id
sl@0
    34
*/
sl@0
    35
sl@0
    36
EXPORT_C CGraphicTestFrameRate* CGraphicTestFrameRate::NewL(TUid aUid)
sl@0
    37
	{
sl@0
    38
	CGraphicTestFrameRate* self = new(ELeave) CGraphicTestFrameRate;
sl@0
    39
	CleanupStack::PushL(self);
sl@0
    40
	self->BaseConstructL(aUid,KUidWsGraphicTestFrameRate,KNullDesC8());
sl@0
    41
	CleanupStack::Pop(self);
sl@0
    42
	return self;
sl@0
    43
	}
sl@0
    44
sl@0
    45
/**
sl@0
    46
Creates new object of type CGraphicTestFrameRate based on active screen number.
sl@0
    47
This interally constructs CWsGraphic object
sl@0
    48
sl@0
    49
@param	TInt	Screen number
sl@0
    50
*/
sl@0
    51
EXPORT_C CGraphicTestFrameRate* CGraphicTestFrameRate::NewL(TInt aScreen)
sl@0
    52
	{
sl@0
    53
	CGraphicTestFrameRate* self = new(ELeave) CGraphicTestFrameRate;
sl@0
    54
	CleanupStack::PushL(self);
sl@0
    55
	TBuf8<1> data;
sl@0
    56
	data.Append((TUint8)aScreen);
sl@0
    57
	self->BaseConstructL(KUidWsGraphicTestFrameRate,data);
sl@0
    58
	CleanupStack::Pop(self);
sl@0
    59
	return self;
sl@0
    60
	}
sl@0
    61
sl@0
    62
EXPORT_C CGraphicTestFrameRate::~CGraphicTestFrameRate()
sl@0
    63
	{
sl@0
    64
	}
sl@0
    65
sl@0
    66
CGraphicTestFrameRate::CGraphicTestFrameRate()
sl@0
    67
	{
sl@0
    68
	}
sl@0
    69
sl@0
    70
/**
sl@0
    71
Handles message between client and Twsgraphs test call.
sl@0
    72
sl@0
    73
@param	TDesc8	Descriptor values passed between client and plugin
sl@0
    74
*/
sl@0
    75
void CGraphicTestFrameRate::HandleMessage(const TDesC8& aData)
sl@0
    76
	{
sl@0
    77
	if (aData.Size()>1)
sl@0
    78
		{
sl@0
    79
		Mem::Copy(iCount, aData.Ptr(),(aData.Size()));
sl@0
    80
		}
sl@0
    81
	iCallBack.CallBack();
sl@0
    82
	}
sl@0
    83
sl@0
    84
void CGraphicTestFrameRate::OnReplace()
sl@0
    85
	{
sl@0
    86
	}
sl@0
    87
sl@0
    88
/**
sl@0
    89
Query a message value from test plug-in.
sl@0
    90
sl@0
    91
@param	TAnimRate	Drawing count for two animations.
sl@0
    92
*/
sl@0
    93
EXPORT_C TInt CGraphicTestFrameRate::QueryPlugin(TAnimRate& aCount)
sl@0
    94
	{
sl@0
    95
	TBuf8<1> cmd;
sl@0
    96
	cmd.Append(KCmdCount);
sl@0
    97
	SendMessage(cmd);
sl@0
    98
	TInt err = Flush();
sl@0
    99
	if (err!=KErrNone)
sl@0
   100
		return err;
sl@0
   101
	iCount=&aCount;
sl@0
   102
	return KErrNone;
sl@0
   103
	}
sl@0
   104
sl@0
   105
/**
sl@0
   106
Set the callback function
sl@0
   107
sl@0
   108
@param	TCallBack	Name of the callback function to invoke.
sl@0
   109
*/
sl@0
   110
EXPORT_C void CGraphicTestFrameRate::SetCallBack(TCallBack aCallBack)
sl@0
   111
	{
sl@0
   112
	iCallBack = aCallBack;
sl@0
   113
	}