os/graphics/windowing/windowserver/inc/Graphics/openwfc/WSGRAPHICDRAWERINTERFACE.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// WSGRAPHICDRAWERINTEFACE.H
sl@0
    15
// Server-side base-classes for graphic drawer plugins
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef __WSGRAPHICDRAWERINTEFACE_H__
sl@0
    20
#define __WSGRAPHICDRAWERINTEFACE_H__
sl@0
    21
sl@0
    22
#include <e32base.h>
sl@0
    23
#include <w32std.h>
sl@0
    24
#include <gdi.h>
sl@0
    25
#include <bitstd.h>
sl@0
    26
sl@0
    27
class CWsGraphicDrawer;
sl@0
    28
struct TGraphicDrawerId;
sl@0
    29
class MWsEventHandler;
sl@0
    30
class CWsGraphicMessageQueue;
sl@0
    31
class CWsClient;
sl@0
    32
class CWsWindow;
sl@0
    33
sl@0
    34
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
    35
	class MWsFlickerFreeBufferObserver;
sl@0
    36
#endif
sl@0
    37
sl@0
    38
class MWsScreenRedrawObserver;
sl@0
    39
class MWsMemoryRelease;
sl@0
    40
class MEventHandler;
sl@0
    41
class MWsElement;
sl@0
    42
class MWsGraphicsContext;
sl@0
    43
class MWsAnimationScheduler;
sl@0
    44
sl@0
    45
/** 
sl@0
    46
@publishedPartner
sl@0
    47
@released
sl@0
    48
*/
sl@0
    49
enum TWinType
sl@0
    50
	{
sl@0
    51
	EWinTypeClient,
sl@0
    52
	EWinTypeRoot,
sl@0
    53
	EWinTypeGroup,
sl@0
    54
	};
sl@0
    55
sl@0
    56
/** Declares an object type, ETypeId, for a class, in order to allow the WSERV object
sl@0
    57
provider mechanism to locate and provide objects from the class.
sl@0
    58
@publishedPartner
sl@0
    59
@released
sl@0
    60
@see MWsObjectProvider */
sl@0
    61
#define DECLARE_WS_TYPE_ID(id) enum { EWsObjectInterfaceId = id };
sl@0
    62
sl@0
    63
class MWsObjectProvider
sl@0
    64
/** A class for dynamic extension of object instances
sl@0
    65
	WSERV classes which wish to allow dynamic extension show derive those
sl@0
    66
	extensions from MWsObjectProvider and use the DECLARE_WS_TYPE_ID macro
sl@0
    67
	Similiar in principle and operation to CONE's MObjectProvider
sl@0
    68
	@publishedPartner
sl@0
    69
	@released
sl@0
    70
	@see MObjectProvider
sl@0
    71
*/	{
sl@0
    72
public:
sl@0
    73
	template<class T>
sl@0
    74
	T* ObjectInterface()
sl@0
    75
	/** Gets an object of the type defined by the template parameter.
sl@0
    76
sl@0
    77
	@return A pointer to an object of the type required, or NULL if none can be
sl@0
    78
	found. */
sl@0
    79
		{ return (T*)ResolveObjectInterface(T::EWsObjectInterfaceId); }
sl@0
    80
	/** Gets an object of the type defined by the template parameter.
sl@0
    81
	@return A pointer to a const object of the type required, or NULL if none can be
sl@0
    82
	found. */
sl@0
    83
	template<class T>
sl@0
    84
	const T* ObjectInterface() const
sl@0
    85
		{ return (T*)const_cast<MWsObjectProvider*>(this)->ResolveObjectInterface(T::EWsObjectInterfaceId); }
sl@0
    86
	/** Resolve an instance of an interface
sl@0
    87
	should be overriden by implementations when they have custom interfaces to provide. */
sl@0
    88
	IMPORT_C virtual TAny* ResolveObjectInterface(TUint aTypeId);
sl@0
    89
	};
sl@0
    90
sl@0
    91
class MWsScreen: public MWsObjectProvider
sl@0
    92
/** A destination for a drawing occasion of a CWsGraphicDrawer
sl@0
    93
	Used by animation schedulers to update screens
sl@0
    94
	@publishedPartner
sl@0
    95
	@released
sl@0
    96
*/	{
sl@0
    97
public:
sl@0
    98
	using MWsObjectProvider::ResolveObjectInterface;
sl@0
    99
	
sl@0
   100
private:
sl@0
   101
	friend class MWsAnimationScheduler;
sl@0
   102
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   103
	/** Called by the MWsAnimationScheduler when scheduled animation is to be serviced
sl@0
   104
		
sl@0
   105
		WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases.
sl@0
   106
sl@0
   107
		@released */
sl@0
   108
	virtual void OnAnimation() = 0;
sl@0
   109
#else
sl@0
   110
	/** Called by the MWsAnimationScheduler when a scheduled animation is to be serviced.
sl@0
   111
		@param aFinished If not NULL then this is signalled when the animation has 
sl@0
   112
		been processed and further animations may be submitted. An animation may be
sl@0
   113
		submitted prior to signalling, but the render stage pipeline may not be ready
sl@0
   114
		to process it. 
sl@0
   115
		
sl@0
   116
		WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases.
sl@0
   117
sl@0
   118
		@released */
sl@0
   119
	virtual void OnAnimation(TRequestStatus* aFinished) = 0;
sl@0
   120
#endif
sl@0
   121
	/** Called by the MWsAnimationScheduler when the screen needs to be redrawn in its entirity
sl@0
   122
		
sl@0
   123
		WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases.
sl@0
   124
sl@0
   125
		@released */
sl@0
   126
	virtual void Redraw() = 0;
sl@0
   127
	/** Called by MWsAnimationScheduler when the any parts of the screen that potentially contain
sl@0
   128
		commands to draw graphics in the list of IDs passed need to be redrawn
sl@0
   129
		@param aInvalid the list of IDs that are invalid
sl@0
   130
		@return whether the screen did any redrawing
sl@0
   131
		
sl@0
   132
		WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases.
sl@0
   133
sl@0
   134
		@released */
sl@0
   135
	virtual TBool RedrawInvalid(const TArray<TGraphicDrawerId>& aInvalid) = 0;
sl@0
   136
	};
sl@0
   137
sl@0
   138
/**
sl@0
   139
@publishedPartner
sl@0
   140
@prototype
sl@0
   141
*/
sl@0
   142
class CWsMessageData : public CBase, public MWsObjectProvider
sl@0
   143
	{
sl@0
   144
public:
sl@0
   145
	virtual TPtrC8 Data() const = 0;
sl@0
   146
	virtual void Release() = 0;
sl@0
   147
	IMPORT_C TInt ClientHandle() const;
sl@0
   148
	IMPORT_C TInt Id() const;
sl@0
   149
	IMPORT_C const CWsGraphicDrawer* Drawer();
sl@0
   150
	IMPORT_C void SetClientHandle(TInt aClientHandle);
sl@0
   151
	IMPORT_C void SetId( TInt aId);
sl@0
   152
	IMPORT_C void SetDrawer(const CWsGraphicDrawer* aDrawer);
sl@0
   153
private:
sl@0
   154
	friend class CWsGraphicMessageQueue;
sl@0
   155
	friend class CWsClient;
sl@0
   156
	CWsMessageData* iNext;
sl@0
   157
	const CWsGraphicDrawer* iDrawer;
sl@0
   158
	TInt iId;
sl@0
   159
	TInt iClientHandle;
sl@0
   160
	TInt iMWsMessageDataSpare[3];
sl@0
   161
	};
sl@0
   162
sl@0
   163
class MWsClient: public MWsObjectProvider
sl@0
   164
/*** Represents a client session
sl@0
   165
	@publishedPartner 
sl@0
   166
	@released  */
sl@0
   167
	{
sl@0
   168
public:
sl@0
   169
	/** Determines if this client has the specified capability */
sl@0
   170
	virtual TBool HasCapability(TCapability aCapability) const = 0;
sl@0
   171
	/** Retrieves the Secure ID of the client's process */
sl@0
   172
	virtual TSecureId SecureId() const = 0;
sl@0
   173
	/** Retrieves the Vendor ID of the client's process */
sl@0
   174
	virtual TVendorId VendorId() const = 0;
sl@0
   175
private:
sl@0
   176
	friend class CWsGraphicDrawer;
sl@0
   177
	virtual TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf,const TDesC8& aData) = 0;
sl@0
   178
	virtual TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf,CWsMessageData& aData) = 0;
sl@0
   179
	};
sl@0
   180
sl@0
   181
class MWsGraphicDrawerEnvironment: public MWsObjectProvider
sl@0
   182
