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 // Definition of classes related event queues
18 #if !defined(__EVQUEUE_H__)
24 #include <graphics/wsgraphicdrawerinterface.h>
27 class CWsWindowRedraw;
28 class CWsGraphicDrawer;
30 enum TEventQueueWalkRet
33 EEventQueueWalkDeleteEvent,
34 EEventQueueWalkRestart,
38 typedef TEventQueueWalkRet (*EventQueueWalk)(TAny *aPtr, TWsEvent *aEvent);
40 enum TWservEventPriorities
48 CWsWindowRedraw *iRedraw;
52 class CEventBase : public CBase
55 enum TEventSignalledState
57 EEventFlagSignalled=0x1,
58 EEventFlagCancelled=0x2
61 CEventBase(CWsClient *aOwner);
64 void EventReadyCheck();
65 virtual void EventReady(const RMessagePtr2& aEventMsg);
66 void GetData(TAny *aData, TInt aLen);
68 void SignalEvent(TInt aCode = KErrNone);
69 inline TBool IsEventCancelled();
71 TInt iEventSignalledState;
73 RMessagePtr2 iEventMsg;
76 class CEventQueue : public CEventBase
79 enum {EExtraQueueSize=16};
80 enum {EMaxQueueSize=32};
81 enum {EMinQueueSize=2};
82 enum {EQueueGranularity=4};
85 ECompressNoPurge, // Compress only free space
86 ECompressPurge1, // Purge from only non-foreground queues
87 ECompressPurge2, // Purge from all queues
91 CEventQueue(CWsClient *aOwner);
94 TBool QueueEvent(const TWsEvent &event);
95 TBool QueueEvent(const TWsEvent &event, TWservEventPriorities aPriority);
96 TBool QueueEvent(TUint32 aTarget, TInt aEvent);
99 void UpdateLastEvent(const TWsEvent &event);
100 void RemoveEvent(TInt index);
101 void PurgePointerEvents();
102 const TWsEvent *PeekLastEvent();
103 void WalkEventQueue(EventQueueWalk aFunc, TAny *aFuncParam);
106 static void Signal();
107 static void InitStaticsL();
108 static void DeleteStaticsL();
109 //void LogUpDownEvents(TChar aChar);
110 public:// from CEventBase
111 void EventReady(const RMessagePtr2& aEventMsg);
113 static void EventCopy(TWsEvent *aStart, TWsEvent *aEnd, TInt aNumEvents);
114 static TInt RequiredQueueSize(TInt aNumConnections);
115 void AdjustQueueSizeL(TInt aNewSize);
116 void IncreaseQueueSize(TInt aNumSpaces);
117 TInt FollowingGap() const;
119 TInt PurgeInactiveEvents(const TInt& aSizeRequired);
120 void Compress(TCompressMode aCompressMode);
123 TBool Expand(TWservEventPriorities aPriority);
124 TBool doExpand(TCompressMode aCompressMode);
127 void MoveUp(TInt aMove);
128 void MoveDown(TInt aMove);
129 TBool MoveDownAndExpand(TDblQueIter<CEventQueue> &aIter, TInt aExpand);
132 void ZapEvent(TWsEvent *aTarget);
133 void ZapEvents(TWsEvent *aTarget, TInt aLen);
137 TWsEvent *EventPtr(TInt index);
144 static RMutex iMutex;
145 static TWsEvent iNullEvent;
146 static TDblQue<CEventQueue> iQueueList;
147 static TWsEvent *iGlobalEventQueue;
148 static TInt iGlobalEventQueueSize;
149 static TInt iNumConnections;
152 class TWsRedrawEvent;
154 class CRedrawQueue : public CEventBase
158 CRedrawQueue(CWsClient *aOwner);
161 TBool TriggerRedraw();
163 void AddInvalid(CWsWindowRedraw *redrawWin);
164 void RemoveInvalid(CWsWindowRedraw *redrawWin);
166 TUint RedrawPriority(CWsWindowRedraw *aRedrawWin);
167 public:// from CEventBase
168 void EventReady(const RMessagePtr2& aEventMsg);
170 void DeleteFromQueue(TInt aIndex);
172 TBool FindOutstandingRedrawEvent(CWsWindowRedraw& aRedraw, TWsRedrawEvent& aEvent);
173 TBool FindWindowNeedingRedrawEvent(TWsRedrawEvent& aEvent);
176 CArrayFixSeg<TRedraw> *iRedraws; // List of windows and their areas that require redraws
178 TBool iRedrawTrigger;
179 TKeyArrayFix *iKeyPriority;
180 TKeyArrayFix *iKeyWindow;
181 static TWsRedrawEvent iNullRedrawEvent;
184 class CWsGraphicMessageQueue: public CEventBase
187 class CMessage: public CWsMessageData
190 static CMessage* New(const TDesC8& aData);
192 public: // From CWsMessageData
196 CMessage(const TDesC8& aData);
201 CWsGraphicMessageQueue(CWsClient *aOwner);
202 ~CWsGraphicMessageQueue();
203 void GetGraphicMessage();
204 void AbortMessage(TInt aError);
205 void EventReady(const RMessagePtr2& aEventMsg);
206 void Queue(CWsMessageData* aMessage);
207 TInt TopClientHandle() const;
209 CWsMessageData* iHead;
210 CWsMessageData* iTail;
211 CWsMessageData* Pop();
212 void GetDataWithHeader(TUint aHeader, const TDesC8& aData, TInt aDataLen);