os/graphics/windowing/windowserver/nonnga/SERVER/server.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) 1999-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
// 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/WSGRAPHICDRAWERINTERFACE.H>
sl@0
    31
#include "Graphics/wsgraphicdrawerinternal.h"
sl@0
    32
#include "WSGRAPHICDRAWERARRAY.H"
sl@0
    33
#include "panics.h"
sl@0
    34
sl@0
    35
class CWsGc;
sl@0
    36
class CWsDirectScreenAccess;
sl@0
    37
class CWsAnim;
sl@0
    38
class CWsPluginManager;
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
	EMainServerPriority=100,
sl@0
    50
	ESpriteAnimatePriority=900,			// Below normal heartbeat
sl@0
    51
	EPointerCursorPriority=950,
sl@0
    52
	EHeartBeatPriority=1000,
sl@0
    53
	EKeyRepeatPriority=1990,	// Just below normal events
sl@0
    54
	EPointerRepeatPriority=1990,// Same as for key repeats
sl@0
    55
	EEventPriority=2000,
sl@0
    56
	EWsShellLogonPriority=3000,	// Log on to the shell dying
sl@0
    57
	EDirectTimeOut=4000,
sl@0
    58
	EDirectAbort=4010,
sl@0
    59
	};
sl@0
    60
sl@0
    61
enum {ETidyCountSetting=8};
sl@0
    62
sl@0
    63
class CWsClient;
sl@0
    64
class DWsScreenDevice;
sl@0
    65
sl@0
    66
GLREF_C RWsRegion *GetRegionFromClientL(CWsClient *aClient, TInt aCount);
sl@0
    67
sl@0
    68
//---------------------------
sl@0
    69
// The event queue
sl@0
    70
//---------------------------
sl@0
    71
sl@0
    72
#define WS_EVENT_QUEUE_SIZE 50
sl@0
    73
sl@0
    74
// Forward references
sl@0
    75
sl@0
    76
class CWsRedrawMsgWindow;
sl@0
    77
class CWsWindowRedraw;
sl@0
    78
class CWsWindow;
sl@0
    79
class CWsWindowBase;
sl@0
    80
class CWsWindowGroup;
sl@0
    81
class CWsClientWindow;
sl@0
    82
class CWsClient;
sl@0
    83
class CWsBackedUpWindow;
sl@0
    84
class CWsPointerCursor;
sl@0
    85
class TWindowServerEvent;
sl@0
    86
class CWsRootWindow;
sl@0
    87
sl@0
    88
enum TFlashState {EFlashOn,EFlashOff};
sl@0
    89
sl@0
    90
struct TPointerKeyList
sl@0
    91
	{
sl@0
    92
	TRect iRect;
sl@0
    93
	TInt iScanCode;
sl@0
    94
	TBool iActivatedByPointerSwitchOn;
sl@0
    95
	TDblQueLink iQue;
sl@0
    96
	};
sl@0
    97
sl@0
    98
struct TWsMessage
sl@0
    99
	{
sl@0
   100
	TUid iUid;
sl@0
   101
	TUint8 iTheRest[4];	// Dummy elemnt where a variable length component will be
sl@0
   102
	};
sl@0
   103
sl@0
   104
class WsKeyboardEmulator
sl@0
   105
	{
sl@0
   106
public:
sl@0
   107
	static TBool PointerEvent(TPointerEvent::TType type,const TPoint &aPoint, TDblQue<TPointerKeyList> *iPointerKeyList);
sl@0
   108
private:
sl@0
   109
	static void RawKeyEvent(TRawEvent::TType aType);
sl@0
   110
private: // Private data
sl@0
   111
	static TBool iKeyIsDown;
sl@0
   112
	static TInt iCurrentKeyDown;
sl@0
   113
	};
sl@0
   114
sl@0
   115
struct TPointerEventInternal
sl@0
   116
	{
sl@0
   117
	TPointerEvent::TType iType;		// Type of pointer event
sl@0
   118
	TUint iModifiers;	// State of pointing device and associated buttons
sl@0
   119
	TPoint iPosition; 	// Screen co-ordinates of mouse event
sl@0
   120
	};