/** The environment for a graphic drawer
sl@0
   183
@publishedPartner
sl@0
   184
@released
sl@0
   185
*/	{
sl@0
   186
public:
sl@0
   187
	/** Locate a graphic by ID
sl@0
   188
	@return the graphic with that ID, else NULL if no such graphic exists */
sl@0
   189
	virtual const CWsGraphicDrawer* ResolveGraphic(const TGraphicDrawerId& aId) const = 0;
sl@0
   190
	/** The number of screens the device has; this is constant for a device */
sl@0
   191
	virtual TInt ScreenCount() const = 0;
sl@0
   192
	/** Get a particular screen by ordinal
sl@0
   193
	@return the screen, or NULL if aIndex is out of bounds */
sl@0
   194
	virtual MWsScreen* Screen(TInt aIndex) = 0;
sl@0
   195
	/** Get a particular screen by ordinal
sl@0
   196
	@return the screen, or NULL if aIndex is out of bounds */
sl@0
   197
	virtual const MWsScreen* Screen(TInt aIndex) const = 0;
sl@0
   198
	/**  Not supported
sl@0
   199
	@return success of overriding the default scheduler */
sl@0
   200
	virtual TBool SetCustomAnimationScheduler(MWsAnimationScheduler* aScheduler) = 0;
sl@0
   201
	/** Query whether a custom animation scheduler has been set
sl@0
   202
	@return ETrue if the custom animation scheduler has been set */
sl@0
   203
	virtual TBool HasCustomAnimationScheduler() const = 0;
sl@0
   204
	/** Clears a custom animation scheduler
sl@0
   205
	@return success if the custom scheduler was set, and hence removed */
sl@0
   206
	virtual TBool ClearCustomAnimationScheduler(MWsAnimationScheduler* aCurrentScheduler) = 0;
sl@0
   207
protected:
sl@0
   208
	friend class CWsGraphicDrawer;
sl@0
   209
	/** Schedules all potentially affected parts of the screen to repaint
sl@0
   210
	This is called automatically whenever a graphic is added, replaced or removed.
sl@0
   211
	However, if a graphic which changes representation during runtime must call this
sl@0
   212
	explicitly.
sl@0
   213
	Note: this is not a suitable method for animating a graphic.  For animation,
sl@0
   214
	use MWsGc::Invalidate when the graphic is being drawn to schedule the next
sl@0
   215
	animation frame instead.
sl@0
   216
	@param aId the ID of the artwork; the artwork may not exist */
sl@0
   217
	virtual void Invalidate(const TGraphicDrawerId& aId) = 0;
sl@0
   218
public:
sl@0
   219
	/** Register to be notified when some events occur.
sl@0
   220
	@return KErrNone if successful */
sl@0
   221
	virtual TInt RegisterEventHandler(CWsGraphicDrawer* aDrawer, MWsEventHandler* aHandler, TUint32 aEventMask) = 0;
sl@0
   222
	/** Unregister from events notification
sl@0
   223
	@return KErrNone if successful */
sl@0
   224
	virtual TInt UnregisterEventHandler(CWsGraphicDrawer* aDrawer) = 0;
sl@0
   225
	/** Register to be notified when some events occur.
sl@0
   226
	@return KErrNone if successful
sl@0
   227
	@prototype */
sl@0
   228
	virtual TInt RegisterWsEventHandler(MWsEventHandler* aHandler, TUint32 aEventMask) = 0;
sl@0
   229
	/** Unregister from events notification
sl@0
   230
	@return KErrNone if successful 
sl@0
   231
	@prototype */
sl@0
   232
	virtual TInt UnregisterWsEventHandler(MWsEventHandler* aHandler) = 0;
sl@0
   233
	/** Logs a message to the wserv logger, if one is loaded
sl@0
   234
	@param aPriority The priority of the message - low priority is 1, high is 9
sl@0
   235
	@param aFmt The string to log.  This may contain a single %d, %x or equivalent
sl@0
   236
	@param aParam An integer parameter corresponding to a %d, if present
sl@0
   237
	@prototype */
sl@0
   238
	virtual void Log(TInt aPriority,const TDesC &aFmt,TInt aParam=0) = 0;
sl@0
   239
	/** Registers an interface for releasing memory in low memory situations.
sl@0
   240
	The release function may be called as a result of any Alloc or ReAlloc attempts in the window server
sl@0
   241
	process.
sl@0
   242
	@param aMemoryRelease a callback interface
sl@0
   243
	@return KErrNone or a system wide error code
sl@0
   244
	@prototype */
sl@0
   245
	virtual TInt RegisterMemoryRelease(MWsMemoryRelease * aMemoryRelease) = 0;
sl@0
   246
	/** Removes a registration set by RegisterMemoryRelease
sl@0
   247
	@param aMemoryRelease the registered release object to remove
sl@0
   248
	@prototype */
sl@0
   249
	virtual void UnregisterMemoryRelease(MWsMemoryRelease * aMemoryRelease) = 0;
sl@0
   250
	};
sl@0
   251
sl@0
   252
class MWsGc: public MWsObjectProvider
sl@0
   253
/** A destination for a drawing occasion of a CWsGraphicDrawer
sl@0
   254
	Used to register invalidation schedules for animation
sl@0
   255
	@publishedPartner
sl@0
   256
	@released
sl@0
   257
*/	{
sl@0
   258
public:
sl@0
   259
	/** The Client requesting this drawing occasion
sl@0
   260
		@return the client
sl@0
   261
		@publishedPartner 
sl@0
   262
		@released  */
sl@0
   263
	virtual MWsClient& Client() = 0;
sl@0
   264
	/** The screen that is currently being drawn to
sl@0
   265
		@return the screen
sl@0
   266
		@publishedPartner 
sl@0
   267
		@released  */
sl@0
   268
	virtual MWsScreen& Screen() = 0;
sl@0
   269
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   270
	/** The origin of the GC relative to the screen's origin
sl@0
   271
		@return the origin
sl@0
   272
		@publishedPartner
sl@0
   273
		@released  */
sl@0
   274
	virtual TPoint GcOrigin() const = 0;
sl@0
   275
	/** The clipping region currently being used
sl@0
   276
		@return the clipping region
sl@0
   277
		@publishedPartner
sl@0
   278
		@released */
sl@0
   279
	virtual const TRegion& ClippingRegion() = 0;
sl@0
   280
	/** The BITGDI graphics context to draw to
sl@0
   281
		@publishedPartner
sl@0
   282
		@released */
sl@0
   283
	virtual CFbsBitGc& BitGc() = 0;
sl@0
   284
	/** Saves the state of the GC to an internal buffer.  Several GC states can be saved in a FILO.
sl@0
   285
		Do not restore a GC (using PopBitGcSettings()) that wasn't properly saved!
sl@0
   286
		@return KErrNone if successful, else one of the system-wide error codes. */
sl@0
   287
	virtual TInt PushBitGcSettings() = 0;
sl@0
   288
	/** Restores the last GC state that was saved. */
sl@0
   289
	virtual void PopBitGcSettings() = 0;
sl@0
   290
#endif	
sl@0
   291
	/** The time for the current redraw
sl@0
   292
		@publishedPartner 
sl@0
   293
		@released */
sl@0
   294
	virtual const TTime& Now() const = 0;
sl@0
   295
	/** Schedule an animation of a rectangle in the future.
sl@0
   296
	    Scheduled animation doesn't work in low memory conditions or
sl@0
   297
	    if aRect values fall outside the window area of this animation.
sl@0
   298
		@param aRect the rectangle to animate, in the GC's coordinates
sl@0
   299
		@param aFromNow the time in microseconds from Now() that the rectangle will be invalid
sl@0
   300
		@publishedPartner 
sl@0
   301
		@released */
sl@0
   302
	virtual void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow) = 0;
sl@0
   303
	/** Schedule an animation of a rectangle in the future
sl@0
   304
		@param aRect the rectangle to animate, in the GC's coordinates
sl@0
   305
		@param aFromNow the time in microseconds from Now() that the rectangle will be invalid
sl@0
   306
		@param aFreq microseconds between frames that this rectangle will probably be invalid in the future (0 means no such hint is known)
sl@0
   307
		@param aStop the duration in microseconds from Now() that the aFreq hint will be valid for (0 means indefinitely)
sl@0
   308
		@publishedPartner 
sl@0
   309
		@released */
sl@0
   310
	virtual void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop) = 0;
sl@0
   311
	/** Sets the origin of gc
sl@0
   312
		@param aOrigin The new origin of the gc
sl@0
   313
		@publishedPartner 
sl@0
   314
		@prototype	*/
sl@0
   315
	virtual void SetGcOrigin(const TPoint& aOrigin) = 0;
sl@0
   316
	};
sl@0
   317
sl@0
   318
/** Interface Extension
sl@0
   319
*/
sl@0
   320
enum
sl@0
   321
	{
sl@0
   322
	KMWsScreenConfigInterfaceId = 1,
sl@0
   323
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   324
	KMWsBackBufferInterfaceId = 2,
sl@0
   325
	KMWsFrontBufferInterfaceId = 3,
sl@0
   326
#endif
sl@0
   327
	KMWsGraphicDrawerMessageAlloc = 4,
sl@0
   328
	KMWsGraphicMessageAlloc = 5,
sl@0
   329
	KWsGraphicHandleSynchronMessageId = 6,
sl@0
   330
	KWsGraphicMessageCallbackInterfaceId = 7,
sl@0
   331
	KWsActiveSchedulerDebug = 8,
sl@0
   332
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   333
	KWsFlickerFreeBufferObserver = 9,
sl@0
   334
#endif
sl@0
   335
	KMWsWindow = 10,
sl@0
   336
	KWsScreenRedraw = 11,
sl@0
   337
	KWsScreenRedrawObserver = 12,
sl@0
   338
	KCWsRenderStage = 13,
sl@0
   339
	KMWsRenderStageFactory = 14,
sl@0
   340
	KMWsMemoryRelease = 15,
sl@0
   341
#if !defined(SYMBIAN_GRAPHICS_GCE)	
sl@0
   342
	KMWsGcClipRect = 16,
sl@0
   343
#endif	
sl@0
   344
	KMWsFader = 17,
sl@0
   345
	KMWsPluginManager = 18,
sl@0
   346
	KMWsIniFile = 19,
sl@0
   347
	KMWsRawEventServer = 20,
sl@0
   348
	KMWsPlaceSurfaceId = 21,
sl@0
   349
#if defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   350
	KMWsTextCursor = 22,				// CWsRenderStage Object Extension will yield an MWsTextCursor
sl@0
   351
#endif
sl@0
   352
	KMWsGraphicsContext = 23,			// CWsRenderStage Object Extension will yield an MWsGraphicsContext
sl@0
   353
	KMWsCompositionContext = 24,		// CWsRenderStage Object Extension will yield an MWsCompositionContext
sl@0
   354
										// 		MWsCompositionContext::CreateLayer will yield a MWsLayer
sl@0
   355
	KMWsEventHandler = 25,				// CWsRenderStage Object Extension will yield an MWsEventHandler
sl@0
   356
	KMWsScreenDevice = 26,				// CWsRenderStage Object Extension will yield an MWsScreenDevice
sl@0
   357
	KMWsPalette = 27,					// CWsRenderStage Object Extension will optionally yield an MWsPalette
sl@0
   358
#if defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   359
	KMWsUiBufferInterfaceId = 28,		// CWsRenderStage Object Extension will optionally yield an MWsUiBuffer
sl@0
   360
#endif
sl@0
   361
	KMWsDebugBar = 29,					// CWsRenderStage Object Extension will optionally yield an MWsDebugBar
sl@0
   362
	KMWsDrawableSourceProvider = 30,	// CWsRenderStage Object Extension will optionally yield an MWsDrawableSourceProvider
sl@0
   363
	KMWsScreenConfigListInterfaceId = 31,	//MWsScreen can return this list interface
sl@0
   364
	KMWsWindowTreeObserver = 32,        // CWsRenderStage Object Extension will optionally yield an MWsWindowTreeObserver
sl@0
   365
	KMWsDrawAnnotationObserver = 33, 	// CWsRenderStage Object Extension will optionally yield an MWsDrawAnnotationObserver
sl@0
   366
	KMWsWindowVisibilityNotifier = 34, 	// CWsRenderStage Object Extension will optionally yield an MWsWindowVisibilityNotifier
sl@0
   367
	KMWsWindowTree = 35,				// Object Extension to be used by render stages for recovery of MWsWindowTree
sl@0
   368
	KMWsScene = 36,                     // CWsRenderStage Object Extension will yield an MWsScene
sl@0
   369
	                                    //      MWsScene::CreateSceneElement will yield a MWsElement
sl@0
   370
	KMWsContentReadyForComposition = 37,// CWsRenderStage Object Extension will optionally yield an MWsContentReadyForComposition
sl@0
   371
	};
