os/graphics/windowing/windowserver/nga/SERVER/openwfc/server.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1999-2010 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
// Window server C++ Class definitions
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __SERVER_H__
sl@0
    19
#define __SERVER_H__
sl@0
    20
sl@0
    21
#include <e32std.h>
sl@0
    22
#include "W32STD.H"
sl@0
    23
#include "w32cmd.h"
sl@0
    24
#include <bitstd.h>
sl@0
    25
#include <bitdev.h>
sl@0
    26
#include <e32svr.h>
sl@0
    27
#include "OBJECT.H"
sl@0
    28
#include "CLIENT.H"
sl@0
    29
#include "ScrDev.H"
sl@0
    30
#include <graphics/wskeyrouter.h>
sl@0
    31
#include <graphics/WSGRAPHICDRAWERINTERFACE.H>
sl@0
    32
#include "graphics/wsgraphicdrawerinternal.h"
sl@0
    33
#include "WSGRAPHICDRAWERARRAY.H"
sl@0
    34
#include "panics.h"
sl@0
    35
sl@0
    36
class CWsGc;
sl@0
    37
class CWsDirectScreenAccess;
sl@0
    38
class CWsAnim;
sl@0
    39
sl@0
    40
const TUid KDllUid={0x10000079};
sl@0
    41
sl@0
    42
const TUint KMaxNumberOfMsgsInQueue=20;
sl@0
    43
const TUint KMaxNumberOfMsgsInInactiveQueue=2;
sl@0
    44
sl@0
    45
enum TWservActiveObjectPriorities
sl@0
    46
	{
sl@0
    47
	EWsGraphicAnimateAwaitIdlePriority=0, // lowest of all, when the system is really idle
sl@0
    48
	EWsGraphicAnimatePriority=50,		// used by the default animation scheduler; custom schedulers might use other priorities as they see fit
sl@0
    49
	EComposeMergePriority=80,			// Merges normal priority screen composition requests
sl@0
    50
	EMainServerPriority=100,
sl@0
    51
	ESpriteAnimatePriority=900,			// Below normal heartbeat
sl@0
    52
	EPointerCursorPriority=950,
sl@0
    53
	EHeartBeatPriority=1000,
sl@0
    54
	EKeyRepeatPriority=1980,
sl@0
    55
	EPointerRepeatPriority=1980,// Same as for key repeats
sl@0
    56
	EEventPriority=2000,
sl@0
    57
	EComposeCompletePriority=2500,		// Triggers further composition if necessary
sl@0
    58
	EWsShellLogonPriority=3000,	// Log on to the shell dying
sl@0
    59
	EDirectTimeOut=4000,
sl@0
    60
	EDirectAbort=4010,
sl@0
    61
	};
sl@0
    62
sl@0
    63
enum {ETidyCountSetting=8};
sl@0
    64
sl@0
    65
class CWsClient;
sl@0
    66
class DWsScreenDevice;
sl@0
    67
sl@0
    68
GLREF_C RWsRegion *GetRegionFromClientL(CWsClient *aClient, TInt aCount);
sl@0
    69
sl@0
    70
//---------------------------
sl@0
    71
// The event queue
sl@0
    72
//---------------------------
sl@0
    73
sl@0
    74
#define WS_EVENT_QUEUE_SIZE 50
sl@0
    75
sl@0
    76
// Forward references
sl@0
    77
sl@0
    78
class CWsRedrawMsgWindow;
sl@0
    79
class CWsWindowRedraw;
sl@0
    80
class CWsWindow;
sl@0
    81
class CWsWindowBase;
sl@0
    82
class CWsWindowGroup;
sl@0
    83
class CWsClientWindow;
sl@0
    84
class CWsTopClientWindow;
sl@0
    85
class CWsClient;
sl@0
    86
class CWsBackedUpWindow;
sl@0
    87
class CWsPointerCursor;
sl@0
    88
