os/graphics/windowing/windowserver/test/tauto/mwsgraphicscontexttodirectgdimappings.h
Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __MWSGRAPHICSCONTEXTTODIRECTGDIMAPPINGS_H__
17 #define __MWSGRAPHICSCONTEXTTODIRECTGDIMAPPINGS_H__
20 #include <graphics/wsgraphicscontext.h>
21 #include <graphics/directgditypes.h>
23 class MWsGraphicsContextToDirectGdiMappings
26 static DirectGdi::TFillRule Convert(MWsGraphicsContext::TFillRule aFillRule) { return (DirectGdi::TFillRule)aFillRule; }
27 static DirectGdi::TPenStyle Convert(MWsGraphicsContext::TPenStyle aPenStyle) { return (DirectGdi::TPenStyle)aPenStyle; }
28 static DirectGdi::TBrushStyle Convert(MWsGraphicsContext::TBrushStyle aBrushStyle) { return (DirectGdi::TBrushStyle)aBrushStyle; }
29 static DirectGdi::TTextAlign Convert(MWsGraphicsContext::TTextAlign aTextAlign) { return (DirectGdi::TTextAlign)aTextAlign; }
30 static DirectGdi::TFontUnderline Convert(MWsGraphicsContext::TFontUnderline aFontUnderline) { return (DirectGdi::TFontUnderline)aFontUnderline; }
31 static DirectGdi::TFontStrikethrough Convert(MWsGraphicsContext::TFontStrikethrough aFontStrikethrough) { return (DirectGdi::TFontStrikethrough)aFontStrikethrough; }
32 static const DirectGdi::TTextParameters* Convert(const MWsGraphicsContext::TTextParameters* aParam) { return reinterpret_cast<const DirectGdi::TTextParameters*>(aParam); }
33 static DirectGdi::TDrawMode LossyConvert(MWsGraphicsContext::TDrawMode aDrawMode)
34 {return (aDrawMode==MWsGraphicsContext::EDrawModeWriteAlpha ? DirectGdi::EDrawModeWriteAlpha : DirectGdi::EDrawModePEN);}
39 class TArrayWrapper : public TArray<T>
42 TArrayWrapper(const T* aArray, TInt aCount);
44 static TInt Count(const CBase* aPtr);
45 static const TAny* At(const CBase* aPtr, TInt aIndex);
52 TArrayWrapper<T>::TArrayWrapper(const T* aArray, TInt aCount)
53 : TArray<T>(TArrayWrapper::Count, TArrayWrapper::At, reinterpret_cast<const CBase*>(this)), iArray(aArray), iCount(aCount)
55 //reinterpret_cast above since this class doesn't derive from CBase but TArray is
56 //only silly requiring CBase as opposed to TAny, so this is safe
61 TInt TArrayWrapper<T>::Count(const CBase* aPtr)
63 //reinterpret_cast since this class doesn't derive from CBase but TArray is
64 //only silly requiring CBase as opposed to TAny, so this is safe
65 const TArrayWrapper* self = reinterpret_cast<const TArrayWrapper*>(aPtr);
70 const TAny* TArrayWrapper<T>::At(const CBase* aPtr, TInt aIndex)
72 //reinterpret_cast since this class doesn't derive from CBase but TArray is
73 //only silly requiring CBase as opposed to TAny, so this is safe
74 const TArrayWrapper* self = reinterpret_cast<const TArrayWrapper*>(aPtr);
75 if(!Rng(0, aIndex, self->iCount - 1))
76 User::Panic(_L("USER"), 130); //out of bounds (RArray/RPointerArray)
77 return self->iArray + aIndex;
81 #endif //__MWSGRAPHICSCONTEXTTODIRECTGDIMAPPINGS_H__