sl@0
   372
sl@0
   373
class TSurfaceConfiguration;
sl@0
   374
sl@0
   375
sl@0
   376
/** Extension to GC to allow surface placement.
sl@0
   377
sl@0
   378
@publishedPartner
sl@0
   379
@prototype
sl@0
   380
@deprecated
sl@0
   381
sl@0
   382
NOTE: This interface is deprecated. Do not use!
sl@0
   383
*/
sl@0
   384
class MWsSurfacePlacement: public MWsObjectProvider
sl@0
   385
	{
sl@0
   386
	public:
sl@0
   387
	DECLARE_WS_TYPE_ID(KMWsPlaceSurfaceId)
sl@0
   388
	virtual TInt	PlaceSurface(const TSurfaceConfiguration& aConfig)=0;
sl@0
   389
	};
sl@0
   390
sl@0
   391
/** Current screen mode configuration.Values return from this interface shall not be cached as they
sl@0
   392
can change at anytime when wserv changes its screen mode. Plugin can listen to event EScreenSizeModeChanged
sl@0
   393
to be notified when it happens.
sl@0
   394
sl@0
   395
@publishedPartner
sl@0
   396
@released
sl@0
   397
*/
sl@0
   398
class MWsScreenConfig: public MWsObjectProvider
sl@0
   399
	{
sl@0
   400
public:
sl@0
   401
	DECLARE_WS_TYPE_ID(KMWsScreenConfigInterfaceId)
sl@0
   402
sl@0
   403
	/** Get screen display mode */
sl@0
   404
	virtual TDisplayMode DisplayMode() const = 0;
sl@0
   405
	/** Get physical screen size in pixels */
sl@0
   406
	virtual TSize SizeInPixels() const = 0;
sl@0
   407
	/** Get screen size in pixels for current screen size mode as defined in wsini */
sl@0
   408
	virtual TSize ScreenModeSizeInPixels() const = 0;
sl@0
   409
	/** Get frame buffer line pitch */
sl@0
   410
	virtual TInt Stride() const = 0;
sl@0
   411
	/** Get screen orientation */
sl@0
   412
	virtual CFbsBitGc::TGraphicsOrientation Orientation() const = 0;
sl@0
   413
	/** Get screen size mode */
sl@0
   414
	virtual TInt SizeMode() const = 0;
sl@0
   415
	/** Get screen scaling factor */
sl@0
   416
	virtual TSize ScalingFactor() const = 0;
sl@0
   417
	/** Get screen origin */
sl@0
   418
	virtual TPoint Origin() const = 0;
sl@0
   419
	/** Get screen scaled origin */
sl@0
   420
	virtual TPoint ScaledOrigin() const = 0;
sl@0
   421
	};
sl@0
   422
sl@0
   423
/**	Available list of screen modes as specified during start-up.
sl@0
   424
 * 	This interface can generally be enquired from the MWsScreen instance.
sl@0
   425
 * 	Can be read by render stage to configure its Display Configuration policy.
sl@0
   426
 * 	
sl@0
   427
 * 	Note that mode list is not contiguous, so methods may leave if missing index is requested.
sl@0
   428
 **/
sl@0
   429
class MWsScreenConfigList: public MWsObjectProvider
sl@0
   430
	{
sl@0
   431
public:
sl@0
   432
	DECLARE_WS_TYPE_ID(KMWsScreenConfigListInterfaceId)
sl@0
   433
sl@0
   434
	enum	TModeFlags
sl@0
   435
		{
sl@0
   436
		EDynamic=			0x00000001,		//"-1,-1"
sl@0
   437
		EHighRes=			0x00000002,		//High-res policy mode
sl@0
   438
		EDisconnected=		0x00000004,		//Mode to use when disconnected
sl@0
   439
		EHalDefault=		0x00000008,
sl@0
   440
		ETwipsSpecified=	0x00000010,
sl@0
   441
		EClientDefinedDigitiserArea=	0x00000020,	
sl@0
   442
		};
sl@0
   443
	
sl@0
   444
	/** Get  list of valid display modes - may be sparse **/
sl@0
   445
	virtual TInt	GetScreenSizeModeList(RArray<TInt>&aList) const =0;
sl@0
   446
	/** Get screen display mode */
sl@0
   447
	virtual TDisplayMode DisplayModeL(TInt aIndex) const = 0;
sl@0
   448
	/** Get screen size in pixels for current screen size mode as defined in wsini */
sl@0
   449
	virtual TSize ScreenModeSizeInPixelsL(TInt aIndex) const = 0;
sl@0
   450
	/** Get screen size in twips for current screen size mode as defined in wsini */
sl@0
   451
	virtual TSize ScreenModeSizeInTwipsL(TInt aIndex) const = 0;
sl@0
   452
	/** Get screen orientation */
sl@0
   453
	virtual CFbsBitGc::TGraphicsOrientation OrientationL(TInt aIndex) const = 0;
sl@0
   454
	/** Get screen orientation */
sl@0
   455
	virtual TInt AvailableOrientationsL(TInt aIndex) const = 0;
sl@0
   456
	/** Get screen scaling factor - note this is expected to stay at 1:1 */
sl@0
   457
	virtual TSize ScalingFactorL(TInt aIndex) const = 0;
sl@0
   458
	/** Get screen origin */
sl@0
   459
	virtual TPoint OriginL(TInt aIndex) const = 0;
sl@0
   460
	/** Get screen scaled origin - note this is expected to stay at 1:1  */
sl@0
   461
	virtual TPoint ScaledOriginL(TInt aIndex) const = 0;
sl@0
   462
	/** Get the modeflags for specified mode  */
sl@0
   463
	virtual TInt ModeFlagsL(TInt aIndex) const = 0;
sl@0
   464
	
sl@0
   465
	};
sl@0
   466
	
sl@0
   467
class MWsWindowTree : public MWsObjectProvider
sl@0
   468
	{
sl@0
   469
public:	
sl@0
   470
	DECLARE_WS_TYPE_ID(KMWsWindowTree)
sl@0
   471
	virtual void SendTree() const = 0;
sl@0
   472
	};
sl@0
   473
 
sl@0
   474
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   475
/** Wserv flickerfree buffer access
sl@0
   476
sl@0
   477
@publishedPartner
sl@0
   478
@released
sl@0
   479
*/
sl@0
   480
class MWsBackBuffer: public MWsObjectProvider
sl@0
   481
	{
sl@0
   482
public:
sl@0
   483
	DECLARE_WS_TYPE_ID(KMWsBackBufferInterfaceId)
sl@0
   484
	/** Get wserv flickerfree buffer bitmap
sl@0
   485
	*/
sl@0
   486
	virtual CFbsBitmap* GetBitmap() = 0;
sl@0
   487
	/** Get default wserv flickerfree buffer drawing context. This will always return the original
sl@0
   488
	context not the current context (e.g. not the redirecting context when it is redirected).
sl@0
   489
	*/
sl@0
   490
	virtual CFbsBitGc* GetBitGc() = 0;
sl@0
   491
	/** Set wserv flickerfree buffer drawing context to redirect its drawing output. Drawing context must
sl@0
   492
	have been activated on a device prior calling this function.
sl@0
   493
	@param aBitGc The context where flickerfree buffer drawing output is redirected to. If it is NULL
sl@0
   494
	the redirection will be cancelled and default drawing context will be restored.
sl@0
   495
	@return KErrNone if successful, otherwise one of system-wide error codes.
sl@0
   496
	*/
sl@0
   497
	virtual TInt SetBitGc(CFbsBitGc* aBitGc) = 0;
sl@0
   498
	/** Redirects drawing to another back buffer. Target back buffer must provide bitmap and drawing context
sl@0
   499
	which has been activated on a bitmap device.
sl@0
   500
	@param aTarget Target back buffer where drawing is redirected to. If it is NULL
sl@0
   501
	the redirection will be terminated.
sl@0
   502
	@return KErrNone if successful, otherwise one of system-wide error codes.
sl@0
   503
	@prototype
sl@0
   504
	*/
sl@0
   505
	virtual TInt RedirectTo(MWsBackBuffer* aTarget) = 0;
sl@0
   506
	
sl@0
   507
	/** Sets the back buffers observer.  The observer will be called just before and just after each
sl@0
   508
	complete sequence of drawing to the back buffer.
sl@0
   509
	@param aObserver The observer handling the callbacks
sl@0
   510
	@prototype
sl@0
   511
	*/
sl@0
   512
	virtual void SetObserver(MWsFlickerFreeBufferObserver* aObserver) = 0;
sl@0
   513
	
sl@0
   514
	/** This returns the observer set by SetObserver.
sl@0
   515
	@return The observer set by SetObserver, or NULL
sl@0
   516
	@prototype
sl@0
   517
	*/
sl@0
   518
	virtual MWsFlickerFreeBufferObserver* Observer() = 0;
sl@0
   519
sl@0
   520
	/** Get current wserv flickerfree buffer drawing context. This will return the redirected context 
sl@0
   521
	when it is set.
sl@0
   522
	@return The graphics context to use to draw to the flicker buffer directly.
sl@0
   523
	@prototype
sl@0
   524
	*/
sl@0
   525
	virtual CFbsBitGc* GetBitGcCurrent() = 0;
sl@0
   526
	};
