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();
41 void InitializePluginsL(MWsGraphicDrawerEnvironment& aEnvironment);
43 template <class T> T * FindImplementation(TInt & aStart);
44 template <class T> T * FindNamedImplementation(const TDesC& aName);
46 public: // from MWsObjectProvider:
47 TAny * ResolveObjectInterface(TUint aId);
49 public: // from MWsPluginManager
50 TAny * ResolvePluginInterface(TUint aId);
55 CWsPlugin * LoadPluginL(const TDesC& aSection);
58 RPointerArray<CPluginInfo> iPlugins;
59 REComSession& iSession;
63 This searches for any plugin which implements a specified interface.
64 Calling this function modifies the value of aStart, and passing it back in
65 allows the next implementation to be found.
67 template <class T> T * CWsPluginManager::FindImplementation(TInt & aStart)
69 while (aStart < iPlugins.Count())
71 T * impl = iPlugins[aStart]->iPlugin->ObjectInterface<T>();
82 This searches for any plugin which implements a specified interface and
83 has the specified name returned from PluginName.
85 Maybe plugin name should be a function on an MWsNamed class instead of CWsPlugin?
87 template <class T> T * CWsPluginManager::FindNamedImplementation(const TDesC& aName)
90 while (pos < iPlugins.Count())
92 T * impl = iPlugins[pos]->iPlugin->ObjectInterface<T>();
93 if (impl && iPlugins[pos]->iPlugin->PluginName() == aName)
102 #endif // __WSPLUGINMANAGER_H__