sl@0
   121
sl@0
   122
//------------------------------
sl@0
   123
// Client object
sl@0
   124
//------------------------------
sl@0
   125
sl@0
   126
class CWsCliObj : public CWsObject
sl@0
   127
	{
sl@0
   128
public:
sl@0
   129
	static CWsCliObj* NewL(CWsClient *aOwner);
sl@0
   130
private:
sl@0
   131
	CWsCliObj(CWsClient *aOwner);
sl@0
   132
	void ConstructL();
sl@0
   133
public: //from CWsObject
sl@0
   134
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   135
	};
sl@0
   136
sl@0
   137
sl@0
   138
//---------------------------
sl@0
   139
// Capture Key
sl@0
   140
//---------------------------
sl@0
   141
class CWsCaptureKey : public CWsObject
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	CWsCaptureKey(CWsWindowGroup *owner);
sl@0
   145
	~CWsCaptureKey();
sl@0
   146
	void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   147
	void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   148
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   149
	inline CWsWindowGroup *WindowGroup();
sl@0
   150
	inline const CWsWindowGroup *WindowGroup() const;
sl@0
   151
private:
sl@0
   152
	void CmdToParams(const TWsWinCmdCaptureKey &aCaptureKey, TCaptureKey &aParams);
sl@0
   153
private:
sl@0
   154
	CWsWindowGroup *iWindowGroup;
sl@0
   155
	};
sl@0
   156
sl@0
   157
class CWsHotKey : public CBase
sl@0
   158
	{
sl@0
   159
public:
sl@0
   160
	CWsHotKey(TInt aHotKey, TBool aIsDefault);
sl@0
   161
	~CWsHotKey();
sl@0
   162
	void ConstructLD(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   163
	inline TInt HotKeyType() const;
sl@0
   164
	inline TInt KeyHandle() const;
sl@0
   165
	inline TBool IsDefault() const;
sl@0
   166
	inline void SetLink(CWsHotKey *aLink);
sl@0
   167
	void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   168
public:
sl@0
   169
	CWsHotKey *iNext;
sl@0
   170
private:
sl@0
   171
	TInt iHotKeyType;
sl@0
   172
	TBool iIsDefault;
sl@0
   173
	CWsCaptureKey *iCaptureKey;
sl@0
   174
	};
sl@0
   175
sl@0
   176
class CWsCaptureKeyUpsAndDowns : public CWsObject
sl@0
   177
	{
sl@0
   178
public:
sl@0
   179
	CWsCaptureKeyUpsAndDowns(CWsWindowGroup *owner);
sl@0
   180
	~CWsCaptureKeyUpsAndDowns();
sl@0
   181
	void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
sl@0
   182
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   183
	static CWsWindowGroup *CheckForCapture(TUint aScanCode, TUint aModifiers);
sl@0
   184
	inline CWsWindowGroup *WindowGroup();
sl@0
   185
	inline const CWsWindowGroup *WindowGroup() const;
sl@0
   186
private:
sl@0
   187
	TUint iModifierValue;
sl@0
   188
	TUint iModifierMask;
sl@0
   189
	TUint iScanCode;
sl@0
   190
	static TPriQue<CWsCaptureKeyUpsAndDowns> iCaptureKeysUpsAndDowns;
sl@0
   191
	TPriQueLink iLink;
sl@0
   192
	CWsWindowGroup *iWindowGroup;
sl@0
   193
	};
sl@0
   194
sl@0
   195
class CWsCaptureLongKey : public CWsObject
sl@0
   196
	{
sl@0
   197
	friend class CKeyboardRepeat;
sl@0
   198
public:
sl@0
   199
	CWsCaptureLongKey(CWsWindowGroup *owner);
sl@0
   200
	~CWsCaptureLongKey();
sl@0
   201
	void ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey);
sl@0
   202
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   203
	inline CWsWindowGroup *WindowGroup();
sl@0
   204
	inline const CWsWindowGroup *WindowGroup() const;
sl@0
   205
	static CWsCaptureLongKey* CheckForCapture(TUint aKeyCode, TInt aModifiers);
sl@0
   206
public:
sl@0
   207
	static TPriQue<CWsCaptureLongKey> iCaptureLongKeys;
sl@0
   208
private:
sl@0
   209
	TPriQueLink iLink;
sl@0
   210
	CWsWindowGroup *iWindowGroup;
sl@0
   211
	TWsWinCmdCaptureLongKey iData;
sl@0
   212
	};
