haitest/bspsvs/suite/common/inc/DrawUtils.h
changeset 0 cec860690d41
equal deleted inserted replaced
-1:000000000000 0:cec860690d41
       
     1 /*
       
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #if (!defined __DRAWUTILS_H__)
       
    21 #define __DRAW_UTILS_H__
       
    22 
       
    23 //	EPOC Includes
       
    24 #include <hal.h>
       
    25 
       
    26 //	User Includes
       
    27 #include "DataWrapperBase.h"
       
    28 
       
    29 
       
    30 
       
    31 class CDrawUtils
       
    32 /**
       
    33 *	Test Utilities class
       
    34 @test
       
    35 @publishedPartner
       
    36 */ 
       
    37 	{
       
    38 public:
       
    39 	static	void 	ColourFillUtility(TUint8 aColorVal,const TPoint& aPos);
       
    40 	static	void    DrawLineUtility(const TPoint& aStartPos, const TPoint& aEndPos,const TUint8 aColorVal);
       
    41 	static	void 	DrawSquareUtility(const TPoint& aTopLeft,const TInt aBoxHeight,const TInt aBoxWidth,TUint8 aColorVal);
       
    42 	static	void    DrawSquareOutLineUtility(const TPoint& aTopLeft,const TInt aBoxHeight,const TInt aBoxWidth,TUint8 aColorVal);
       
    43 	};
       
    44 
       
    45 
       
    46  #endif /* __DRAW_UTILS_H__ */
       
    47  
       
    48  
       
    49 
       
    50 
       
    51