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
|
sl@0
|
19 |
@internalComponent - Internal Symbian test code
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef __TBITBLTBASE_H__
|
sl@0
|
23 |
#define __TBITBLTBASE_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include "tdirectgdi_test_step_base.h"
|
sl@0
|
26 |
#include <bitdev.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
// target bitmap size
|
sl@0
|
29 |
static const TSize KTarget1Size(200, 200);
|
sl@0
|
30 |
static const TSize KTarget2Size(512, 512); // large target
|
sl@0
|
31 |
// source bitmap size
|
sl@0
|
32 |
static const TSize KBitmap1Size(20, 20);
|
sl@0
|
33 |
static const TSize KBitmap2Size(200, 200);
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
Type of BitBlt family function
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
enum TBitBltFuncType
|
sl@0
|
39 |
{
|
sl@0
|
40 |
EBitBlt,
|
sl@0
|
41 |
EDrawBitmap,
|
sl@0
|
42 |
EBitBltMasked,
|
sl@0
|
43 |
EDrawBitmapMasked
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
Base class for BitBlt() family tests.
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
class CTBitBltBase : public CTDirectGdiStepBase
|
sl@0
|
50 |
{
|
sl@0
|
51 |
public:
|
sl@0
|
52 |
CTBitBltBase();
|
sl@0
|
53 |
~CTBitBltBase();
|
sl@0
|
54 |
|
sl@0
|
55 |
protected:
|
sl@0
|
56 |
// base tests
|
sl@0
|
57 |
void TestPositioningBaseL(const TDesC& aTestName, TBitBltFuncType aFunc);
|
sl@0
|
58 |
void TestInvalidParametersBaseL(const TDesC& /*aTestName*/, TBitBltFuncType aFunc);
|
sl@0
|
59 |
void TestSourceBitmapCloningBaseL(const TDesC& aTestName, TBitBltFuncType aFunc);
|
sl@0
|
60 |
|
sl@0
|
61 |
// helper functions
|
sl@0
|
62 |
void WriteTargetOutput(TPtrC aTestCaseName);
|
sl@0
|
63 |
virtual void CreateBitmapsL(TUidPixelFormat aPixelFormat);
|
sl@0
|
64 |
virtual void DeleteBitmaps();
|
sl@0
|
65 |
|
sl@0
|
66 |
// From CStepStep
|
sl@0
|
67 |
virtual TVerdict doTestStepPreambleL();
|
sl@0
|
68 |
virtual TVerdict doTestStepL();
|
sl@0
|
69 |
virtual TVerdict doTestStepPostambleL();
|
sl@0
|
70 |
|
sl@0
|
71 |
void RunBasicTests();
|
sl@0
|
72 |
|
sl@0
|
73 |
private:
|
sl@0
|
74 |
virtual void TestBasicL() = 0;
|
sl@0
|
75 |
|
sl@0
|
76 |
protected:
|
sl@0
|
77 |
TBool iLargeTarget;
|
sl@0
|
78 |
CFbsBitmap* iNotInitialisedBitmap;
|
sl@0
|
79 |
CFbsBitmap* iZeroSizeBitmap;
|
sl@0
|
80 |
CFbsBitmap* iCompressedBitmap;
|
sl@0
|
81 |
CFbsBitmap* iCheckedBoardBitmap1;
|
sl@0
|
82 |
CFbsBitmap* iCheckedBoardBitmap2;
|
sl@0
|
83 |
CFbsBitmap* iConcentricRectsBitmap1;
|
sl@0
|
84 |
CFbsBitmap* iConcentricRectsBitmap2;
|
sl@0
|
85 |
CFbsBitmap* iCheckedBoardWithAlphaBitmap;
|
sl@0
|
86 |
CFbsBitmap* iCompressedBitmapSmall;
|
sl@0
|
87 |
};
|
sl@0
|
88 |
|
sl@0
|
89 |
#endif
|