sl@0
   213
sl@0
   214
//--------------------------------
sl@0
   215
// Owner of CWsGraphicDrawer
sl@0
   216
//--------------------------------
sl@0
   217
sl@0
   218
class CWsGraphicDrawerObject: public CWsObject
sl@0
   219
	{
sl@0
   220
public:
sl@0
   221
	static CWsGraphicDrawerObject* NewL(CWsClient* aClient,const TWsClCmdUnion &aParams);
sl@0
   222
	~CWsGraphicDrawerObject();
sl@0
   223
	// from CWsObject
sl@0
   224
	void CommandL(TInt aOpcode, const TAny *aCmdData);
sl@0
   225
	// access
sl@0
   226
	CWsGraphicDrawer* Drawer();
sl@0
   227
	const CWsGraphicDrawer* Drawer() const;
sl@0
   228
	inline TInt ClientHandle() const;
sl@0
   229
private:
sl@0
   230
	CWsGraphicDrawerObject(CWsClient* aOwner);
sl@0
   231
	void ConstructL(TUid aType,MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,const TDesC8& aData,TInt aClientHandle);
sl@0
   232
private:
sl@0
   233
	static TInt TransientSequence;
sl@0
   234
	static TBool RollOver;
sl@0
   235
	CWsGraphicDrawer* iDrawer;
sl@0
   236
	TInt iClientHandle;
sl@0
   237
	};
sl@0
   238
sl@0
   239
//----------------------------
sl@0
   240
// Window's
sl@0
   241
//----------------------------
sl@0
   242
sl@0
   243
enum TWalkMode
sl@0
   244
	{
sl@0
   245
	EWalkBehind,
sl@0
   246
	EWalkChildren,
sl@0
   247
	EWalkChildrenAndBehind
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
	//0x20
sl@0
   257
	//0x40
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
	//0x8000
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
	//0x00080000,
sl@0
   271
	//0x00100000,
sl@0
   272
	//0x00200000,
sl@0
   273
	//0x00400000,
sl@0
   274
	//0x00800000,
sl@0
   275
	EFlagGeneratesVisibilityEvents=0x02000000,	// True if visibility events are enabled for this window
sl@0
   276
	EFlagCanBeSeen=0x04000000,					// True if the last visibility event indicated that part of the window was visible
sl@0
   277
//	EFlagTransparencyAlphaChannel=0x08000000, // True if the window is transparent with an alpha channel (and no transparency mask)
sl@0
   278
	EFlagNotCantBeSeen=0x10000000,					// True if the last visibility event did not indicate that part of the window was not visible
sl@0
   279
//	EFlagTransparencyPolicyFreezeUnder=0x20000000,	// True if the transparent window enables freezing under policy
sl@0
   280
//	EFlagChildClippedRegionValid=0x40000000,  // True if the ChildClippedRegion is valid
sl@0
   281
	EFlagHasAlpha=            0x80000000,  // Equivalent to EFlagTransperencyAlphaChannel - new name to prevent confusion
sl@0
   282
	};
sl@0
   283
sl@0
   284
//
sl@0
   285
// Sprites
sl@0
   286
//
sl@0
   287
sl@0
   288
class TWsDeltaTimerEntry
sl@0
   289
	{
sl@0
   290
	friend class CWsDeltaTimer;
sl@0
   291
public:
sl@0
   292
	inline TWsDeltaTimerEntry(TCallBack& aCallback);
sl@0
   293
	inline TWsDeltaTimerEntry();
sl@0
   294
	inline void Set(TCallBack& aCallback);
sl@0
   295
	inline TBool IsPending();
sl@0
   296
private:
sl@0
   297
	TCallBack iCallBack; 
sl@0
   298
	TDeltaQueLink iLink;
sl@0
   299
	};
