os/graphics/graphicstest/uibench/s60/src/tests_pan/tpan.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 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 - Internal Symbian test code 
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __TPAN_H__
sl@0
    23
#define __TPAN_H__
sl@0
    24
sl@0
    25
sl@0
    26
#include "te_conestepbase.h"
sl@0
    27
sl@0
    28
#include <coecntrl.h> 
sl@0
    29
#include <eikappui.h>
sl@0
    30
sl@0
    31
sl@0
    32
_LIT(KTPan,"tpan");
sl@0
    33
sl@0
    34
sl@0
    35
class CPanAppUi;
sl@0
    36
class CPanControl;
sl@0
    37
sl@0
    38
sl@0
    39
class CTPan : public CTe_ConeStepBase
sl@0
    40
	{
sl@0
    41
public:
sl@0
    42
	CTPan();
sl@0
    43
sl@0
    44
private:
sl@0
    45
    void PanBitmapL();
sl@0
    46
    
sl@0
    47
	// from CTestStep
sl@0
    48
    virtual TVerdict doTestStepPreambleL();
sl@0
    49
	virtual TVerdict doTestStepL();
sl@0
    50
	virtual TVerdict doTestStepPostambleL();
sl@0
    51
	
sl@0
    52
	// from CTe_graphicsperformanceSuiteStepBase
sl@0
    53
	virtual void InitUIL(CCoeEnv* aCoeEnv);
sl@0
    54
	
sl@0
    55
private:
sl@0
    56
    RSemaphore iSemaphore; // used to wait for font control to finish drawing
sl@0
    57
    CPanAppUi*  iAppUi;
sl@0
    58
	};
sl@0
    59
sl@0
    60
sl@0
    61
class CPanAppUi : public CEikAppUi 
sl@0
    62
    {
sl@0
    63
public:
sl@0
    64
    CPanAppUi();
sl@0
    65
    ~CPanAppUi();
sl@0
    66
    void ConstructL(const TRect& aRect);
sl@0
    67
    CPanControl* PanControl();
sl@0
    68
    
sl@0
    69
private:
sl@0
    70
    CPanControl* iPanControl;
sl@0
    71
    };
sl@0
    72
sl@0
    73
sl@0
    74
class CPanControl : public CCoeControl
sl@0
    75
	{	
sl@0
    76
public:
sl@0
    77
    static CPanControl* NewL(const TRect& aRect, const CCoeControl* aParent = NULL);
sl@0
    78
    static CPanControl* NewLC(const TRect& aRect, const CCoeControl* aParent = NULL);
sl@0
    79
    virtual ~CPanControl();
sl@0
    80
    TInt Iterations();
sl@0
    81
    CFbsBitmap* Bitmap();
sl@0
    82
sl@0
    83
private: 
sl@0
    84
	CPanControl();
sl@0
    85
    void ConstructL(const TRect& aRect, const CCoeControl* aParent);
sl@0
    86
    
sl@0
    87
    // from CCoeControl
sl@0
    88
    void Draw(const TRect& aRect) const;
sl@0
    89
    void HandlePointerEventL(const TPointerEvent& aPointerEvent);
sl@0
    90
    
sl@0
    91
private:
sl@0
    92
    RSemaphore iSemaphore; // handle to a Semaphore which is owned by the test step
sl@0
    93
	// The pixel position of the most recent PointerEvent
sl@0
    94
	TPoint iCurrentPointerPos;	
sl@0
    95
	CFbsBitmap* iSourceBitmap;
sl@0
    96
	TInt iIterations;
sl@0
    97
	RWsSession& iWsSession;
sl@0
    98
	};
sl@0
    99
sl@0
   100
#endif