Update contrib.
1 // Copyright (c) 2005-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.
14 // Server-side base-classes for graphic drawer plugins
18 #ifndef __WSPLUGIN_H__
19 #define __WSPLUGIN_H__
24 #include <graphics/wsgraphicdrawerinterface.h>
27 Window Server interface to the Window Server plugin API.
32 class CWsPlugin : public CBase, public MWsObjectProvider
40 This function should be overriden by all derived classes. The first
41 call the implementation of this function should make is to BaseConstructL().
42 @param aEnv the environment this drawer exists in
43 @param aData arbitrary data for constructing this instance, sent from
46 virtual void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TDesC8& aData) = 0;
47 IMPORT_C ~CWsPlugin();
48 IMPORT_C virtual const TDesC & PluginName() const;
50 static TInt DtorIDKeyOffset() { return _FOFF(CWsPlugin,iDtor_ID_Key); }
54 IMPORT_C void BaseConstructL(MWsGraphicDrawerEnvironment& aEnv);
55 IMPORT_C MWsGraphicDrawerEnvironment& Env();
56 IMPORT_C const MWsGraphicDrawerEnvironment& Env() const;
59 CWsPlugin(const CWsPlugin &); // no implementation
60 CWsPlugin & operator=(const CWsPlugin &); // no implementation
68 #endif //#ifndef __WSPLUGIN_H__