class TWindowServerEvent;
sl@0
    89
class CWsRootWindow;
sl@0
    90
sl@0
    91
enum TFlashState {EFlashOn,EFlashOff};
sl@0
    92
sl@0
    93
struct TPointerKeyList
sl@0
    94
	{
sl@0
    95
	TRect iRect;
sl@0
    96
	TInt iScanCode;
sl@0
    97
	TBool iActivatedByPointerSwitchOn;
sl@0
    98
	TDblQueLink iQue;
sl@0
    99
	};
sl@0
   100
sl@0
   101
struct TWsMessage
sl@0
   102
	{
sl@0
   103
	TUid iUid;
sl@0
   104
	TUint8 iTheRest[4];	// Dummy elemnt where a variable length component will be
sl@0
   105
	};
sl@0
   106
sl@0
   107
class WsKeyboardEmulator
sl@0
   108
	{
sl@0
   109
public:
sl@0
   110
	static TBool PointerEvent(TPointerEvent::TType type,const TPoint &aPoint, TDblQue<TPointerKeyList> *iPointerKeyList);
sl@0
   111
private:
sl@0
   112
	static void RawKeyEvent(TRawEvent::TType aType);
sl@0
   113
private: // Private data
sl@0
   114
	static TBool iKeyIsDown;
sl@0
   115
	static TInt iCurrentKeyDown;
sl@0
   116
	};
sl@0
   117
sl@0
   118
struct TPointerEventInternal
sl@0
   119
	{
sl@0
   120
	TPointerEvent::TType iType;		// Type of pointer event
sl@0
   121
	TUint iModifiers;	// State of pointing device and associated buttons
sl@0
   122
	TPoint iPosition; 	// Screen co-ordinates of mouse event
sl@0
   123
	};
sl@0
   124
sl@0
   125
//------------------------------
sl@0
   126
// Client object
sl@0
   127
//------------------------------
sl@0
   128
sl@0
   129
class CWsCliObj : public CWsObject
sl@0
   130
	{
sl@0
   131
public:
sl@0
   132
	static CWsCliObj* NewL(CWsClient *aOwner);
sl@0
   133
private:
sl@0
   134
	CWsCliObj(CWsClient *aOwner);
sl@0
   135
	void ConstructL();
sl@0
   136
public: //from CWsObject
sl@0
   137
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   138
	};
sl@0
   139
sl@0
   140
sl@0
   141
//---------------------------
sl@0
   142
// Capture Key
sl@0
   143
//---------------------------
sl@0
   144
class CWsCaptureKey : public CWsObject
sl@0
   145
	{
sl@0
   146
public:
sl@0
   147
	CWsCaptureKey(CWsWindowGroup *owner);
sl@0
   148
	~CWsCaptureKey();
sl@0
   149
	void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   150
	void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   151
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   152
	inline CWsWindowGroup *WindowGroup();
sl@0
   153
	inline const CWsWindowGroup *WindowGroup() const;
sl@0
   154
private:
sl@0
   155
	void CmdToRequest(const TWsWinCmdCaptureKey &aCaptureKey, TKeyCaptureRequest &aParams);
sl@0
   156
private:
sl@0
   157
	CWsWindowGroup *iWindowGroup;
sl@0
   158
	};
sl@0
   159
sl@0
   160