sl@0
   527
sl@0
   528
/** Wserv screen buffer access
sl@0
   529
sl@0
   530
@publishedPartner
sl@0
   531
@released
sl@0
   532
*/
sl@0
   533
class MWsFrontBuffer: public MWsObjectProvider
sl@0
   534
	{
sl@0
   535
public:
sl@0
   536
	DECLARE_WS_TYPE_ID(KMWsFrontBufferInterfaceId)
sl@0
   537
	/** Get pointer to framebuffer
sl@0
   538
	*/
sl@0
   539
	virtual const TAny* GetBits() = 0;
sl@0
   540
	/** Get default wserv screen drawing context. This will always return the original
sl@0
   541
	context not the current context (e.g. not the redirecting context when it is redirected).
sl@0
   542
	*/
sl@0
   543
	virtual CFbsBitGc* GetBitGc() = 0;
sl@0
   544
	/** Set wserv screen drawing context to redirect its drawing output. Drawing context must
sl@0
   545
	have been activated on a device prior calling this function.
sl@0
   546
	@param aBitGc The context where screen drawing output is redirected to. If it is NULL
sl@0
   547
	the redirection will be cancelled and default drawing context will be restored.
sl@0
   548
	@return KErrNone if successful, otherwise one of system-wide error codes.
sl@0
   549
	*/
sl@0
   550
	virtual TInt SetBitGc(CFbsBitGc* aBitGc) = 0;
sl@0
   551
	/** Set wserv screen drawing context to redirect its drawing output and perform fullscreen 
sl@0
   552
	redraw if necessary. Drawing context must have been activated on a device prior calling this 
sl@0
   553
	function.
sl@0
   554
	@param aBitGc The context where screen drawing output is redirected to. If it is NULL
sl@0
   555
	the redirection will be cancelled and default drawing context will be restored.
sl@0
   556
	@param aInvalidateScreen Flag to tell wserv to perform fullscreen redraw or not
sl@0
   557
	@return KErrNone if successful, otherwise one of system-wide error codes.
sl@0
   558
	@prototype
sl@0
   559
	*/
sl@0
   560
	virtual TInt SetBitGc(CFbsBitGc* aBitGc, TBool aInvalidateScreen) = 0;	
sl@0
   561
	
sl@0
   562
	/** Get current wserv screen drawing context. This will return the redirected context 
sl@0
   563
	when it is set.
sl@0
   564
	@prototype
sl@0
   565
	*/
sl@0
   566
	virtual CFbsBitGc* GetBitGcCurrent() = 0;
sl@0
   567
	};
sl@0
   568
#endif // !SYMBIAN_GRAPHICS_GCE
sl@0
   569
sl@0
   570
/** Optional Memory Allocator for incoming messages
sl@0
   571
	To be implemented by CRPs which want to control large incoming messages themselves
sl@0
   572
sl@0
   573
@publishedPartner
sl@0
   574
@released
sl@0
   575
*/
sl@0
   576
class MWsGraphicDrawerMessageAlloc: public MWsObjectProvider
sl@0
   577
	{
sl@0
   578
public:
sl@0
   579
	DECLARE_WS_TYPE_ID(KMWsGraphicDrawerMessageAlloc)
sl@0
   580
	virtual TAny* Alloc(TInt aSize) = 0;
sl@0
   581
	virtual void Free(TAny* aCell) = 0;
sl@0
   582
	};
sl@0
   583
sl@0
   584
/** Optional Memory Allocator for incoming messages
sl@0
   585
	To be implemented by CWsGraphics which want to control large incoming messages themselves
sl@0
   586
sl@0
   587
@publishedPartner
sl@0
   588
@released
sl@0
   589
*/
sl@0
   590
class MWsGraphicMessageAlloc: public MWsObjectProvider
sl@0
   591
	{
sl@0
   592
public:
sl@0
   593
	DECLARE_WS_TYPE_ID(KMWsGraphicMessageAlloc)
sl@0
   594
	NONSHARABLE_CLASS(MBuffer): public MWsObjectProvider
sl@0
   595
		{
sl@0
   596
	public:
sl@0
   597
		virtual TPtr8 Buffer() = 0;
sl@0
   598
		virtual void Release() = 0;
sl@0
   599
		};
sl@0
   600
	virtual MBuffer* Alloc(TInt aSize) = 0;
sl@0
   601
	};
sl@0
   602
sl@0
   603
/** For debug purposes only
sl@0
   604
sl@0
   605
@publishedPartner
sl@0
   606
@prototype
sl@0
   607
*/	
sl@0
   608
class MWsActiveSchedulerDebug: public MWsObjectProvider
sl@0
   609
	{
sl@0
   610
public:
sl@0
   611
	DECLARE_WS_TYPE_ID(KWsActiveSchedulerDebug)
sl@0
   612
	virtual TInt64 Requests() const = 0;
sl@0
   613
	virtual TInt64 Errors() const = 0;
sl@0
   614
	virtual TInt64 Draws() const = 0;
sl@0
   615
	virtual TInt64 Total() const = 0;
sl@0
   616
	virtual TInt64 Preparing() const = 0;
sl@0
   617
	virtual TInt64 Drawing() const = 0;
sl@0
   618
	virtual TInt64 Idle() const = 0;
sl@0
   619
	};
sl@0
   620
sl@0
   621
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
   622
/** This forms part of the MWsBackBuffer interface
sl@0
   623
sl@0
   624
@publishedPartner
sl@0
   625
@prototype
sl@0
   626
*/
sl@0
   627
class MWsFlickerFreeBufferObserver: public MWsObjectProvider 
sl@0
   628
	{
sl@0
   629
public:	
sl@0
   630
	DECLARE_WS_TYPE_ID(KWsFlickerFreeBufferObserver)
sl@0
   631
	/** Function that gets called before the flicker buffer is updated
sl@0
   632
	@param aBuffer The back buffer that is about to be updated
sl@0
   633
	@param aRegion The region of the back buffer that is about to be updated
sl@0
   634
	*/
sl@0
   635
	virtual void BeforeUpdate(MWsBackBuffer& aBuffer,const TRegion& aRegion) = 0;
sl@0
   636
	/** Function that gets called after the flicker buffer has been updated
sl@0
   637
	@param aBuffer The back buffer that has been updated
sl@0
   638
	@param aRegion The region of the the back buffer that has been updated
sl@0
   639
	*/
sl@0
   640
	virtual void AfterUpdate(MWsBackBuffer& aBuffer,const TRegion& aRegion) = 0;
sl@0
   641
	};
sl@0
   642
#endif // !SYMBIAN_GRAPHICS_GCE
sl@0
   643
sl@0
   644
/** An interface through which a window can be examined
sl@0
   645
This returns non const copies instead of const references, and the
sl@0
   646
functions themselves are non const.
sl@0
   647
sl@0
   648
@publishedPartner
sl@0
   649
@prototype
sl@0
   650
*/
sl@0
   651
class MWsWindow : public MWsObjectProvider
sl@0
   652
	{
sl@0
   653
public:	
sl@0
   654
	DECLARE_WS_TYPE_ID(KMWsWindow)
sl@0
   655
public:
sl@0
   656
	/** Gets the origin of the window.
sl@0
   657
	@return TPoint containing the origin of the window.
sl@0
   658
	*/
sl@0
   659
	virtual TPoint Origin() const = 0;
sl@0
   660
	/** Gets the windows rect in absolute co-ordinates.
sl@0
   661
	@return TRect
sl@0
   662
	*/
sl@0
   663
	virtual TRect AbsRect() const = 0;
sl@0
   664
	/** Gets the size of the window
sl@0
   665
	@return TSize containing the size of the window
sl@0
   666
	*/
sl@0
   667
	virtual TSize Size() const = 0;
sl@0
   668
	/** Get the window's handle
sl@0
   669
	@return TUint32 containing the window's handle.
sl@0
   670
	*/
sl@0
   671
	virtual TUint32 Handle() const = 0;
sl@0
   672
	/** Invalidate an area of the window.
sl@0
   673
	@param aRect TRect containing the area to invalidate.
sl@0
   674
	*/
sl@0
   675
	virtual void Invalidate(const TRect * aRect = 0) = 0;
sl@0
   676
	/** Get the MWsScreen for this window.
sl@0
   677
	@return A pointer to the MWsScreen that this window is on.
sl@0
   678
	*/
sl@0
   679
	virtual MWsScreen * WsScreen() const = 0;
sl@0
   680
	/** Finds a child of this window by specifiying its handle.
sl@0
   681
	@param aHandle A handle to the window to find.
sl@0
   682
	@return an MWsWindow pointer to the found window
sl@0
   683
	*/
sl@0
   684
	virtual MWsWindow * FindChildByHandle(TUint32 aHandle) = 0;
sl@0
   685
	/**
sl@0
   686
	Returns the ordinal priority of the node. 
sl@0
   687
	*/
sl@0
   688
	virtual TInt OrdinalPriority() const = 0;
sl@0
   689
	/** Get the window's basic area before any clipping is done.
sl@0
   690
	For windows with rounded corners, the window area is different from AbsRect.
sl@0
   691
	@return a reference to the window area 
sl@0
   692
	*/	
sl@0
   693
	virtual const TRegion& WindowArea() const = 0;
sl@0
   694
	};
sl@0
   695
sl@0
   696