sl@0
   300
class CWsDeltaTimer : public CActive
sl@0
   301
	{
sl@0
   302
	enum {CWsDeltaTimerGranularity=100000};
sl@0
   303
public:
sl@0
   304
	static CWsDeltaTimer* NewL(TInt aPriority);
sl@0
   305
	void Queue(TTimeIntervalMicroSeconds32 aTimeInMicroSeconds,TWsDeltaTimerEntry& aHandle);
sl@0
   306
	void Remove(TWsDeltaTimerEntry& anEntry);
sl@0
   307
	void Activate();
sl@0
   308
	~CWsDeltaTimer();
sl@0
   309
private:
sl@0
   310
	CWsDeltaTimer(TInt aPriority);
sl@0
   311
	void DoCancel();
sl@0
   312
	void RunL();
sl@0
   313
protected:
sl@0
   314
	RTimer iTimer;
sl@0
   315
	TDeltaQue<TWsDeltaTimerEntry> iQueue;
sl@0
   316
	};
sl@0
   317
sl@0
   318
//---------------------------
sl@0
   319
// Top level command class
sl@0
   320
//---------------------------
sl@0
   321
sl@0
   322
/** The main server class.
sl@0
   323
sl@0
   324
@internalComponent
sl@0
   325
@released
sl@0
   326
*/
sl@0
   327
class CWindowServer : public CPolicyServer, public MWsGraphicDrawerEnvironment, public MWsMemoryRelease, public MWsRawEventServer
sl@0
   328
	{
sl@0
   329
public:
sl@0
   330
	static CWindowServer *NewL();
sl@0
   331
	~CWindowServer();
sl@0
   332
	TInt SessionCount();
sl@0
   333
	MWsAnimationScheduler* AnimationScheduler();
sl@0
   334
	CWsPluginManager * PluginManager();
sl@0
   335
	TBool ReleaseMemory();
sl@0
   336
public:	// from MWsGraphicDrawerEnvironment
sl@0
   337
	const CWsGraphicDrawer* ResolveGraphic(const TGraphicDrawerId& aId) const;
sl@0
   338
	void Invalidate(const TGraphicDrawerId& aId);
sl@0
   339
	TInt ScreenCount() const;
sl@0
   340
	MWsScreen* Screen(TInt aIndex);
sl@0
   341
	const MWsScreen* Screen(TInt aIndex) const;
sl@0
   342
	TBool SetCustomAnimationScheduler(MWsAnimationScheduler* aScheduler);
sl@0
   343
	TBool HasCustomAnimationScheduler() const;
sl@0
   344
	TBool ClearCustomAnimationScheduler(MWsAnimationScheduler* aCurrentScheduler);
sl@0
   345
	TInt RegisterEventHandler(CWsGraphicDrawer* aDrawer, MWsEventHandler* aHandler, TUint32 aEventMask);
sl@0
   346
	TInt UnregisterEventHandler(CWsGraphicDrawer* aDrawer);
sl@0
   347
	TInt RegisterWsEventHandler(MWsEventHandler* aHandler, TUint32 aEventMask);
sl@0
   348
	TInt UnregisterWsEventHandler(MWsEventHandler* aHandler);
sl@0
   349
	void Log(TInt aPriority,const TDesC &aFmt,TInt aParam=0);
sl@0
   350
	TInt RegisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
sl@0
   351
	void UnregisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
sl@0
   352
sl@0
   353
public: // from MWsRawEventServer
sl@0
   354
	TInt RegisterRawEventHandler(MEventHandler * aHandler);
sl@0
   355
	void UnregisterRawEventHandler(MEventHandler * aHandler);
sl@0
   356
	void PostRawEvent(const TRawEvent & aEvent);
sl@0
   357
	void PostKeyEvent(const TKeyEvent & aEvent);
sl@0
   358
sl@0
   359
public:
sl@0
   360
	// CWsGraphicDrawer master index
sl@0
   361
	TInt AddGraphicDrawer(CWsGraphicDrawer* aDrawer);
sl@0
   362
	TInt SwapGraphicDrawer(CWsGraphicDrawer* aDrawer);
sl@0
   363
	TInt RemoveGraphicDrawer(const TGraphicDrawerId& aId);
sl@0
   364
	TInt RemoveAllGraphicDrawers(const MWsClient& aOwner);
sl@0
   365
public: // from MWsMemoryRelease
sl@0
   366
	TBool ReleaseMemory(TMemoryReleaseLevel aLevel);
sl@0
   367
private:
sl@0
   368
	CWindowServer();
sl@0
   369
	void ConstructL();
sl@0
   370
	TAny* ResolveObjectInterface(TUint aTypeId);
sl@0
   371
private:	// from CServer2
sl@0
   372
	CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
sl@0
   373
private:
sl@0
   374
	class CDefaultAnimationScheduler;
sl@0
   375
	CDefaultAnimationScheduler* iDefaultAnimationScheduler;
sl@0
   376
	CWsPluginManager* iPluginManager;
sl@0
   377
	RPointerArray<MWsMemoryRelease> iMemoryReleases;
sl@0
   378
	/** An index to all the CWsGraphicDrawer objects.
sl@0
   379
	
sl@0
   380
	All the CWsGraphicDrawer objects are created and owned by the CWsClient objects but they are
sl@0
   381
	indexed centrally because some operations require access to the full list.
sl@0
   382
	*/
sl@0
   383
	CWsGraphicDrawerArray iDrawerMasterIndex;
sl@0
   384
	};
