sl@0: // Copyright (c) 2007-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: // The base class for window server plugins sl@0: // Interface ID : 0x10285A29 sl@0: // DLL ID : 0x10281920 sl@0: // sl@0: // sl@0: sl@0: #include "graphics/WSPLUGIN.H" sl@0: #include sl@0: sl@0: _LIT(KPluginName, "unnamed"); sl@0: sl@0: // CWsPlugin::CPimpl \\\\\\\\\\\\\\\\\\\\\\\\ sl@0: sl@0: /** @internalComponent sl@0: @released sl@0: */ sl@0: NONSHARABLE_CLASS(CWsPlugin::CPimpl): public CBase sl@0: { sl@0: public: sl@0: CPimpl(CWsPlugin& aGraphic,MWsGraphicDrawerEnvironment& aEnv); sl@0: CWsPlugin& iPlugin; sl@0: MWsGraphicDrawerEnvironment& iEnv; sl@0: }; sl@0: sl@0: CWsPlugin::CPimpl::CPimpl(CWsPlugin& aPlugin,MWsGraphicDrawerEnvironment& aEnv): sl@0: iPlugin(aPlugin), iEnv(aEnv) sl@0: { sl@0: } sl@0: sl@0: // CWsPlugin \\\\\\\\\\\\\\\\\\\\\\\\ sl@0: sl@0: /** Constructor sl@0: */ sl@0: EXPORT_C CWsPlugin::CWsPlugin() sl@0: { sl@0: } sl@0: sl@0: /** Destructor sl@0: */ sl@0: EXPORT_C CWsPlugin::~CWsPlugin() sl@0: { sl@0: delete iPimpl; sl@0: sl@0: if(KNullUid != iDtor_ID_Key) sl@0: { sl@0: REComSession::DestroyedImplementation(iDtor_ID_Key); sl@0: } sl@0: } sl@0: sl@0: EXPORT_C void CWsPlugin::BaseConstructL(MWsGraphicDrawerEnvironment& aEnv) sl@0: { sl@0: iPimpl = new(ELeave) CPimpl(*this,aEnv); sl@0: } sl@0: sl@0: EXPORT_C MWsGraphicDrawerEnvironment& CWsPlugin::Env() sl@0: { sl@0: return iPimpl->iEnv; sl@0: } sl@0: sl@0: EXPORT_C const MWsGraphicDrawerEnvironment& CWsPlugin::Env() const sl@0: { sl@0: return iPimpl->iEnv; sl@0: } sl@0: sl@0: EXPORT_C const TDesC & CWsPlugin::PluginName() const sl@0: { sl@0: return (KPluginName); sl@0: }