sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "graphicsresourcewrapper.h" sl@0: sl@0: /* sl@0: This file is used to create a stub DLL for ROMs where graphics sl@0: resource isn't present, hence all functions are empty. However, sl@0: it is not expected this DLL will ever be loaded since the user sl@0: won't be able to create a RSgDrawable in the first place (and sl@0: this class is only used when trying to draw an existing RSgDrawable). sl@0: */ sl@0: sl@0: class CGraphicsResourceWrapperImpl : public CGraphicsResourceWrapper sl@0: { sl@0: public: sl@0: IMPORT_C static CGraphicsResourceWrapper* New(); sl@0: sl@0: RSgDrawable* NewDrawableL(); sl@0: TInt Open(RSgDrawable& aDrawable, const TSgDrawableId& aDrawableId); sl@0: void Close(RSgDrawable& aDrawable); sl@0: TBool IsNull(const RSgDrawable& aDrawable); sl@0: TSgDrawableId Id(const RSgDrawable& aDrawable); sl@0: }; sl@0: sl@0: EXPORT_C CGraphicsResourceWrapper* CGraphicsResourceWrapperImpl::New() sl@0: { sl@0: return new CGraphicsResourceWrapperImpl; sl@0: } sl@0: sl@0: RSgDrawable* CGraphicsResourceWrapperImpl::NewDrawableL() sl@0: { sl@0: User::Leave(KErrNotSupported); sl@0: return NULL; sl@0: } sl@0: sl@0: TInt CGraphicsResourceWrapperImpl::Open(RSgDrawable& /*aDrawable*/, const TSgDrawableId& /*aDrawableId*/) sl@0: { sl@0: return KErrNotSupported; sl@0: } sl@0: sl@0: void CGraphicsResourceWrapperImpl::Close(RSgDrawable& /*aDrawable*/) sl@0: { sl@0: } sl@0: sl@0: TBool CGraphicsResourceWrapperImpl::IsNull(const RSgDrawable& /*aDrawable*/) sl@0: { sl@0: return ETrue; sl@0: } sl@0: sl@0: TSgDrawableId CGraphicsResourceWrapperImpl::Id(const RSgDrawable& /*aDrawable*/) sl@0: { sl@0: return TSgDrawableId(); sl@0: }