os/graphics/windowing/windowserver/graphicsresourcewrapper/graphicsresourcewrapper_stub.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/graphicsresourcewrapper/graphicsresourcewrapper_stub.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,66 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "graphicsresourcewrapper.h"
1.20 +
1.21 +/*
1.22 +This file is used to create a stub DLL for ROMs where graphics
1.23 +resource isn't present, hence all functions are empty. However,
1.24 +it is not expected this DLL will ever be loaded since the user
1.25 +won't be able to create a RSgDrawable in the first place (and
1.26 +this class is only used when trying to draw an existing RSgDrawable).
1.27 +*/
1.28 +
1.29 +class CGraphicsResourceWrapperImpl : public CGraphicsResourceWrapper
1.30 + {
1.31 +public:
1.32 + IMPORT_C static CGraphicsResourceWrapper* New();
1.33 +
1.34 + RSgDrawable* NewDrawableL();
1.35 + TInt Open(RSgDrawable& aDrawable, const TSgDrawableId& aDrawableId);
1.36 + void Close(RSgDrawable& aDrawable);
1.37 + TBool IsNull(const RSgDrawable& aDrawable);
1.38 + TSgDrawableId Id(const RSgDrawable& aDrawable);
1.39 + };
1.40 +
1.41 +EXPORT_C CGraphicsResourceWrapper* CGraphicsResourceWrapperImpl::New()
1.42 + {
1.43 + return new CGraphicsResourceWrapperImpl;
1.44 + }
1.45 +
1.46 +RSgDrawable* CGraphicsResourceWrapperImpl::NewDrawableL()
1.47 + {
1.48 + User::Leave(KErrNotSupported);
1.49 + return NULL;
1.50 + }
1.51 +
1.52 +TInt CGraphicsResourceWrapperImpl::Open(RSgDrawable& /*aDrawable*/, const TSgDrawableId& /*aDrawableId*/)
1.53 + {
1.54 + return KErrNotSupported;
1.55 + }
1.56 +
1.57 +void CGraphicsResourceWrapperImpl::Close(RSgDrawable& /*aDrawable*/)
1.58 + {
1.59 + }
1.60 +
1.61 +TBool CGraphicsResourceWrapperImpl::IsNull(const RSgDrawable& /*aDrawable*/)
1.62 + {
1.63 + return ETrue;
1.64 + }
1.65 +
1.66 +TSgDrawableId CGraphicsResourceWrapperImpl::Id(const RSgDrawable& /*aDrawable*/)
1.67 + {
1.68 + return TSgDrawableId();
1.69 + }