class CWsHotKey : public CBase
sl@0
   161
	{
sl@0
   162
public:
sl@0
   163
	CWsHotKey(TInt aHotKey, TBool aIsDefault);
sl@0
   164
	~CWsHotKey();
sl@0
   165
	void ConstructLD(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   166
	inline TInt HotKeyType() const;
sl@0
   167
	inline TInt KeyHandle() const;
sl@0
   168
	inline TBool IsDefault() const;
sl@0
   169
	inline void SetLink(CWsHotKey *aLink);
sl@0
   170
	void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   171
public:
sl@0
   172
	CWsHotKey *iNext;
sl@0
   173
private:
sl@0
   174
	TInt iHotKeyType;
sl@0
   175
	TBool iIsDefault;
sl@0
   176
	CWsCaptureKey *iCaptureKey;
sl@0
   177
	};
sl@0
   178
sl@0
   179
class CWsCaptureKeyUpsAndDowns : public CWsObject
sl@0
   180
	{
sl@0
   181
public:
sl@0
   182
	CWsCaptureKeyUpsAndDowns(CWsWindowGroup *owner);
sl@0
   183
	~CWsCaptureKeyUpsAndDowns();
sl@0
   184
	void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   185
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   186
	inline CWsWindowGroup *WindowGroup();
sl@0
   187
	inline const CWsWindowGroup *WindowGroup() const;
sl@0
   188
private:
sl@0
   189
	CWsWindowGroup *iWindowGroup;
sl@0
   190
	};
sl@0
   191
sl@0
   192
class CWsCaptureLongKey : public CWsObject
sl@0
   193
	{
sl@0
   194
	friend class CKeyboardRepeat;
sl@0
   195
	friend class TWindowServerEvent;
sl@0
   196
public:
sl@0
   197
	CWsCaptureLongKey(CWsWindowGroup *owner);
sl@0
   198
	~CWsCaptureLongKey();
sl@0
   199
	void ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey);
sl@0
   200
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   201
	inline CWsWindowGroup *WindowGroup();
sl@0
   202
	inline const CWsWindowGroup *WindowGroup() const;
sl@0
   203
private:
sl@0
   204
	TTimeIntervalMicroSeconds32 iDelay;
sl@0
   205
	TUint iFlags;
sl@0
   206
	CWsWindowGroup *iWindowGroup;
sl@0
   207
	};
sl@0
   208
sl@0
   209
//--------------------------------
sl@0
   210
// Owner of CWsGraphicDrawer
sl@0
   211
//--------------------------------
sl@0
   212
sl@0
   213
class CWsGraphicDrawerObject: public CWsObject
sl@0
   214
	{
sl@0
   215
public:
sl@0
   216
	static CWsGraphicDrawerObject* NewL(CWsClient* aClient,const TWsClCmdUnion &aParams);
sl@0
   217
	~CWsGraphicDrawerObject();
sl@0
   218
	// from CWsObject
sl@0
   219
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   220
	// access
sl@0
   221
	CWsGraphicDrawer* Drawer();
sl@0
   222
	const CWsGraphicDrawer* Drawer() const;
sl@0
   223
	inline TInt ClientHandle() const;
sl@0
   224
private:
sl@0
   225
	CWsGraphicDrawerObject(CWsClient* aOwner);
sl@0
   226
	void ConstructL(TUid aType,MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,const TDesC8& aData,TInt aClientHandle);
sl@0
   227
private:
sl@0
   228
	static TInt TransientSequence;
sl@0
   229
	static TBool RollOver;
sl@0
   230
	CWsGraphicDrawer* iDrawer;
sl@0
   231
	TInt iClientHandle;
sl@0
   232
	};
sl@0
   233
sl@0
   234
//----------------------------
sl@0
   235
// Window's
sl@0
   236
//----------------------------
sl@0
   237
enum TWalkMode
sl@0
   238
	{
sl@0
   239
	EWalkBehind,
sl@0
   240
	EWalkChildren,
sl@0
   241
	EWalkChildrenAndBehind
sl@0
   242
	};
sl@0
   243
sl@0
   244
enum TWalkModeBackToFront
sl@0
   245
	{
sl@0
   246
	EVisitParentNodesFirst, //Useful for re-sending the entire window tree.
sl@0
   247
	};
sl@0
   248
sl@0
   249