/** 
sl@0
   697
An interface providing information about a window group.
sl@0
   698
@publishedPartner
sl@0
   699
@prototype
sl@0
   700
*/
sl@0
   701
class MWsWindowGroup
sl@0
   702
	{
sl@0
   703
public:
sl@0
   704
	virtual TInt Identifier() const = 0;
sl@0
   705
	virtual TPtrC Name() const = 0;
sl@0
   706
	virtual TBool IsFocusable() const = 0;
sl@0
   707
	virtual TInt OrdinalPriority() const = 0;
sl@0
   708
	virtual const MWsClient * Client() const = 0;
sl@0
   709
	};
sl@0
   710
sl@0
   711
/**
sl@0
   712
An interface through which a sprite can be examined. 
sl@0
   713
@publishedPartner
sl@0
   714
@prototype
sl@0
   715
*/
sl@0
   716
class MWsSprite 
sl@0
   717
	{
sl@0
   718
public:
sl@0
   719
	enum TSpriteType
sl@0
   720
		{
sl@0
   721
		EWindowSprite,
sl@0
   722
		EFloatingSprite,
sl@0
   723
		ECustomTextCursorSprite,
sl@0
   724
		EPointerCursorSprite
sl@0
   725
		};
sl@0
   726
public:
sl@0
   727
	virtual TRect Rect() const = 0;
sl@0
   728
	virtual TSpriteType SpriteType() const = 0;
sl@0
   729
	};
sl@0
   730
sl@0
   731
/**
sl@0
   732
An interface through which a standard text cursor can be examined. 
sl@0
   733
@publishedPartner
sl@0
   734
@prototype
sl@0
   735
*/
sl@0
   736
class MWsStandardTextCursor
sl@0
   737
	{
sl@0
   738
public:
sl@0
   739
	/**
sl@0
   740
	Cursor type.
sl@0
   741
	@return The cursor type; either TTextCursor::ETypeRectangle or TTextCursor::ETypeHollowRectangle.
sl@0
   742
	*/
sl@0
   743
	virtual TInt Type() const = 0;
sl@0
   744
	/**
sl@0
   745
	Draw rectangle.
sl@0
   746
	@return Draw rectangle of the cursor in <b>window</b> co-ordinates.
sl@0
   747
	*/
sl@0
   748
	virtual TRect Rect() const = 0;
sl@0
   749
	/**
sl@0
   750
	Clipping rectangle in <b>window</b> co-ordinates.
sl@0
   751
	@return If a clipping rect has been set, the cursor must be drawn clipped to the returned rectangle.
sl@0
   752
	@see MWsWindowTreeObserver::ECursorClipRectSet
sl@0
   753
	*/
sl@0
   754
	virtual TRect ClipRect() const = 0;
sl@0
   755
	/**
sl@0
   756
	Cursor flags.
sl@0
   757
	For possible values, see TTextCursor::EFlags.
sl@0
   758
	Note, only flags included by the mask TTextCursor::EUserFlags are provided.
sl@0
   759
	@see TTextCursor::EFlags
sl@0
   760
	*/
sl@0
   761
    virtual TUint Flags() const = 0;
sl@0
   762
	/**
sl@0
   763
	Cursor color.
sl@0
   764
	@return The cursor color.
sl@0
   765
	*/
sl@0
   766
	virtual TRgb Color() const = 0;
sl@0
   767
	/**
sl@0
   768
	Flash time interval.
sl@0
   769
	@return If TTextCursor::EFlagNoFlash is set, zero; otherwise the time interval between cursor flash on/off.
sl@0
   770
	@see MWsStandardTextCursor::Flags()
sl@0
   771
	*/
sl@0
   772
	virtual TTimeIntervalMicroSeconds32 FlashInterval() const = 0;
sl@0
   773
	};
sl@0
   774
sl@0
   775
sl@0
   776
/** An interface providing information about a window tree node.
sl@0
   777
@publishedPartner
sl@0
   778
@prototype
sl@0
   779
*/
sl@0
   780
class MWsWindowTreeNode
sl@0
   781
	{
sl@0
   782
public:
sl@0
   783
	
sl@0
   784
	enum TType
sl@0
   785
		{
sl@0
   786
		EWinTreeNodeClient = EWinTypeClient,	//0
sl@0
   787
		EWinTreeNodeRoot = EWinTypeRoot,		//1
sl@0
   788
		EWinTreeNodeGroup = EWinTypeGroup,		//2 
sl@0
   789
		EWinTreeNodeAnim = 16,					//3-15 reserved for expansion of TWinType
sl@0
   790
		EWinTreeNodeSprite,
sl@0
   791
		EWinTreeNodeStandardTextCursor,
sl@0
   792
		};
sl@0
   793
	
sl@0
   794
	/** 
sl@0
   795
	 @return The Node Type for this MWsWindowTreeNode. 	 */
sl@0
   796
	virtual TType NodeType() const = 0;
sl@0
   797
	/**
sl@0
   798
	 @return A pointer to a MWsWindow interface only when this 
sl@0
   799
	 MWsWindowTreeNode represents a client window 
sl@0
   800
	 (i.e. node type EWinTreeNodeClient), NULL otherwise. */
sl@0
   801
	virtual const MWsWindow* Window() const = 0;
sl@0
   802
	/**
sl@0
   803
	 @return A pointer to a MWsSprite interface only when this 
sl@0
   804
	 MWsWindowTreeNode represents a sprite, NULL otherwise. */
sl@0
   805
	virtual const MWsSprite* Sprite() const = 0;
sl@0
   806
	/**
sl@0
   807
	 @return A pointer to a MWsStandardTextCursor interface only when this 
sl@0
   808
	 MWsWindowTreeNode represents a standard text cursor, NULL otherwise. */
sl@0
   809
	virtual const MWsStandardTextCursor* StandardTextCursor() const = 0;
sl@0
   810
	/** 
sl@0
   811
	 @return The MWsWindowGroup this MWsWindowTreeNode belongs to, or "this"
sl@0
   812
	 MWsWindowTreeNode object if the NodeType is EWinTreeNodeGroup. Will  
sl@0
   813
	 return NULL if this MWsWindowTreeNode is of type EWinTreeNodeRoot. */
sl@0
   814
	virtual const MWsWindowGroup* WindowGroup() const = 0;
sl@0
   815
	/**
sl@0
   816
	 @return The parent MWsWindowTreeNode. NULL if current node is of type
sl@0
   817
	 EWinTreeNodeRoot. The parent of a floating sprite is the root window. */
sl@0
   818
	virtual const MWsWindowTreeNode* ParentNode() const = 0;
sl@0
   819
	};
sl@0
   820
sl@0
   821
/** 
sl@0
   822
An interface optionally provided by render stages, to observe changes in 
sl@0
   823
window tree structure, or changes to tree nodes.
sl@0
   824
sl@0
   825
@publishedPartner
sl@0
   826
@prototype
sl@0
   827
*/
sl@0
   828
