Update contrib.
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Window server C++ Class definitions
30 #include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
31 #include "Graphics/wsgraphicdrawerinternal.h"
32 #include "WSGRAPHICDRAWERARRAY.H"
36 class CWsDirectScreenAccess;
38 class CWsPluginManager;
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 EMainServerPriority=100,
50 ESpriteAnimatePriority=900, // Below normal heartbeat
51 EPointerCursorPriority=950,
52 EHeartBeatPriority=1000,
53 EKeyRepeatPriority=1990, // Just below normal events
54 EPointerRepeatPriority=1990,// Same as for key repeats
56 EWsShellLogonPriority=3000, // Log on to the shell dying
61 enum {ETidyCountSetting=8};
64 class DWsScreenDevice;
66 GLREF_C RWsRegion *GetRegionFromClientL(CWsClient *aClient, TInt aCount);
68 //---------------------------
70 //---------------------------
72 #define WS_EVENT_QUEUE_SIZE 50
76 class CWsRedrawMsgWindow;
77 class CWsWindowRedraw;
81 class CWsClientWindow;
83 class CWsBackedUpWindow;
84 class CWsPointerCursor;
85 class TWindowServerEvent;
88 enum TFlashState {EFlashOn,EFlashOff};
90 struct TPointerKeyList
94 TBool iActivatedByPointerSwitchOn;
101 TUint8 iTheRest[4]; // Dummy elemnt where a variable length component will be
104 class WsKeyboardEmulator
107 static TBool PointerEvent(TPointerEvent::TType type,const TPoint &aPoint, TDblQue<TPointerKeyList> *iPointerKeyList);
109 static void RawKeyEvent(TRawEvent::TType aType);
110 private: // Private data
111 static TBool iKeyIsDown;
112 static TInt iCurrentKeyDown;
115 struct TPointerEventInternal
117 TPointerEvent::TType iType; // Type of pointer event
118 TUint iModifiers; // State of pointing device and associated buttons
119 TPoint iPosition; // Screen co-ordinates of mouse event
122 //------------------------------
124 //------------------------------
126 class CWsCliObj : public CWsObject
129 static CWsCliObj* NewL(CWsClient *aOwner);
131 CWsCliObj(CWsClient *aOwner);
133 public: //from CWsObject
134 void CommandL(TInt aOpcode, const TAny *aCmdData);
138 //---------------------------
140 //---------------------------
141 class CWsCaptureKey : public CWsObject
144 CWsCaptureKey(CWsWindowGroup *owner);
146 void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
147 void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
148 void CommandL(TInt aOpcode, const TAny *aCmdData);
149 inline CWsWindowGroup *WindowGroup();
150 inline const CWsWindowGroup *WindowGroup() const;
152 void CmdToParams(const TWsWinCmdCaptureKey &aCaptureKey, TCaptureKey &aParams);
154 CWsWindowGroup *iWindowGroup;
157 class CWsHotKey : public CBase
160 CWsHotKey(TInt aHotKey, TBool aIsDefault);
162 void ConstructLD(const TWsWinCmdCaptureKey &aCaptureKey);
163 inline TInt HotKeyType() const;
164 inline TInt KeyHandle() const;
165 inline TBool IsDefault() const;
166 inline void SetLink(CWsHotKey *aLink);
167 void SetL(const TWsWinCmdCaptureKey &aCaptureKey);
173 CWsCaptureKey *iCaptureKey;
176 class CWsCaptureKeyUpsAndDowns : public CWsObject
179 CWsCaptureKeyUpsAndDowns(CWsWindowGroup *owner);
180 ~CWsCaptureKeyUpsAndDowns();
181 void ConstructL(const TWsWinCmdCaptureKey &aCaptureKey);
182 void CommandL(TInt aOpcode, const TAny *aCmdData);
183 static CWsWindowGroup *CheckForCapture(TUint aScanCode, TUint aModifiers);
184 inline CWsWindowGroup *WindowGroup();
185 inline const CWsWindowGroup *WindowGroup() const;
187 TUint iModifierValue;
190 static TPriQue<CWsCaptureKeyUpsAndDowns> iCaptureKeysUpsAndDowns;
192 CWsWindowGroup *iWindowGroup;
195 class CWsCaptureLongKey : public CWsObject
197 friend class CKeyboardRepeat;
199 CWsCaptureLongKey(CWsWindowGroup *owner);
200 ~CWsCaptureLongKey();
201 void ConstructL(const TWsWinCmdCaptureLongKey &aCaptureKey);
202 void CommandL(TInt aOpcode, const TAny *aCmdData);
203 inline CWsWindowGroup *WindowGroup();
204 inline const CWsWindowGroup *WindowGroup() const;
205 static CWsCaptureLongKey* CheckForCapture(TUint aKeyCode, TInt aModifiers);
207 static TPriQue<CWsCaptureLongKey> iCaptureLongKeys;
210 CWsWindowGroup *iWindowGroup;
211 TWsWinCmdCaptureLongKey iData;
214 //--------------------------------
215 // Owner of CWsGraphicDrawer
216 //--------------------------------
218 class CWsGraphicDrawerObject: public CWsObject
221 static CWsGraphicDrawerObject* NewL(CWsClient* aClient,const TWsClCmdUnion &aParams);
222 ~CWsGraphicDrawerObject();
224 void CommandL(TInt aOpcode, const TAny *aCmdData);
226 CWsGraphicDrawer* Drawer();
227 const CWsGraphicDrawer* Drawer() const;
228 inline TInt ClientHandle() const;
230 CWsGraphicDrawerObject(CWsClient* aOwner);
231 void ConstructL(TUid aType,MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,const TDesC8& aData,TInt aClientHandle);
233 static TInt TransientSequence;
234 static TBool RollOver;
235 CWsGraphicDrawer* iDrawer;
239 //----------------------------
241 //----------------------------
247 EWalkChildrenAndBehind
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
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
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
275 EFlagGeneratesVisibilityEvents=0x02000000, // True if visibility events are enabled for this window
276 EFlagCanBeSeen=0x04000000, // True if the last visibility event indicated that part of the window was visible
277 // EFlagTransparencyAlphaChannel=0x08000000, // True if the window is transparent with an alpha channel (and no transparency mask)
278 EFlagNotCantBeSeen=0x10000000, // True if the last visibility event did not indicate that part of the window was not visible
279 // EFlagTransparencyPolicyFreezeUnder=0x20000000, // True if the transparent window enables freezing under policy
280 // EFlagChildClippedRegionValid=0x40000000, // True if the ChildClippedRegion is valid
281 EFlagHasAlpha= 0x80000000, // Equivalent to EFlagTransperencyAlphaChannel - new name to prevent confusion
288 class TWsDeltaTimerEntry
290 friend class CWsDeltaTimer;
292 inline TWsDeltaTimerEntry(TCallBack& aCallback);
293 inline TWsDeltaTimerEntry();
294 inline void Set(TCallBack& aCallback);
295 inline TBool IsPending();
300 class CWsDeltaTimer : public CActive
302 enum {CWsDeltaTimerGranularity=100000};
304 static CWsDeltaTimer* NewL(TInt aPriority);
305 void Queue(TTimeIntervalMicroSeconds32 aTimeInMicroSeconds,TWsDeltaTimerEntry& aHandle);
306 void Remove(TWsDeltaTimerEntry& anEntry);
310 CWsDeltaTimer(TInt aPriority);
315 TDeltaQue<TWsDeltaTimerEntry> iQueue;
318 //---------------------------
319 // Top level command class
320 //---------------------------
322 /** The main server class.
327 class CWindowServer : public CPolicyServer, public MWsGraphicDrawerEnvironment, public MWsMemoryRelease, public MWsRawEventServer
330 static CWindowServer *NewL();
333 MWsAnimationScheduler* AnimationScheduler();
334 CWsPluginManager * PluginManager();
335 TBool ReleaseMemory();
336 public: // from MWsGraphicDrawerEnvironment
337 const CWsGraphicDrawer* ResolveGraphic(const TGraphicDrawerId& aId) const;
338 void Invalidate(const TGraphicDrawerId& aId);
339 TInt ScreenCount() const;
340 MWsScreen* Screen(TInt aIndex);
341 const MWsScreen* Screen(TInt aIndex) const;
342 TBool SetCustomAnimationScheduler(MWsAnimationScheduler* aScheduler);
343 TBool HasCustomAnimationScheduler() const;
344 TBool ClearCustomAnimationScheduler(MWsAnimationScheduler* aCurrentScheduler);
345 TInt RegisterEventHandler(CWsGraphicDrawer* aDrawer, MWsEventHandler* aHandler, TUint32 aEventMask);
346 TInt UnregisterEventHandler(CWsGraphicDrawer* aDrawer);
347 TInt RegisterWsEventHandler(MWsEventHandler* aHandler, TUint32 aEventMask);
348 TInt UnregisterWsEventHandler(MWsEventHandler* aHandler);
349 void Log(TInt aPriority,const TDesC &aFmt,TInt aParam=0);
350 TInt RegisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
351 void UnregisterMemoryRelease(MWsMemoryRelease * aMemoryRelease);
353 public: // from MWsRawEventServer
354 TInt RegisterRawEventHandler(MEventHandler * aHandler);
355 void UnregisterRawEventHandler(MEventHandler * aHandler);
356 void PostRawEvent(const TRawEvent & aEvent);
357 void PostKeyEvent(const TKeyEvent & aEvent);
360 // CWsGraphicDrawer master index
361 TInt AddGraphicDrawer(CWsGraphicDrawer* aDrawer);
362 TInt SwapGraphicDrawer(CWsGraphicDrawer* aDrawer);
363 TInt RemoveGraphicDrawer(const TGraphicDrawerId& aId);
364 TInt RemoveAllGraphicDrawers(const MWsClient& aOwner);
365 public: // from MWsMemoryRelease
366 TBool ReleaseMemory(TMemoryReleaseLevel aLevel);
370 TAny* ResolveObjectInterface(TUint aTypeId);
371 private: // from CServer2
372 CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
374 class CDefaultAnimationScheduler;
375 CDefaultAnimationScheduler* iDefaultAnimationScheduler;
376 CWsPluginManager* iPluginManager;
377 RPointerArray<MWsMemoryRelease> iMemoryReleases;
378 /** An index to all the CWsGraphicDrawer objects.
380 All the CWsGraphicDrawer objects are created and owned by the CWsClient objects but they are
381 indexed centrally because some operations require access to the full list.
383 CWsGraphicDrawerArray iDrawerMasterIndex;
387 inline CWsWindowGroup *CWsCaptureKey::WindowGroup()
388 {return(iWindowGroup);}
389 inline const CWsWindowGroup *CWsCaptureKey::WindowGroup() const
390 {return(iWindowGroup);}
392 inline CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup()
393 {return(iWindowGroup);}
394 inline const CWsWindowGroup *CWsCaptureKeyUpsAndDowns::WindowGroup() const
395 {return(iWindowGroup);}
397 inline CWsWindowGroup *CWsCaptureLongKey::WindowGroup()
398 {return(iWindowGroup);}
399 inline const CWsWindowGroup *CWsCaptureLongKey::WindowGroup() const
400 {return(iWindowGroup);}
402 inline CWsPointerCursor *CWsClient::DefaultSystemPointerCursor()
403 {return(iDefaultSystemPointerCursor);}
405 inline TInt CWsHotKey::HotKeyType() const
406 {return(iHotKeyType);}
407 inline TInt CWsHotKey::KeyHandle() const
408 {return((TInt)iCaptureKey);}
409 inline TBool CWsHotKey::IsDefault() const
410 {return(iIsDefault);}
411 inline void CWsHotKey::SetLink(CWsHotKey *aLink)
414 inline TWsDeltaTimerEntry::TWsDeltaTimerEntry(TCallBack& aCallback)
415 {iCallBack=aCallback;}
416 inline TWsDeltaTimerEntry::TWsDeltaTimerEntry()
418 inline void TWsDeltaTimerEntry::Set(TCallBack& aCallback)
419 {iCallBack=aCallback;}
420 inline TBool TWsDeltaTimerEntry::IsPending()
421 {return(iLink.iNext!=NULL);}
423 inline TInt CWsGraphicDrawerObject::ClientHandle() const
424 {return iClientHandle;}