Update contrib.
1 // Copyright (c) 1999-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Window server C++ Class definitions
30 #include <graphics/wskeyrouter.h>
31 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
32 #include "graphics/wsgraphicdrawerinternal.h"
33 #include "WSGRAPHICDRAWERARRAY.H"
37 class CWsDirectScreenAccess;
40 const TUid KDllUid={0x10000079};
42 const TUint KMaxNumberOfMsgsInQueue=20;
43 const TUint KMaxNumberOfMsgsInInactiveQueue=2;
45 enum TWservActiveObjectPriorities
47 EWsGraphicAnimateAwaitIdlePriority=0, // lowest of all, when the system is really idle
48 EWsGraphicAnimatePriority=50, // used by the default animation scheduler; custom schedulers might use other priorities as they see fit
49 EComposeMergePriority=80, // Merges normal priority screen composition requests
50 EMainServerPriority=100,
51 ESpriteAnimatePriority=900, // Below normal heartbeat
52 EPointerCursorPriority=950,
53 EHeartBeatPriority=1000,
54 EKeyRepeatPriority=1980,
55 EPointerRepeatPriority=1980,// Same as for key repeats
57 EComposeCompletePriority=2500, // Triggers further composition if necessary
58 EWsShellLogonPriority=3000, // Log on to the shell dying
63 enum {ETidyCountSetting=8};
66 class DWsScreenDevice;
68 GLREF_C RWsRegion *GetRegionFromClientL(CWsClient *aClient, TInt aCount);
70 //---------------------------
72 //---------------------------
74 #define WS_EVENT_QUEUE_SIZE 50
78 class CWsRedrawMsgWindow;
79 class CWsWindowRedraw;
83 class CWsClientWindow;
84 class CWsTopClientWindow;
86 class CWsBackedUpWindow;
87 class CWsPointerCursor;
88 class TWindowServerEvent;
91 enum TFlashState {EFlashOn,EFlashOff};
93 struct TPointerKeyList
97 TBool iActivatedByPointerSwitchOn;
104 TUint8 iTheRest[4]; // Dummy elemnt where a variable length component will be
107 class WsKeyboardEmulator
110 static TBool PointerEvent(TPointerEvent::TType type,const TPoint &aPoint, TDblQue<TPointerKeyList> *iPointerKeyList);
112 static void RawKeyEvent(TRawEvent::TType aType);
113 private: // Private data
114 static TBool iKeyIsDown;
115 static TInt iCurrentKeyDown;
118 struct TPointerEventInternal
120 TPointerEvent::TType iType; // Type of pointer event
121 TUint iModifiers; // State of pointing device and associated buttons
122 TPoint iPosition; // Screen co-ordinates of mouse event
125 //------------------------------
127 //------------------------------
129 class CWsCliObj : public CWsObject
132 static CWsCliObj* NewL(CWsClient *aOwner);
134 CWsCliObj(CWsClient *aOwner);
136 public: //from CWsObject
137 void CommandL(TInt aOpcode, const TAny *aCmdData);
141 //---------------------------
143 //---------------------------
144 class CWsCaptureKey : public CWsObject
147 CWsCaptureKey(CWsWindowGroup *owner);
149 void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
150 void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
151 void CommandL(TInt aOpcode, const TAny *aCmdData);
152 inline CWsWindowGroup *WindowGroup();
153 inline const CWsWindowGroup *WindowGroup() const;
155 void CmdToRequest(const TWsWinCmdCaptureKey &aCaptureKey, TKeyCaptureRequest &aParams);
157 CWsWindowGroup *iWindowGroup;
160 class CWsHotKey : public CBase
163 CWsHotKey(TInt aHotKey, TBool aIsDefault);
165 void ConstructLD(const TWsWinCmdCaptureKey &aCaptureKey);
166 inline TInt HotKeyType() const;
167 inline TInt KeyHandle() const;
168 inline TBool IsDefault() const;
169 inline void SetLink(CWsHotKey *aLink);
170 void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
176 CWsCaptureKey *iCaptureKey;
179 class CWsCaptureKeyUpsAndDowns : public CWsObject
182 CWsCaptureKeyUpsAndDowns(CWsWindowGroup *owner);
183 ~CWsCaptureKeyUpsAndDowns();
184 void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
185 void CommandL(TInt aOpcode, const TAny *aCmdData);
186 inline CWsWindowGroup *WindowGroup();
187 inline const CWsWindowGroup *WindowGroup() const;
189 CWsWindowGroup *iWindowGroup;
192 class CWsCaptureLongKey : public CWsObject
194 friend class CKeyboardRepeat;
195 friend class TWindowServerEvent;
197 CWsCaptureLongKey(CWsWindowGroup *owner);
198 ~CWsCaptureLongKey();
199 void ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey);
200 void CommandL(TInt aOpcode, const TAny *aCmdData);
201 inline CWsWindowGroup *WindowGroup();
202 inline const CWsWindowGroup *WindowGroup() const;
204 TTimeIntervalMicroSeconds32 iDelay;
206 CWsWindowGroup *iWindowGroup;
209 //--------------------------------
210 // Owner of CWsGraphicDrawer
211 //--------------------------------
213 class CWsGraphicDrawerObject: public CWsObject
216 static CWsGraphicDrawerObject* NewL(CWsClient* aClient,const TWsClCmdUnion &aParams);
217 ~CWsGraphicDrawerObject();
219 void CommandL(TInt aOpcode, const TAny *aCmdData);
221 CWsGraphicDrawer* Drawer();
222 const CWsGraphicDrawer* Drawer() const;
223 inline TInt ClientHandle() const;
225 CWsGraphicDrawerObject(CWsClient* aOwner);
226 void ConstructL(TUid aType,MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,const TDesC8& aData,TInt aClientHandle);
228 static TInt TransientSequence;
229 static TBool RollOver;
230 CWsGraphicDrawer* iDrawer;
234 //----------------------------
236 //----------------------------
241 EWalkChildrenAndBehind
244 enum TWalkModeBackToFront
246 EVisitParentNodesFirst, //Useful for re-sending the entire window tree.
251 EFlagHidden=0x1, // True if the window is invisble for any reason
252 EFlagPointerCaptured=0x2,
253 EFlagPointerGrab=0x4,
254 EFlagInvisible=0x8, // True if the client has requested the window to be invisible
255 EFlagActive=0x10, // True if the window has been activated
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.
257 // EFlagHasGcDrawing=0x40, // True if a GC has drawn on a window.
258 EFlagDrawnToScreen=0x80, // True if the window has been drawn to the screen since it became visible
260 EFlagPointerCaptureDragDrop=0x200, // True if pointure capture in Drag/Drop mode
261 EFlagPointerCaptureAllGroups=0x400, // True if pointer capture affects all groups
262 EFlagUsingPointerBuffer=0x800, // True if using a pointer event buffer
263 EFlagHasPointerBuffer=0x1000, // True if has pointer event buffer allocated
265 EFlagFadeBehind=0x4000, // True if fade behind requested for this window
266 EFlagIsTopClientWindow=0x8000, // True if is a top level client window
267 EFlagNonFadingWindow=0x00010000, //True if the window should never be faded
268 EFlagScreenDeviceInvalid=0x00020000,
269 EFlagShutDownInProgress=0x00040000, // True if the window is currently being shut down
270 #ifdef SYMBIAN_GRAPHICS_WSERV_QT_EFFECTS
271 EFlagHasTransparentSurface=0x00080000,
272 EFlagPaintTransparentHoles=0x00100000,
277 EFlagGeneratesVisibilityEvents=0x02000000, // True if visibility events are enabled for this window
278 EFlagCanBeSeen=0x04000000, // True if the last visibility event indicated that part of the window was visible
279 // EFlagTransparencyAlphaChannel=0x08000000, // True if the window is transparent with an alpha channel (and no transparency mask)
280 EFlagNotCantBeSeen=0x10000000, // True if the last visibility event did not indicate that part of the window was not visible
281 // EFlagTransparencyPolicyFreezeUnder=0x20000000, // True if the transparent window enables freezing under policy
282 // EFlagChildClippedRegionValid=0x40000000, // True if the ChildClippedRegion is valid
283 EFlagHasAlpha= 0x80000000, // Equivalent to EFlagTransperencyAlphaChannel - new name to prevent confusion
290 class TWsDeltaTimerEntry
292 friend class CWsDeltaTimer;
294 inline TWsDeltaTimerEntry(TCallBack& aCallback);
295 inline TWsDeltaTimerEntry();
296 inline void Set(TCallBack& aCallback);
297 inline TBool IsPending();
302 class CWsDeltaTimer : public CActive
304 enum {CWsDeltaTimerGranularity=100000};
306 static CWsDeltaTimer* NewL(TInt aPriority);
307 void Queue(TTimeIntervalMicroSeconds32 aTimeInMicroSeconds,TWsDeltaTimerEntry& aHandle);
308 void Remove(TWsDeltaTimerEntry& anEntry);
312 CWsDeltaTimer(TInt aPriority);
317 TDeltaQue<TWsDeltaTimerEntry> iQueue;
320 //---------------------------
321 // Top level command class
322 //---------------------------
324 /** The main server class.
329 class CWindowServer : public CBase, public MWsGraphicDrawerEnvironment, public MWsMemoryRelease
332 static CWindowServer *NewL();
336 MWsAnimationScheduler* AnimationScheduler();
337 void PrepareShutdown();
338 TBool ReleaseMemory();
339 void DestroySessionsForShutdown();
340 void SetPinClientDescriptors(TBool aPin);
341 public: // from MWsGraphicDrawerEnvironment
342 const CWsGraphicDrawer* ResolveGraphic(const TGraphicDrawerId& aId) const;
343 void Invalidate(const TGraphicDrawerId& aId);
344 TInt ScreenCount() const;
345 MWsScreen* Screen(TInt aIndex);
346 const MWsScreen* Screen(TInt aIndex) const;
347 TBool SetCustomAnimationScheduler(MWsAnimationScheduler* aScheduler);
348 TBool HasCustomAnimationScheduler() const;
349 TBool ClearCustomAnimationScheduler(MWsAnimationScheduler* aCurrentScheduler);
350 TInt RegisterEventHandler(CWsGraphicDrawer* aDrawer, MWsEventHandler* aHandler, TUint32 aEventMask);
351 TInt UnregisterEventHandler(CWsGraphicDrawer* aDrawer);
352 TInt RegisterWsEventHandler(MWsEventHandler* aHandler, TUint32 aEventMask);
353 TInt UnregisterWsEventHandler(MWsEventHandler* aHandler);
354 void Log(TInt aPriority,const TDesC &aFmt,TInt aParam=0);
355 TInt RegisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
356 void UnregisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
359 // CWsGraphicDrawer master index
360 TInt AddGraphicDrawer(CWsGraphicDrawer* aDrawer);
361 TInt SwapGraphicDrawer(CWsGraphicDrawer* aDrawer);
362 TInt RemoveGraphicDrawer(const TGraphicDrawerId& aId);
363 TInt RemoveAllGraphicDrawers(const MWsClient& aOwner);
364 public: // from MWsMemoryRelease
365 TBool ReleaseMemory(TMemoryReleaseLevel aLevel);
369 TAny* ResolveObjectInterface(TUint aTypeId);
372 class CDefaultAnimationScheduler;
374 CDefaultAnimationScheduler* iDefaultAnimationScheduler;
375 MWsAnimationScheduler* iCustomAnimationScheduler;
376 RPointerArray<MWsMemoryRelease> iMemoryReleases;
377 /** An index to all the CWsGraphicDrawer objects.
379 All the CWsGraphicDrawer objects are created and owned by the CWsClient objects but they are
380 indexed centrally because some operations require access to the full list.
382 CWsGraphicDrawerArray iDrawerMasterIndex;
386 inline CWsWindowGroup *CWsCaptureKey::WindowGroup()
387 {return(iWindowGroup);}
388 inline const CWsWindowGroup *CWsCaptureKey::WindowGroup() const
389 {return(iWindowGroup);}
391 inline CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup()
392 {return(iWindowGroup);}
393 inline const CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup() const
394 {return(iWindowGroup);}
396 inline CWsWindowGroup *CWsCaptureLongKey::WindowGroup()
397 {return(iWindowGroup);}
398 inline const CWsWindowGroup *CWsCaptureLongKey::WindowGroup() const
399 {return(iWindowGroup);}
401 inline CWsPointerCursor *CWsClient::DefaultSystemPointerCursor()
402 {return(iDefaultSystemPointerCursor);}
404 inline TInt CWsHotKey::HotKeyType() const
405 {return(iHotKeyType);}
406 inline TInt CWsHotKey::KeyHandle() const
407 {return((TInt)iCaptureKey);}
408 inline TBool CWsHotKey::IsDefault() const
409 {return(iIsDefault);}
410 inline void CWsHotKey::SetLink(CWsHotKey *aLink)
413 inline TWsDeltaTimerEntry::TWsDeltaTimerEntry(TCallBack& aCallback)
414 {iCallBack=aCallback;}
415 inline TWsDeltaTimerEntry::TWsDeltaTimerEntry()
417 inline void TWsDeltaTimerEntry::Set(TCallBack& aCallback)
418 {iCallBack=aCallback;}
419 inline TBool TWsDeltaTimerEntry::IsPending()
420 {return(iLink.iNext!=NULL);}
422 inline TInt CWsGraphicDrawerObject::ClientHandle() const
423 {return iClientHandle;}