Update contrib.
1 // Copyright (c) 2007-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 __WSPLUGINMANAGER_H__
17 #define __WSPLUGINMANAGER_H__
20 #include "Graphics/WSPLUGIN.H"
21 #include <graphics/wsgraphicdrawerinterface.h>
24 The window server has a single plugin manager object, which maintains the set
27 class CWsPluginManager : public CBase, public MWsPluginManager
30 class CPluginInfo : public CBase
38 static CWsPluginManager* NewL(MWsGraphicDrawerEnvironment& aEnvironment);
41 CWsPlugin * CreatePluginL(const TDesC& aSection);
42 template <class T> T * FindImplementation(TInt & aStart);
43 template <class T> T * FindNamedImplementation(const TDesC& aName);
45 public: // from MWsObjectProvider:
46 TAny * ResolveObjectInterface(TUint aId);
48 public: // from MWsPluginManager
49 TAny * ResolvePluginInterface(TUint aId);
52 CWsPluginManager(MWsGraphicDrawerEnvironment& aEnvironment);
56 RPointerArray<CPluginInfo> iPlugins;
57 MWsGraphicDrawerEnvironment& iEnvironment;
61 This searches for any plugin which implements a specified interface.
62 Calling this function modifies the value of aStart, and passing it back in
63 allows the next implementation to be found.
65 template <class T> T * CWsPluginManager::FindImplementation(TInt & aStart)
67 while (aStart < iPlugins.Count())
69 T * impl = iPlugins[aStart]->iPlugin->ObjectInterface<T>();
80 This searches for any plugin which implements a specified interface and
81 has the specified name returned from PluginName.
83 Maybe plugin name should be a function on an MWsNamed class instead of CWsPlugin?
85 template <class T> T * CWsPluginManager::FindNamedImplementation(const TDesC& aName)
88 while (pos < iPlugins.Count())
90 T * impl = iPlugins[pos]->iPlugin->ObjectInterface<T>();
91 if (impl && iPlugins[pos]->iPlugin->PluginName() == aName)
100 #endif // __WSPLUGINMANAGER_H__