enum TWindowFlags
sl@0
   250
	{
sl@0
   251
	EFlagHidden=0x1,			// True if the window is invisble for any reason
sl@0
   252
	EFlagPointerCaptured=0x2,
sl@0
   253
	EFlagPointerGrab=0x4,
sl@0
   254
	EFlagInvisible=0x8,			// True if the client has requested the window to be invisible
sl@0
   255
	EFlagActive=0x10,			// True if the window has been activated
sl@0
   256
	EFlagValidRedraw=0x20,      // True if a Begin/End redraw was called with GC commands. An empty Begin/End redraw is used to trigger redraw loop without actually drawing to the window with GC.
sl@0
   257
//	EFlagHasGcDrawing=0x40,    // True if a GC has drawn on a window.
sl@0
   258
	EFlagDrawnToScreen=0x80,    // True if the window has been drawn to the screen since it became visible
sl@0
   259
	//0x100
sl@0
   260
	EFlagPointerCaptureDragDrop=0x200,	// True if pointure capture in Drag/Drop mode
sl@0
   261
	EFlagPointerCaptureAllGroups=0x400,	// True if pointer capture affects all groups
sl@0
   262
	EFlagUsingPointerBuffer=0x800,		// True if using a pointer event buffer
sl@0
   263
	EFlagHasPointerBuffer=0x1000,		// True if has pointer event buffer allocated
sl@0
   264
	//0x2000
sl@0
   265
	EFlagFadeBehind=0x4000,             // True if fade behind requested for this window
sl@0
   266
	EFlagIsTopClientWindow=0x8000,	// True if is a top level client window
sl@0
   267
	EFlagNonFadingWindow=0x00010000,		//True if the window should never be faded
sl@0
   268
	EFlagScreenDeviceInvalid=0x00020000,
sl@0
   269
	EFlagShutDownInProgress=0x00040000,		// True if the window is currently being shut down
sl@0
   270
#ifdef SYMBIAN_GRAPHICS_WSERV_QT_EFFECTS
sl@0
   271
	EFlagHasTransparentSurface=0x00080000,
sl@0
   272
	EFlagPaintTransparentHoles=0x00100000,
sl@0
   273
#endif
sl@0
   274
	//0x00200000,
sl@0
   275
	//0x00400000,
sl@0
   276
	//0x00800000,
sl@0
   277
	EFlagGeneratesVisibilityEvents=0x02000000,	// True if visibility events are enabled for this window
sl@0
   278
	EFlagCanBeSeen=0x04000000,					// True if the last visibility event indicated that part of the window was visible
sl@0
   279
//	EFlagTransparencyAlphaChannel=0x08000000, // True if the window is transparent with an alpha channel (and no transparency mask)
sl@0
   280
	EFlagNotCantBeSeen=0x10000000,					// True if the last visibility event did not indicate that part of the window was not visible
sl@0
   281
//	EFlagTransparencyPolicyFreezeUnder=0x20000000,	// True if the transparent window enables freezing under policy
sl@0
   282
//	EFlagChildClippedRegionValid=0x40000000,  // True if the ChildClippedRegion is valid
sl@0
   283
	EFlagHasAlpha=            0x80000000,  // Equivalent to EFlagTransperencyAlphaChannel - new name to prevent confusion
sl@0
   284
	};
sl@0
   285
sl@0
   286
//
sl@0
   287
// Sprites
sl@0
   288
//
sl@0
   289
sl@0
   290
class TWsDeltaTimerEntry
sl@0
   291
	{
sl@0
   292
	friend class CWsDeltaTimer;
sl@0
   293
public:
sl@0
   294
	inline TWsDeltaTimerEntry(TCallBack& aCallback);
sl@0
   295
	inline TWsDeltaTimerEntry();
sl@0
   296
	inline void Set(TCallBack& aCallback);
sl@0
   297
	inline TBool IsPending();
sl@0
   298
private:
sl@0
   299
	TCallBack iCallBack; 
sl@0
   300
	TDeltaQueLink iLink;
sl@0
   301
	};
sl@0
   302