class MWsWindowTreeObserver : public MWsObjectProvider
sl@0
   829
	{
sl@0
   830
public:	
sl@0
   831
	DECLARE_WS_TYPE_ID(KMWsWindowTreeObserver)
sl@0
   832
	
sl@0
   833
public:
sl@0
   834
	/**
sl@0
   835
	 This enum encapsulates the set of boolean attribute changes that can be observed
sl@0
   836
	 using the MWsWindowTreeObserver interface. 
sl@0
   837
	 @see FlagChanged */
sl@0
   838
	enum TFlags
sl@0
   839
		{
sl@0
   840
		/** For a window to be drawn, it needs to be activated and visible and have visible parents.
sl@0
   841
	 	Making a window invisible, implies that its children should be invisible as well.
sl@0
   842
	 	The default value for a window is true. */
sl@0
   843
		EVisible = 1,
sl@0
   844
		/** Non-fading windows should not be drawn faded regardless of their fade-count.
sl@0
   845
		The default value is false. */
sl@0
   846
		ENonFading,
sl@0
   847
		/** Windows with this attribute enabled uses alpha channel to control its transparency.
sl@0
   848
		The default value is false. */
sl@0
   849
		EAlphaChannelTransparencyEnabled,
sl@0
   850
		/** True if a clipping rect should be applied when drawing a standard text cursor, false otherwise.
sl@0
   851
		The default value is false. */
sl@0
   852
		ECursorClipRectSet,
sl@0
   853
		/** Implicitly defaults to true. Will remain true as long as the application's primary screendevice 
sl@0
   854
		is in the same orientation as the device. This information is only given for top-windows, 
sl@0
   855
		i.e. children of group-windows, and only when wsini.ini is configured with SIZE_MODE > 0. */
sl@0
   856
		EScreenDeviceValid
sl@0
   857
		};
sl@0
   858
	/**
sl@0
   859
	 This enum encapsulates the set of non-boolean attribute changes that can be observed
sl@0
   860
	 using the MWsWindowTreeObserver interface. 
sl@0
   861
	 @see AttributeChanged */
sl@0
   862
	enum TAttributes
sl@0
   863
		{
sl@0
   864
		/** Cursor type.
sl@0
   865
		@see MWsStandardTextCursor::Type()*/
sl@0
   866
		ECursorType = 1,
sl@0
   867
		/** Cursor clip rect.
sl@0
   868
		@see MWsStandardTextCursor::ClipRect()*/
sl@0
   869
		ECursorClipRect,
sl@0
   870
		/** Cursor flags.
sl@0
   871
		@see MWsStandardTextCursor::Flags()*/
sl@0
   872
		ECursorFlags,
sl@0
   873
		/** Cursor color.
sl@0
   874
		@see MWsStandardTextCursor::Color()*/
sl@0
   875
		ECursorColor,
sl@0
   876
		/** Window shape.
sl@0
   877
		@see MWsWindow::WindowArea()*/
sl@0
   878
		EWindowShape,
sl@0
   879
		/** Window group name
sl@0
   880
		@see MWsWindowGroup::Name()*/
sl@0
   881
		EWindowGroupName
sl@0
   882
		};
sl@0
   883
	/** 
sl@0
   884
	 Callback to notify that a MWsWindowTreeNode has just been created. 
sl@0
   885
	 Nodes are always added as the left-most sibling as this means they are
sl@0
   886
	 added in front of exisitng nodes.
sl@0
   887
	 @param aWindowTreeNode Use to query attributes of the node that has been 
sl@0
   888
	 						created. Note that attributes such as e.g. the extent
sl@0
   889
	 						is not yet set by the client when this notification arrives.
sl@0
   890
	 @param aParent The parent node which aWindowTreeNode has been attached to. 
sl@0
   891
	 				Special cases: aParent will be set to NULL for root windows, 
sl@0
   892
	 				and set to the root window for floating sprites. */
sl@0
   893
	virtual void NodeCreated(const MWsWindowTreeNode& aWindowTreeNode, const MWsWindowTreeNode* aParent) = 0;
sl@0
   894
	/** 
sl@0
   895
	 Callback to notify that a node in the window tree is about to be destroyed. 
sl@0
   896
	 @param aWindowTreeNode Use to query attributes of node that's about to be destroyed. */
sl@0
   897
	virtual void NodeReleased(const MWsWindowTreeNode& aWindowTreeNode) = 0;
sl@0
   898
	/**
sl@0
   899
	 Callback to notify that a node in the window tree has been activated. This 
sl@0
   900
	 event is only generated for windows which has a visual appearance 
sl@0
   901
	 (i.e. root windows and group windows are not activated). Before a node 
sl@0
   902
	 can be drawn it needs to be activated and visible and have a non-zero size.
sl@0
   903
	 @param aWindowTreeNode Use to query attributes of node that has been activated. */
sl@0
   904
	virtual void NodeActivated(const MWsWindowTreeNode& aWindowTreeNode) = 0;
sl@0
   905
	/**
sl@0
   906
	 Callback to notify that a node's extent has changed. It is guaranteed that there
sl@0
   907
	 will be at least one NodeExtentChanged notification between the NodeCreated and 
sl@0
   908
	 NodeActivated notifications.
sl@0
   909
	 Note that when a window has child-windows, those are always moving along with their
sl@0
   910
	 parent but no NodeExtentChanged notifications will be generated for the child-windows.
sl@0
   911
	 @param aWindowTreeNode Use to query attributes of the node that has been changed.
sl@0
   912
	 @param aRect The new rectangle. */
sl@0
   913
	virtual void NodeExtentChanged(const MWsWindowTreeNode& aWindowTreeNode, const TRect& aRect) = 0;
sl@0
   914
	/**
sl@0
   915
	 Callback to notify that the ordinal position of a window has changed.
sl@0
   916
	 @param aWindowTreeNode Use to query attributes of the node that has been changed.. 
sl@0
   917
	 @param aNewPos The new position of this node among its siblings. */
sl@0
   918
	virtual void SiblingOrderChanged(const MWsWindowTreeNode& aWindowTreeNode, TInt aNewPos) = 0;
sl@0
   919
	/**
sl@0
   920
	 Callback to notify that a node has had one of its boolean attributes changed.
sl@0
   921
	 @param aWindowTreeNode Use to query attributes of the node that has been changed.
sl@0
   922
	 @param aFlag The attribute that has changed.
sl@0
   923
	 @param aNewValue The new value for the attribute. */
sl@0
   924
	virtual void FlagChanged(const MWsWindowTreeNode& aWindowTreeNode, TFlags aFlag, TBool aNewValue) = 0;
sl@0
   925
	/**
sl@0
   926
	 Callback to notify that a node has had one of its non-boolean attributes changed.
sl@0
   927
	 @param aWindowTreeNode Use to identify the affected node and query the new value of the changed attribute.
sl@0
   928
	 @param aAttribute The attribute that has changed. */
sl@0
   929
	virtual void AttributeChanged(const MWsWindowTreeNode& aWindowTreeNode, TAttributes aAttribute) = 0;
sl@0
   930
	/**
sl@0
   931
	 Callback to notify that a window's fade count has been changed.
sl@0
   932
	 @param aWindowTreeNode Use to query attributes of the node that has been changed.
sl@0
   933
	 @param aFadeCount Zero means the window is not faded, an integer > 0 means 
sl@0
   934
	 					faded if absolute fading is used, or the number of times 
sl@0
   935
	 					SetFaded has been called if using counting fade. */
sl@0
   936
	virtual void FadeCountChanged(const MWsWindowTreeNode& aWindowTreeNode, TInt aFadeCount) = 0;
sl@0
   937
	/**
sl@0
   938
	 Callback to notify that the user defined transparent region of a window has changed. 
sl@0
   939
	 This information is for optimisation purpose only, the rendering engine don't need 
sl@0
   940
	 to do a full back-to-front rendering behind the opaque region. 
sl@0
   941
	 @param aWindowTreeNode  Use to query attributes of the node that has been changed.
sl@0
   942
	 @param aNewTransparentRegion   The transparent region defined by the user. Coordinates 
sl@0
   943
	 								are relative the window's origin.
sl@0
   944
	 @param aNewOpaqueRegion 	The inverse of aNewTransparentRegion.  Coordinates are 
sl@0
   945
	 							relative the window's origin. */	
sl@0
   946
	virtual void TransparentRegionChanged(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aNewTransparentRegion, const TRegion* aNewOpaqueRegion) = 0;
sl@0
   947
	/**
sl@0
   948
	 Callback to notify that a element has been added to this window.
sl@0
   949
	 The render stages implementing this interface know when elements are added or removed through MWsElement interface.
sl@0
   950
	 The purpose of the ElementAdded API is only to enable render stages to make an association between the element and the window.
sl@0
   951
	 @param aWindowTreeNode Use to query attributes of the node that has been changed.
sl@0
   952
	 @param aElement Use to query attributes of the new element. */
sl@0
   953
	virtual void ElementAdded(const MWsWindowTreeNode& aWindowTreeNode, const MWsElement& aElement) = 0;
sl@0
   954
	/**
sl@0
   955
	 Callback to notify that a window has been moved to another window group.
sl@0
   956
	 @param aWindowTreeNode Use to query attributes of the node that has been moved.
sl@0
   957
	 @param aNewWindowGroupNode The window group aWindowTreeNode has been moved to. 
sl@0
   958
	 @see RWindowBase::MoveToGroup */
sl@0
   959
	virtual void MovedToWindowGroup(const MWsWindowTreeNode& aWindowTreeNode, const MWsWindowTreeNode& aNewWindowGroupNode) = 0;
sl@0
   960
	/**
sl@0
   961
	 Callback to notify that a window group chain has been formed or extended.
sl@0
   962
	 @param aParent The window group node to which a child has been attached.
sl@0
   963
	 @param aChild The window group node that has been attached to aParent. */
sl@0
   964
	virtual void WindowGroupChained(const MWsWindowTreeNode& aParent, const MWsWindowTreeNode& aChild) = 0;
sl@0
   965
	/**
sl@0
   966
	 Callback to notify that a window group chain has been broken. 
sl@0
   967
	 Special case: Deleting a window group that is part of a chain will break all chaining 
sl@0
   968
	 after the deleted window group and a notification for each node being dequed will be sent.
sl@0
   969
	 @param aWindowGroupNode The window group chain is broken directly after this window group. */
sl@0
   970
	virtual void WindowGroupChainBrokenAfter(const MWsWindowTreeNode& aWindowGroupNode) = 0;
sl@0
   971
	/**
sl@0
   972
	 Callback to notify that all nodes below aWindowTreeNode should be drawn faded,
sl@0
   973
	 unless they have the ENonFading flag set. 
sl@0
   974
	 This API is primarily used in conjunction with application frameworks that uses 
sl@0
   975
	 absolute fading rather than counting fade.
sl@0
   976
	 @param aWindowTreeNode Typically a root window, for which all children should have their
sl@0
   977
	 					fade state set to aFaded.
sl@0
   978
	 @param aFaded The new fade state to apply. ETrue means faded, EFalse not faded. */
sl@0
   979
	virtual void FadeAllChildren(const MWsWindowTreeNode& aWindowTreeNode, TBool aFaded) = 0;
sl@0
   980
	};
sl@0
   981
sl@0
   982
/** 
sl@0
   983
An interface optionally provided by render stages, to observe which node in 
sl@0
   984
the window tree structure that is being rendered.
sl@0
   985
sl@0
   986
Text cursors and sprites (floating or non) are annotated by the same APIs.
sl@0
   987
sl@0
   988
@publishedPartner
sl@0
   989
@prototype
sl@0
   990
*/
sl@0
   991
class MWsDrawAnnotationObserver : public MWsObjectProvider
sl@0
   992
	{
sl@0
   993
public:	
sl@0
   994
	DECLARE_WS_TYPE_ID(KMWsDrawAnnotationObserver)
sl@0
   995
	virtual void WindowRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion) = 0;
sl@0
   996
	virtual void WindowRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode) = 0;
sl@0
   997
	virtual void WindowAnimRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion) = 0;
sl@0
   998
	virtual void WindowAnimRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode) = 0;
sl@0
   999
	virtual void SpriteRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion) = 0;
sl@0
  1000
	virtual void SpriteRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode) = 0;
sl@0
  1001
	virtual void SpriteFlash(const MWsWindowTreeNode& aWindowTreeNode, TBool aFlashOn) = 0;
sl@0
  1002
	virtual void SegmentRedrawStart(const TRegion& aRegion) = 0;
sl@0
  1003
	virtual void SegmentRedrawEnd() = 0;
sl@0
  1004
	};
sl@0
  1005
sl@0
  1006
/** 
sl@0
  1007
Implemented by a WSERV screen to respond to window visibility change notifications sent
sl@0
  1008
by a render stage implementing MWsWindowVisibilityNotifier.
sl@0
  1009
sl@0
  1010
Immediately after WSERV sucessfully obtains a pointer to MWsWindowVisibilityNotifier, 
sl@0
  1011
WSERV will call MWsWindowVisibilityNotifier::RegisterWindowVisibilityObserver()
sl@0
  1012
to provide a means for the render stage to notify WSERV, when window visibility changes.
sl@0
  1013
sl@0
  1014
@see MWsWindowVisibilityNotifier
sl@0
  1015
sl@0
  1016
@publishedPartner
sl@0
  1017
@prototype
sl@0
  1018
*/
sl@0
  1019