sl@0
   385
sl@0
   386
//
sl@0
   387
inline CWsWindowGroup *CWsCaptureKey::WindowGroup()
sl@0
   388
	{return(iWindowGroup);}
sl@0
   389
inline const CWsWindowGroup *CWsCaptureKey::WindowGroup() const
sl@0
   390
	{return(iWindowGroup);}
sl@0
   391
//
sl@0
   392
inline CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup()
sl@0
   393
	{return(iWindowGroup);}
sl@0
   394
inline const CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup() const
sl@0
   395
	{return(iWindowGroup);}
sl@0
   396
//
sl@0
   397
inline CWsWindowGroup *CWsCaptureLongKey::WindowGroup()
sl@0
   398
	{return(iWindowGroup);}
sl@0
   399
inline const CWsWindowGroup *CWsCaptureLongKey::WindowGroup() const
sl@0
   400
	{return(iWindowGroup);}
sl@0
   401
//
sl@0
   402
inline CWsPointerCursor *CWsClient::DefaultSystemPointerCursor()
sl@0
   403
	{return(iDefaultSystemPointerCursor);}
sl@0
   404
//
sl@0
   405
inline TInt CWsHotKey::HotKeyType() const
sl@0
   406
	{return(iHotKeyType);}
sl@0
   407
inline TInt CWsHotKey::KeyHandle() const
sl@0
   408
	{return((TInt)iCaptureKey);}
sl@0
   409
inline TBool CWsHotKey::IsDefault() const
sl@0
   410
	{return(iIsDefault);}
sl@0
   411
inline void CWsHotKey::SetLink(CWsHotKey *aLink)
sl@0
   412
	{iNext=aLink;}
sl@0
   413
//
sl@0
   414
inline TWsDeltaTimerEntry::TWsDeltaTimerEntry(TCallBack& aCallback)
sl@0
   415
	{iCallBack=aCallback;}
sl@0
   416
inline TWsDeltaTimerEntry::TWsDeltaTimerEntry()
sl@0
   417
	{}
sl@0
   418
inline void TWsDeltaTimerEntry::Set(TCallBack& aCallback)
sl@0
   419
	{iCallBack=aCallback;}
sl@0
   420
inline TBool TWsDeltaTimerEntry::IsPending()
sl@0
   421
	{return(iLink.iNext!=NULL);}
sl@0
   422
//
sl@0
   423
inline TInt CWsGraphicDrawerObject::ClientHandle() const
sl@0
   424
	{return iClientHandle;}
sl@0
   425
sl@0
   426
#endif