class CWsDeltaTimer : public CActive
sl@0
   303
	{
sl@0
   304
	enum {CWsDeltaTimerGranularity=100000};
sl@0
   305
public:
sl@0
   306
	static CWsDeltaTimer* NewL(TInt aPriority);
sl@0
   307
	void Queue(TTimeIntervalMicroSeconds32 aTimeInMicroSeconds,TWsDeltaTimerEntry& aHandle);
sl@0
   308
	void Remove(TWsDeltaTimerEntry& anEntry);
sl@0
   309
	void Activate();
sl@0
   310
	~CWsDeltaTimer();
sl@0
   311
private:
sl@0
   312
	CWsDeltaTimer(TInt aPriority);
sl@0
   313
	void DoCancel();
sl@0
   314
	void RunL();
sl@0
   315
protected:
sl@0
   316
	RTimer iTimer;
sl@0
   317
	TDeltaQue<TWsDeltaTimerEntry> iQueue;
sl@0
   318
	};
sl@0
   319
sl@0
   320
//---------------------------
sl@0
   321
// Top level command class
sl@0
   322
//---------------------------
sl@0
   323
sl@0
   324
/** The main server class.
sl@0
   325
sl@0
   326
@internalComponent
sl@0
   327
@released
sl@0
   328
*/
sl@0
   329
class CWindowServer : public CBase, public MWsGraphicDrawerEnvironment, public MWsMemoryRelease
sl@0
   330
	{
sl@0
   331
public:
sl@0
   332
	static CWindowServer *NewL();
sl@0
   333
	~CWindowServer();
sl@0
   334
	void StartL();
sl@0
   335
	TInt SessionCount();
sl@0
   336
	MWsAnimationScheduler* AnimationScheduler();
sl@0
   337
	void PrepareShutdown();
sl@0
   338
	TBool ReleaseMemory();
sl@0
   339
	void DestroySessionsForShutdown();
sl@0
   340
	void SetPinClientDescriptors(TBool aPin);
sl@0
   341
public:	// from MWsGraphicDrawerEnvironment
sl@0
   342
	const CWsGraphicDrawer* ResolveGraphic(const TGraphicDrawerId& aId) const;
sl@0
   343
	void Invalidate(const TGraphicDrawerId& aId);
sl@0
   344
	TInt ScreenCount() const;
sl@0
   345
	MWsScreen* Screen(TInt aIndex);
sl@0
   346
	const MWsScreen* Screen(TInt aIndex) const;
sl@0
   347
	TBool SetCustomAnimationScheduler(MWsAnimationScheduler* aScheduler);
sl@0
   348
	TBool HasCustomAnimationScheduler() const;
sl@0
   349
	TBool ClearCustomAnimationScheduler(MWsAnimationScheduler* aCurrentScheduler);
sl@0
   350
	TInt RegisterEventHandler(CWsGraphicDrawer* aDrawer, MWsEventHandler* aHandler, TUint32 aEventMask);
sl@0
   351
	TInt UnregisterEventHandler(CWsGraphicDrawer* aDrawer);
sl@0
   352
	TInt RegisterWsEventHandler(MWsEventHandler* aHandler, TUint32 aEventMask);
sl@0
   353
	TInt UnregisterWsEventHandler(MWsEventHandler* aHandler);
sl@0
   354
	void Log(TInt aPriority,const TDesC &aFmt,TInt aParam=0);
sl@0
   355
	TInt RegisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
sl@0
   356
	void UnregisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
sl@0
   357
sl@0
   358
public:
sl@0
   359
	// CWsGraphicDrawer master index
sl@0
   360
	TInt AddGraphicDrawer(CWsGraphicDrawer* aDrawer);
sl@0
   361
	TInt SwapGraphicDrawer(CWsGraphicDrawer* aDrawer);
sl@0
   362
	TInt RemoveGraphicDrawer(const TGraphicDrawerId& aId);
sl@0
   363
	TInt RemoveAllGraphicDrawers(const MWsClient& aOwner);
sl@0
   364
public: // from MWsMemoryRelease
sl@0
   365
	TBool ReleaseMemory(TMemoryReleaseLevel aLevel);
sl@0
   366
private:
sl@0
   367
	CWindowServer();
sl@0
   368
	void ConstructL();
sl@0
   369
	TAny* ResolveObjectInterface(TUint aTypeId);
sl@0
   370
private:
sl@0
   371
	class CServer;
sl@0
   372
	class CDefaultAnimationScheduler;
sl@0
   373
	CServer* iServer;
sl@0
   374
	CDefaultAnimationScheduler* iDefaultAnimationScheduler;
sl@0
   375
	MWsAnimationScheduler* iCustomAnimationScheduler;
sl@0
   376
	RPointerArray<MWsMemoryRelease> iMemoryReleases;
sl@0
   377
	/** An index to all the CWsGraphicDrawer objects.
sl@0
   378
	
sl@0
   379
	All the CWsGraphicDrawer objects are created and owned by the CWsClient objects but they are
sl@0
   380
	indexed centrally because some operations require access to the full list.
sl@0
   381
	*/
sl@0
   382
	CWsGraphicDrawerArray iDrawerMasterIndex;
sl@0
   383
	};
