os/graphics/windowing/windowserver/graphicsresourcewrapper/graphicsresourcewrapper.h
First public contribution.
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.
14 // graphicsresourcewrapper.cpp
18 #ifndef __GRAPHICSRESOURCEWRAPPER_H__
19 #define __GRAPHICSRESOURCEWRAPPER_H__
22 #include <graphics/sgresource.h>
24 class CGraphicsResourceWrapper;
26 _LIT(KGraphicsResourceWrapperDll, "graphicsresourcewrapper.dll");
32 class CGraphicsResourceWrapperFactory : public CBase
35 inline ~CGraphicsResourceWrapperFactory();
36 inline CGraphicsResourceWrapper* NewGraphicsResourceWrapper();
39 enum { EFactoryMethod = 1 };
44 inline CGraphicsResourceWrapperFactory::~CGraphicsResourceWrapperFactory()
50 inline CGraphicsResourceWrapper* CGraphicsResourceWrapperFactory::NewGraphicsResourceWrapper()
54 if (KErrNone == iLibrary.Load(KGraphicsResourceWrapperDll))
60 typedef CGraphicsResourceWrapper*(* TFactoryMethod)();
61 TFactoryMethod f = reinterpret_cast<TFactoryMethod>(iLibrary.Lookup(EFactoryMethod));
69 A wrapper class around Graphics Resource so that Wserv doesn't need to link
70 against graphics resource.
74 class CGraphicsResourceWrapper : public CBase
77 virtual RSgDrawable* NewDrawableL() = 0;
78 virtual TInt Open(RSgDrawable& aDrawable, const TSgDrawableId& aDrawableId) = 0;
79 virtual void Close(RSgDrawable& aDrawable) = 0;
80 virtual TBool IsNull(const RSgDrawable& aDrawable) = 0;
81 virtual TSgDrawableId Id(const RSgDrawable& aDrawable) = 0;
84 #endif //__GRAPHICSRESOURCEWRAPPER_H__