class MWsWindowVisibilityObserver
sl@0
  1020
	{
sl@0
  1021
public:
sl@0
  1022
	/** 
sl@0
  1023
	Called by the render stage to indicate a window's visible region has changed.
sl@0
  1024
	After this method has been called, it does not need to be called again until
sl@0
  1025
	after WSERV calls SendVisibilityChanges.
sl@0
  1026
	@see MWsWindowVisibilityNotifier::SendVisibilityChanges
sl@0
  1027
	*/
sl@0
  1028
	virtual void VisibilityChanged() = 0;
sl@0
  1029
sl@0
  1030
	/**
sl@0
  1031
	Called by the render stage to update a window's visible region.
sl@0
  1032
	@param aWindow The window whose visible region has changed.
sl@0
  1033
	@param aVisibleRegion Region of the window not obscured by a fully opaque window. Part of this region could potentially still
sl@0
  1034
	be obscured by opaque parts of translucent windows on top of aWindow.
sl@0
  1035
	*/
sl@0
  1036
	virtual void SetWindowVisibility(const MWsWindow& aWindow, const TRegion& aVisibleRegion) = 0;
sl@0
  1037
	};
sl@0
  1038
sl@0
  1039
/** 
sl@0
  1040
This interface may be implemented by a render stage wishing to take over responsibility
sl@0
  1041
from WSERV, for updating a window's visible region.
sl@0
  1042
For example, if a render stage introduces non-WSERV visuals which overlap WSERV windows, WSERV may
sl@0
  1043
need to receive updated window visibility information.
sl@0
  1044
sl@0
  1045
Immediately after sucessfully obtaining this interface, WSERV will call RegisterWindowVisibilityObserver
sl@0
  1046
to provide a means for the render stage to notify WSERV when window visibility changes.
sl@0
  1047
sl@0
  1048
@see MWsWindowVisibilityObserver
sl@0
  1049
sl@0
  1050
@publishedPartner
sl@0
  1051
@prototype
sl@0
  1052
*/
sl@0
  1053
class MWsWindowVisibilityNotifier : public MWsObjectProvider
sl@0
  1054
	{
sl@0
  1055
public:	
sl@0
  1056
	DECLARE_WS_TYPE_ID(KMWsWindowVisibilityNotifier)
sl@0
  1057
sl@0
  1058
	/** 
sl@0
  1059
	Register to be notified when window visibility changes.
sl@0
  1060
	@param aWindowVisibilityObserver Observer to be notified.
sl@0
  1061
	*/
sl@0
  1062
	virtual void RegisterWindowVisibilityObserver(MWsWindowVisibilityObserver* aWindowVisibilityObserver) = 0;
sl@0
  1063
sl@0
  1064
	/** 
sl@0
  1065
	Register to be notified when visibility of a specific window changes.
sl@0
  1066
	After registering a window, the render stage must immediately provide the
sl@0
  1067
	current visible region by calling VisibilityChanged() and later, in response
sl@0
  1068
	to SendVisibilityChanges, call SetWindowVisibility.
sl@0
  1069
	RegisterWindow and UnregisterWindow are symmetrical operations. For each
sl@0
  1070
	call to RegisterWindow, there will follow exactly one call to UnregisterWindow.
sl@0
  1071
	@param aWindow Window for which WSERV needs accurate visibility information.
sl@0
  1072
	@see MWsWindowVisibilityObserver
sl@0
  1073
	*/
sl@0
  1074
	virtual void RegisterWindow(const MWsWindow& aWindow) = 0;
sl@0
  1075
sl@0
  1076
	/** 
sl@0
  1077
	Stops visibility notifications being sent for the specified window.
sl@0
  1078
	RegisterWindow and UnregisterWindow are symmetrical operations. For each
sl@0
  1079
	call to RegisterWindow, there will follow exactly one call to UnregisterWindow.
sl@0
  1080
	@param aWindow Window for which visibility notifications are no longer required.
sl@0
  1081
	*/
sl@0
  1082
	virtual void UnregisterWindow(const MWsWindow& aWindow) = 0;
sl@0
  1083
sl@0
  1084
	/** 
sl@0
  1085
	Asks the render stage to call SetWindowVisibility for each window whose
sl@0
  1086
	visible region has changed.
sl@0
  1087
	All visible region changes must be sent before this method returns.
sl@0
  1088
	@see MWsWindowVisibilityObserver
sl@0
  1089
	*/
sl@0
  1090
	virtual void SendVisibilityChanges() = 0;
sl@0
  1091
	};
sl@0
  1092
sl@0
  1093
/** This is an extension of the MWsScreen interface for handling the
sl@0
  1094
animation aspects of the redraw sequence.
sl@0
  1095
sl@0
  1096
@publishedPartner
sl@0
  1097
@prototype
sl@0
  1098
*/
sl@0
  1099
class MWsScreenRedraw: public MWsObjectProvider
sl@0
  1100
	{
sl@0
  1101
public:
sl@0
  1102
	DECLARE_WS_TYPE_ID(KWsScreenRedraw)
sl@0
  1103
	/**Sets the screen redraw observer. 
sl@0
  1104
	@param aObserver
sl@0
  1105
	*/
sl@0
  1106
	virtual void SetObserver(MWsScreenRedrawObserver* aObserver) = 0;
sl@0
  1107
	/** Checks if there is a redraw in progress or scheduled to take place.
sl@0
  1108
	@return Returns ETrue if there is an update pending.
sl@0
  1109
	*/	
sl@0
  1110
	virtual TBool IsUpdatePending() = 0;
sl@0
  1111
	/** Gets the current time according to the animation scheduler
sl@0
  1112
	@return The current time as a TTime reference.
sl@0
  1113
	*/
sl@0
  1114
	virtual const TTime& Now() const = 0;
sl@0
  1115
	/** Schedule a render of the screen without requesting any area of it
sl@0
  1116
	to be redrawn.  Effectively, request a rerun of the render stages.
sl@0
  1117
	@param aFromNow The time from now, in microseconds, to perform the render.
sl@0
  1118
	*/
sl@0
  1119
	virtual void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow) = 0;
sl@0
  1120
	/** Gets the the animation region for this screen redraw.
sl@0
  1121
	@return the Region being redrawn during the animation
sl@0
  1122
	*/
sl@0
  1123
	virtual const TRegion * AnimationRegion() const = 0;
sl@0
  1124
	/** Updates the screen device to reflect any animation changes
sl@0
  1125
	*/
sl@0
  1126
	virtual void UpdateDevice() = 0;
sl@0
  1127
	};
sl@0
  1128
	
sl@0
  1129
/** This is part of the MWsScreenRedraw interface
sl@0
  1130
sl@0
  1131
@publishedPartner
sl@0
  1132
@prototype
sl@0
  1133
*/
sl@0
  1134
class MWsScreenRedrawObserver: public MWsObjectProvider
sl@0
  1135
	{
sl@0
  1136
public:
sl@0
  1137
	DECLARE_WS_TYPE_ID(KWsScreenRedrawObserver)
sl@0
  1138
	/** Callback function that gets called after the completion of every redraw sequence.
sl@0
  1139
	@see MWsScreenRedraw::SetObserver
sl@0
  1140
	@publishedPartner
sl@0
  1141
	@prototype
sl@0
  1142
	*/
sl@0
  1143
	virtual void ScreenUpdated(TInt aScreenNumber) = 0;
sl@0
  1144
	};
sl@0
  1145
sl@0
  1146
/** This is part of the MGraphicDrawerInterface
sl@0
  1147
sl@0
  1148
@publishedPartner
sl@0
  1149
@prototype
sl@0
  1150
*/
sl@0
  1151
class MWsMemoryRelease : public MWsObjectProvider
sl@0
  1152
	{
sl@0
  1153
public:
sl@0
  1154
	DECLARE_WS_TYPE_ID(KMWsMemoryRelease)
sl@0
  1155
	enum TMemoryReleaseLevel
sl@0
  1156
		{
sl@0
  1157
		ELow,
sl@0
  1158
		EMedium,
sl@0
  1159
		EHigh
sl@0
  1160
		};
sl@0
  1161
	/** This function is called on registered memory release objects whenever there
sl@0
  1162
	is insufficient memory available to honour an Alloc or ReAlloc in the window server
sl@0
  1163
	process.  It may be called up to three times, once for each level defined in TLevel.
sl@0
  1164
	The meaning of each level is open to interpretation by individual implementations.
sl@0
  1165
	@see MGraphicDrawerEnvironment::RegisterMemoryRelease
sl@0
  1166
	@param aLevel 
sl@0
  1167
	@return ETrue to indicate that memory was freed, EFalse otherwise.
sl@0
  1168
	@publishedPartner
sl@0
  1169
	@prototype
sl@0
  1170
	*/
sl@0
  1171
	virtual TBool ReleaseMemory(TMemoryReleaseLevel aLevel) = 0;
sl@0
  1172
	};
sl@0
  1173
sl@0
  1174
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
  1175
/** This is an extension of the MWsGc.  This interface is not used in
sl@0
  1176
non-NGA configurations.  It has been removed from NGA configurations.
sl@0
  1177
sl@0
  1178
@see MWsGc
sl@0
  1179
@publishedPartner
sl@0
  1180
@prototype
sl@0
  1181
*/
sl@0
  1182
