Update contrib.
1 // Copyright (c) 1995-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 __WSGRAPHICDRAWERCONTEXT_H__
17 #define __WSGRAPHICDRAWERCONTEXT_H__
25 class MWsGraphicDrawerContext
28 virtual void Destroy() = 0;
29 virtual void DrawEllipse(MWsGc& aGc, const TRect& aRect, const TRgb& aColor) const = 0;
32 class CWsGraphicDrawerNgaContext : public CBase, public MWsGraphicDrawerContext
35 static MWsGraphicDrawerContext* NewL();
38 void DrawEllipse(MWsGc& aGc, const TRect& aRect, const TRgb& aColor) const;
41 class CWsGraphicDrawerNonNgaContext : public CBase, public MWsGraphicDrawerContext
44 static MWsGraphicDrawerContext* NewL();
47 void DrawEllipse(MWsGc& aGc, const TRect& aRect, const TRgb& aColor) const;
50 #endif // __WSGRAPHICDRAWERCONTEXT_H__