os/graphics/windowing/windowserver/test/tauto/mwsgraphicscontexttodirectgdimappings.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) 2008-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
#ifndef __MWSGRAPHICSCONTEXTTODIRECTGDIMAPPINGS_H__
sl@0
    17
#define __MWSGRAPHICSCONTEXTTODIRECTGDIMAPPINGS_H__
sl@0
    18
sl@0
    19
#include <gdi.h>
sl@0
    20
#include <graphics/wsgraphicscontext.h>
sl@0
    21
#include <graphics/directgditypes.h>
sl@0
    22
sl@0
    23
class MWsGraphicsContextToDirectGdiMappings
sl@0
    24
	{
sl@0
    25
public:
sl@0
    26
	static DirectGdi::TFillRule Convert(MWsGraphicsContext::TFillRule aFillRule) { return (DirectGdi::TFillRule)aFillRule; }
sl@0
    27
	static DirectGdi::TPenStyle Convert(MWsGraphicsContext::TPenStyle aPenStyle) { return (DirectGdi::TPenStyle)aPenStyle; }
sl@0
    28
	static DirectGdi::TBrushStyle Convert(MWsGraphicsContext::TBrushStyle aBrushStyle) { return (DirectGdi::TBrushStyle)aBrushStyle; }
sl@0
    29
	static DirectGdi::TTextAlign Convert(MWsGraphicsContext::TTextAlign aTextAlign) { return (DirectGdi::TTextAlign)aTextAlign; }
sl@0
    30
	static DirectGdi::TFontUnderline Convert(MWsGraphicsContext::TFontUnderline aFontUnderline) { return (DirectGdi::TFontUnderline)aFontUnderline; }
sl@0
    31
	static DirectGdi::TFontStrikethrough Convert(MWsGraphicsContext::TFontStrikethrough aFontStrikethrough) { return (DirectGdi::TFontStrikethrough)aFontStrikethrough; }
sl@0
    32
	static const DirectGdi::TTextParameters* Convert(const MWsGraphicsContext::TTextParameters* aParam) { return reinterpret_cast<const DirectGdi::TTextParameters*>(aParam); }
sl@0
    33
	static DirectGdi::TDrawMode LossyConvert(MWsGraphicsContext::TDrawMode aDrawMode)
sl@0
    34
		{return (aDrawMode==MWsGraphicsContext::EDrawModeWriteAlpha ? DirectGdi::EDrawModeWriteAlpha : DirectGdi::EDrawModePEN);}
sl@0
    35
	};
sl@0
    36
sl@0
    37
sl@0
    38
template<class T>
sl@0
    39
class TArrayWrapper : public TArray<T>
sl@0
    40
	{
sl@0
    41
public:
sl@0
    42
	TArrayWrapper(const T* aArray, TInt aCount);
sl@0
    43
private:
sl@0
    44
	static TInt Count(const CBase* aPtr);
sl@0
    45
	static const TAny* At(const CBase* aPtr, TInt aIndex);
sl@0
    46
private:
sl@0
    47
	const T* iArray;
sl@0
    48
	const TInt iCount;
sl@0
    49
	};
sl@0
    50
sl@0
    51
template<class T>
sl@0
    52
TArrayWrapper<T>::TArrayWrapper(const T* aArray, TInt aCount)
sl@0
    53
	: TArray<T>(TArrayWrapper::Count, TArrayWrapper::At, reinterpret_cast<const CBase*>(this)), iArray(aArray), iCount(aCount)
sl@0
    54
	{
sl@0
    55
	//reinterpret_cast above since this class doesn't derive from CBase but TArray is
sl@0
    56
	//only silly requiring CBase as opposed to TAny, so this is safe
sl@0
    57
	ASSERT(iArray);
sl@0
    58
	}
sl@0
    59
sl@0
    60
template<class T>
sl@0
    61
TInt TArrayWrapper<T>::Count(const CBase* aPtr)
sl@0
    62
	{
sl@0
    63
	//reinterpret_cast since this class doesn't derive from CBase but TArray is
sl@0
    64
	//only silly requiring CBase as opposed to TAny, so this is safe
sl@0
    65
	const TArrayWrapper* self = reinterpret_cast<const TArrayWrapper*>(aPtr);
sl@0
    66
	return self->iCount;
sl@0
    67
	}
sl@0
    68
sl@0
    69
template<class T>
sl@0
    70
const TAny* TArrayWrapper<T>::At(const CBase* aPtr, TInt aIndex)
sl@0
    71
	{
sl@0
    72
	//reinterpret_cast since this class doesn't derive from CBase but TArray is
sl@0
    73
	//only silly requiring CBase as opposed to TAny, so this is safe
sl@0
    74
	const TArrayWrapper* self = reinterpret_cast<const TArrayWrapper*>(aPtr);
sl@0
    75
	if(!Rng(0, aIndex, self->iCount - 1))
sl@0
    76
		User::Panic(_L("USER"), 130); //out of bounds (RArray/RPointerArray)
sl@0
    77
	return self->iArray + aIndex;
sl@0
    78
	}
sl@0
    79
sl@0
    80
sl@0
    81
#endif	//__MWSGRAPHICSCONTEXTTODIRECTGDIMAPPINGS_H__