class MWsGcClipRect : public MWsObjectProvider
sl@0
  1183
	{
sl@0
  1184
public:
sl@0
  1185
	DECLARE_WS_TYPE_ID(KMWsGcClipRect)
sl@0
  1186
	/** Sets a master clipping rectangle on the GC.  This will combine with any clipping rectangles
sl@0
  1187
	specified by the client.
sl@0
  1188
	@param aRect
sl@0
  1189
	*/
sl@0
  1190
	virtual void SetClipRect(TRect aRect) = 0;
sl@0
  1191
	/** Resets the master clipping rectangle specified in SetMasterClipRect
sl@0
  1192
	*/
sl@0
  1193
	virtual void ResetClipRect() = 0;
sl@0
  1194
	/** Returns the combined clipping rectangle.
sl@0
  1195
	@param aRect this is set to the clipping rectangle
sl@0
  1196
	@param aSet this is true if there is a clipping rectangle in effect
sl@0
  1197
	*/
sl@0
  1198
	virtual void GetClipRect(TRect & aRect, TBool & aSet) = 0;
sl@0
  1199
	};
sl@0
  1200
#endif
sl@0
  1201
sl@0
  1202
/** DebugBarDrawer interface
sl@0
  1203
     
sl@0
  1204
@publishedPartner
sl@0
  1205
@prototype
sl@0
  1206
*/
sl@0
  1207
class MWsDebugBar : public MWsObjectProvider
sl@0
  1208
	{
sl@0
  1209
public:
sl@0
  1210
	DECLARE_WS_TYPE_ID(KMWsDebugBar)
sl@0
  1211
	
sl@0
  1212
public:
sl@0
  1213
	/**
sl@0
  1214
	 * Prints a debug information bar overlaid at the top the screen.
sl@0
  1215
	 * 
sl@0
  1216
	 * @param aDebugText An array of text lines.
sl@0
  1217
	 */
sl@0
  1218
	virtual void DrawDebugBar(const TArray<TPtrC>& aDebugText)=0;
sl@0
  1219
	};
sl@0
  1220
sl@0
  1221
/** This is an extension of MWsGc and provides plugin fading capabilities for wserv.
sl@0
  1222
    Default implementation of the plugin uses bitgdi fade. 
sl@0
  1223
    
sl@0
  1224
@see MWsGc
sl@0
  1225
@publishedPartner
sl@0
  1226
@prototype
sl@0
  1227
*/
sl@0
  1228
class MWsFader : public MWsObjectProvider
sl@0
  1229
	{
sl@0
  1230
public:
sl@0
  1231
	DECLARE_WS_TYPE_ID(KMWsFader)
sl@0
  1232
	
sl@0
  1233
public:
sl@0
  1234
	/** Sets any parameters for the fade.
sl@0
  1235
	@param aData Descriptor containing the fade parameters
sl@0
  1236
	*/
sl@0
  1237
	virtual void SetFadingParameters(const TDesC8& aData)=0;
sl@0
  1238
#if !defined(SYMBIAN_GRAPHICS_GCE)
sl@0
  1239
	/** Perform a fade of the specified region
sl@0
  1240
	@param aBitGc CFbsBitGc to perform the fading with.
sl@0
  1241
	@param aRegion TRegion containing the region that the fading is to be performed on.
sl@0
  1242
	*/
sl@0
  1243
	virtual void FadeArea(CFbsBitGc* aBitGc,const TRegion * aRegion)=0;
sl@0
  1244
#else
sl@0
  1245
	/** Perform a fade of the specified region
sl@0
  1246
	@param aRegion TRegion containing the region that the fading is to be performed on.
sl@0
  1247
	*/
sl@0
  1248
	virtual void FadeArea(const TRegion& aRegion)=0;
sl@0
  1249
#endif
sl@0
  1250
	};
sl@0
  1251
sl@0
  1252
/** Plugin Manager Interface
sl@0
  1253
@publishedPartner
sl@0
  1254
@prototype
sl@0
  1255
*/	
sl@0
  1256
class MWsPluginManager : public MWsObjectProvider
sl@0
  1257
	{
sl@0
  1258
public:
sl@0
  1259
	DECLARE_WS_TYPE_ID(KMWsPluginManager)
sl@0
  1260
	
sl@0
  1261
	/** Resolve an instance of an interface
sl@0
  1262
	@param aTypeId
sl@0
  1263
	*/
sl@0
  1264
	virtual TAny* ResolvePluginInterface(TUint aTypeId) = 0;
sl@0
  1265
	};
sl@0
  1266
	
sl@0
  1267
/** An Interface to allow CRP's and CWsPlugins to access the wserv ini file
sl@0
  1268
@publishedPartner
sl@0
  1269
@prototype
sl@0
  1270
*/
sl@0
  1271
class MWsIniFile : public MWsObjectProvider
sl@0
  1272
	{
sl@0
  1273
public:
sl@0
  1274
	DECLARE_WS_TYPE_ID(KMWsIniFile)
sl@0
  1275
	
sl@0
  1276
	/** Find the value of the specified variable if present in the window server ini file.
sl@0
  1277
	@param aVarName TDesC containing the name of the variable to find.
sl@0
  1278
	@param aResult TPtrC that gets set to the value of the ini variable.
sl@0
  1279
	@return ETrue if ini file variable found
sl@0
  1280
	*/
sl@0
  1281
	virtual TBool FindVar(const TDesC &aVarName, TPtrC &aResult) = 0;
sl@0
  1282
sl@0
  1283
	/** Find the value of the specified variable if present in the window server ini file.
sl@0
  1284
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1285
	@param aResult TInt that gets set to the value of the ini variable
sl@0
  1286
	@return ETrue if ini file variable found
sl@0
  1287
	*/
sl@0
  1288
	virtual TBool FindVar(const TDesC &aVarName, TInt &aResult) = 0;
sl@0
  1289
sl@0
  1290
	/** Find if the variable is present in the ini file
sl@0
  1291
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1292
	@return ETrue if ini file variable found
sl@0
  1293
	*/
sl@0
  1294
	virtual TBool FindVar(const TDesC &aVarName) = 0;
sl@0
  1295
sl@0
  1296
	/** Find if the variable is present in the [SCREENx] section
sl@0
  1297
	@param aScreen TInt containing the screen number
sl@0
  1298
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1299
	@return ETrue if ini file variable found
sl@0
  1300
	*/
sl@0
  1301
	virtual TBool FindVar( TInt aScreen, const TDesC &aVarName) = 0;
sl@0
  1302
sl@0
  1303
	/** Find the value of the specified variable if present in the [SCREENx] section of the ini file
sl@0
  1304
	@param aScreen TInt containing the screen number
sl@0
  1305
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1306
	@param aResult TInt that gets set to the value of the ini variable
sl@0
  1307
	@return ETrue if ini file variable found
sl@0
  1308
	*/
sl@0
  1309
	virtual TBool FindVar( TInt aScreen, const TDesC &aVarName, TInt &aResult) = 0;
sl@0
  1310
sl@0
  1311
	/** Find the value of the specified variable if present in the [SCREENx] section of the ini file
sl@0
  1312
	@param aScreen TInt containing the screen number
sl@0
  1313
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1314
	@param aResult TPtrC that gets set to the value of the ini variable.
sl@0
  1315
	@return ETrue if ini file variable found
sl@0
  1316
	*/
sl@0
  1317
	virtual TBool FindVar( TInt aScreen, const TDesC& aVarName, TPtrC &aResult) = 0;
sl@0
  1318
sl@0
  1319
	/** Find if the specified variable is present in the named section of the ini file
sl@0
  1320
	@param aSection TDesC containing the name of the section 
sl@0
  1321
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1322
	@return ETrue if ini file variable found
sl@0
  1323
	*/
sl@0
  1324
	virtual TBool FindVar(const TDesC& aSection, const TDesC &aVarName) = 0;
sl@0
  1325
	
sl@0
  1326
	/** Find the value of the specified variable in the named section of the ini file.
sl@0
  1327
	@param aSection TDesC containing the name of the section 
sl@0
  1328
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1329
	@param aResult TInt that gets set to the value of the ini variable
sl@0
  1330
	@return ETrue if ini file variable found
sl@0
  1331
	*/
sl@0
  1332
	virtual TBool FindVar(const TDesC& aSection, const TDesC &aVarName, TInt &aResult) = 0;
sl@0
  1333
sl@0
  1334
	/** Find the value of the specified variable in the named section of the ini file.
sl@0
  1335
	@param aSection TDesC containing the name of the section 
sl@0
  1336
	@param aVarName TDesC containing the name of the variable to find
sl@0
  1337
	@param aResult TPtrC that gets set to the value of the ini variable.
sl@0
  1338
	@return ETrue if ini file variable found
sl@0
  1339
	*/
sl@0
  1340
	virtual TBool FindVar(const TDesC& aSection, const TDesC& aVarName, TPtrC &aResult) = 0;
sl@0
  1341
	};
sl@0
  1342
sl@0
  1343
/** An interface that allows CRP's and CWsPlugin derived objects to handle events like anim dll's
sl@0
  1344
@publishedPartner
sl@0
  1345
@prototype
sl@0
  1346
*/
sl@0
  1347
class MWsRawEventServer : public MWsObjectProvider
sl@0
  1348
	{
sl@0
  1349
public:
sl@0
  1350
	DECLARE_WS_TYPE_ID(KMWsRawEventServer)
sl@0
  1351
sl@0
  1352
	/** Register to be notified when some kernel events occur.
sl@0
  1353
	@return KErrNone if successful
sl@0
  1354
	@prototype */
sl@0
  1355
	virtual TInt RegisterRawEventHandler(MEventHandler* aHandler) = 0;
sl@0
  1356
	/** Unregister from events notification
sl@0
  1357
	@prototype */
sl@0
  1358
	virtual void UnregisterRawEventHandler(MEventHandler* aHandler) = 0;
sl@0
  1359
	/** Creates a new raw event
sl@0
  1360
	@prototype */
sl@0
  1361
	virtual void PostRawEvent(const TRawEvent & aEvent) = 0;
sl@0
  1362
	/** Creates a new key event
sl@0
  1363
	@prototype */
sl@0
  1364
	virtual void PostKeyEvent(const TKeyEvent & aEvent) = 0;
sl@0
  1365
	};
sl@0
  1366
sl@0
  1367
#endif //#ifndef __WSGRAPHICDRAWERINTEFACE_H__