sl@0
   384
sl@0
   385
//
sl@0
   386
inline CWsWindowGroup *CWsCaptureKey::WindowGroup()
sl@0
   387
	{return(iWindowGroup);}
sl@0
   388
inline const CWsWindowGroup *CWsCaptureKey::WindowGroup() const
sl@0
   389
	{return(iWindowGroup);}
sl@0
   390
//
sl@0
   391
inline CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup()
sl@0
   392
	{return(iWindowGroup);}
sl@0
   393
inline const CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup() const
sl@0
   394
	{return(iWindowGroup);}
sl@0
   395
//
sl@0
   396
inline CWsWindowGroup *CWsCaptureLongKey::WindowGroup()
sl@0
   397
	{return(iWindowGroup);}
sl@0
   398
inline const CWsWindowGroup *CWsCaptureLongKey::WindowGroup() const
sl@0
   399
	{return(iWindowGroup);}
sl@0
   400
//
sl@0
   401
inline CWsPointerCursor *CWsClient::DefaultSystemPointerCursor()
sl@0
   402
	{return(iDefaultSystemPointerCursor);}
sl@0
   403
//
sl@0
   404
inline TInt CWsHotKey::HotKeyType() const
sl@0
   405
	{return(iHotKeyType);}
sl@0
   406
inline TInt CWsHotKey::KeyHandle() const
sl@0
   407
	{return((TInt)iCaptureKey);}
sl@0
   408
inline TBool CWsHotKey::IsDefault() const
sl@0
   409
	{return(iIsDefault);}
sl@0
   410
inline void CWsHotKey::SetLink(CWsHotKey *aLink)
sl@0
   411
	{iNext=aLink;}
sl@0
   412
//
sl@0
   413
inline TWsDeltaTimerEntry::TWsDeltaTimerEntry(TCallBack& aCallback)
sl@0
   414
	{iCallBack=aCallback;}
sl@0
   415
inline TWsDeltaTimerEntry::TWsDeltaTimerEntry()
sl@0
   416
	{}
sl@0
   417
inline void TWsDeltaTimerEntry::Set(TCallBack& aCallback)
sl@0
   418
	{iCallBack=aCallback;}
sl@0
   419
inline TBool TWsDeltaTimerEntry::IsPending()
sl@0
   420
	{return(iLink.iNext!=NULL);}
sl@0
   421
//
sl@0
   422
inline TInt CWsGraphicDrawerObject::ClientHandle() const
sl@0
   423
	{return iClientHandle;}
sl@0
   424
sl@0
   425
#endif