Update contrib.
1 // Copyright (c) 1995-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 // Group window sub-class of CWsWindow
23 #include "windowgroup.h"
24 #include "walkwindowtree.h"
31 GLREF_D TPtr nullDescriptor;
32 GLREF_D CDebugLogBase* wsDebugLog;
35 TInt CWsWindowGroup::iSkipCount=0;
38 TInt CWsWindowGroup::iIdentifierCount=1;
39 TBool CWsWindowGroup::iFocusGainPreProcess=EFalse; //'REMOVEFADINGONFOCUSGAIN' flag in INI file
40 RPointerArray< TDblQue<CWsWindowGroup> > CWsWindowGroup::iChains(3);
41 static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_SwEvent,ECapabilitySwEvent);
42 static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_WriteDeviceData,ECapabilityWriteDeviceData);
43 const TInt KArrayMaxGranularity=0x10000000;
45 CWsWindowGroup* CWsWindowGroup::NewL(CWsClient* aOwner, CScreen* aScreen,
46 const TWsClCmdCreateWindowGroup& aCmd)
48 CWsWindowGroup* self = new(ELeave) CWsWindowGroup(aOwner, aScreen);
49 CleanupStack::PushL(self);
50 self->ConstructL(aCmd);
51 CleanupStack::Pop(self);
55 CWsWindowGroup::CWsWindowGroup(CWsClient* aOwner, CScreen* aScreen) : CWsWindowBase(aOwner,WS_HANDLE_GROUP_WINDOW,aScreen)
57 __DECLARE_NAME(_S("CWsWindowGroup"));
58 iWinType=EWinTypeGroup;
61 void CWsWindowGroup::PurgeCapturedKeys()
63 CWsObjectIx& objix=*WsOwner()->ObjectIndex();
64 const TWsObject* ptr=objix.FirstObject();
65 const TWsObject* end=ptr+objix.Length();
66 while(++ptr<end) //Fisrt one should always have a NULL object
68 const CWsObject* obj=ptr->iObject;
70 && ((obj->Type()==WS_HANDLE_CAPTURE_KEY && STATIC_CAST(const CWsCaptureKey*,obj)->WindowGroup()==this)
71 || (obj->Type()==WS_HANDLE_CAPTURE_KEY_UPDOWNS && STATIC_CAST(const CWsCaptureKeyUpsAndDowns*,obj)->WindowGroup()==this)
72 || (obj->Type()==WS_HANDLE_CAPTURE_LONG_KEY && STATIC_CAST(const CWsCaptureLongKey*,obj)->WindowGroup()==this)))
79 CKeyboardRepeat::CancelRepeat(this);
82 void CWsWindowGroup::SwitchToOwningWindow(CWsWindowGroup *aClosingWindow)
84 if (this==CWsTop::FocusWindowGroup())
86 CWsWindowGroup *winGroup=NULL;
88 // First try for an 'owning' window
90 if (iOwningWindowGroup)
92 for(winGroup=RootWindow()->Child();winGroup;winGroup=winGroup->NextSibling())
93 if (winGroup->Identifier()==iOwningWindowGroup && winGroup->iOrdinalPriority==iOrdinalPriority)
97 // If that failed look for the frontmost window belonging to the owner of dying window
99 for(winGroup=RootWindow()->Child();winGroup;winGroup=winGroup->NextSibling())
100 if (winGroup!=this && winGroup->WsOwner()==WsOwner() && winGroup->iOrdinalPriority==iOrdinalPriority)
103 // Next try for the nominated default owning window group
105 winGroup=iScreen->DefaultOwningWindowGroup();
106 if (winGroup && winGroup->iOrdinalPriority==iOrdinalPriority)
108 gotIt: winGroup->SetOrdinalPosition(0,this);
112 ResetFocus(aClosingWindow);
115 CWsWindowGroup::~CWsWindowGroup()
120 _LIT(KWSERVDebugLogGroupWindowId,"Destroying: RWindowGroup[0x%x,%d],Id=%d");
121 buf.Format(KWSERVDebugLogGroupWindowId,iClientHandle,LogHandle(),iIdentifier);
122 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything, buf);
124 if (CClick::IsHandler())
126 CClick::OtherEvent(EEventGroupWindowClose,reinterpret_cast<TAny*>(iIdentifier));
130 if (iQueue->Last()!=this)
131 { //Unlink all the children of the window that is being deleted
132 TDblQueIter<CWsWindowGroup> iter(*iQueue);
133 CWsWindowGroup* groupWin;
135 while ((groupWin=iter--)!=this)
137 WS_ASSERT_DEBUG(groupWin!=NULL && groupWin->iQueue==iQueue,EWsPanicGroupWindowChainError);
138 groupWin->iChainLink.Deque();
139 groupWin->iQueue=NULL;
142 WS_ASSERT_DEBUG(iQueue->Last()==this,EWsPanicGroupWindowChainError);
143 TDblQueLinkBase* parentLink=iChainLink.iPrev;
145 if (parentLink->iNext==parentLink->iPrev) //Check to see chain no longer required
147 if (!iQueue->IsEmpty())
148 { //Only the parent is left in queue
149 CWsWindowGroup* parent=iQueue->First();
150 static_cast<TDblQueLink*>(parentLink)->Deque();
151 WS_ASSERT_DEBUG(parent->iQueue==iQueue,EWsPanicGroupWindowChainError);
158 RemoveAllPriorityKeys();
161 SetPointerCursor(NULL);
162 for(CWsClientWindow *win=Child();win;win=win->NextSibling())
166 iScreen->RemoveFromDefaultOwningList(this);
168 CWsWindowBase::Shutdown();
169 TWindowServerEvent::SendGroupChangedEvents();
170 iClientHandle=0; // To block focus lost events being sent
171 // Decide which window to give focus to if WServ isn't shutting down
172 if (iScreen && !CWsTop::ShuttingDown())
173 SwitchToOwningWindow(this);
175 delete iMessageArray;
178 void CWsWindowGroup::DeleteQueue(TDblQue<CWsWindowGroup>* aQueue)
180 iChains.Remove(iChains.Find(aQueue));
182 if (iChains.Count()==0)
188 void CWsWindowGroup::AdvanceIdentifierCount()
190 if (++iIdentifierCount>EMaxIdentifierCount)
191 iIdentifierCount=1; // so limit it to low value
194 void CWsWindowGroup::ConstructL(const TWsClCmdCreateWindowGroup &aCmd)
197 if (IsClientHandleInUse(aCmd.clientHandle))
199 OwnerPanic(EWservPanicDuplicateHandle);
203 iFlags=EGroupFlagAutoForeground|EGroupFlagMsgQueueNew;
206 iFlags|=EGroupFlagReceivesFocus;
208 iTextCursor.ConstructL(this);
209 iClientHandle=aCmd.clientHandle;
211 if(aCmd.screenDeviceHandle <= 0)
213 //Use primary screen. Client should make sure PrimaryScreenDevice is correct set up immediately after establishing session.
214 iScreenDevice=iWsOwner->PrimaryScreenDevice();
218 //Use the specified screen
219 iScreenDevice=STATIC_CAST(DWsScreenDevice*,iWsOwner->HandleToObj(aCmd.screenDeviceHandle,WS_HANDLE_SCREEN_DEVICE));
222 iScreen = (iScreenDevice) ? iScreenDevice->Screen() : CWsTop::Screen(); //if no screen device use screen 0
224 CWsWindowGroup* parent=NULL;
227 parent=CWsWindowGroup::WindowGroupFromIdentifier(aCmd.parentId);
230 OwnerPanic(EWservPanicWindow);
233 if(parent->Screen() != iScreen)
235 OwnerPanic(EWservPanicWrongScreen);
238 if (parent->iOrdinalPriorityAdjust>0)
240 WS_ASSERT_DEBUG(parent->iQueue==NULL,EWsPanicGroupWindowChainError);
241 parent->iOrdinalPriorityAdjust=0;
242 parent->UpdateOrdinalPriority(ETrue);
244 iOrdinalPriorityBase=parent->iOrdinalPriorityBase;
245 iOrdinalPriority=iOrdinalPriorityBase;
248 CWsWindowBase::ConstructL(RootWindow());
252 TDblQue<CWsWindowGroup>* queue=parent->iQueue;
253 if (queue && queue->Last()!=parent)
254 User::Leave(KErrInUse);
255 if (parent->iWsOwner!=iWsOwner)
257 _LIT_SECURITY_POLICY_S0(securityPolicy,parent->iChildSID);
258 if (!securityPolicy().CheckPolicy(iWsOwner->ClientMessage()))
259 User::Leave(KErrPermissionDenied);
263 queue=new(ELeave) TDblQue<CWsWindowGroup>(_FOFF(CWsWindowGroup,iChainLink));
264 CleanupStack::PushL(queue);
265 User::LeaveIfError(iChains.Append(queue));
266 CleanupStack::Pop(queue);
267 queue->AddFirst(*parent);
268 parent->iQueue=queue;
270 iQueue=queue; //Shouldn't set the queue until after it can leave
271 iChainLink.Enque(&parent->iChainLink);
275 AdvanceIdentifierCount(); // Always advance by at least one to stop re-using last id
276 } while (WindowGroupFromIdentifier(iIdentifierCount)); // If current count is in use try again
278 iIdentifier=iIdentifierCount;
279 iMessageArray=new(ELeave) CArrayVarSeg<TWsMessage>(1);
280 if (CClick::IsHandler())
282 TGroupWindowOpenData params;
283 params.iIdentifier=iIdentifier;
284 params.iClient=iWsOwner->ConnectionHandle();
285 params.iNumClientWindowGroups=NumClientWindowGroups()-1; //Don't include this one
286 CClick::OtherEvent(EEventGroupWindowOpen,¶ms);
291 _LIT(KWSERVDebugLogGroupWindowId,"Creating: RWindowGroup[0x%x,%d],Id=%d");
292 buf.Format(KWSERVDebugLogGroupWindowId,iClientHandle,LogHandle(),iIdentifier);
293 wsDebugLog->MiscMessage(CDebugLogBase::ELogEverything, buf);
297 void CWsWindowGroup::UpdateOrdinalPriority(TBool aDoAdjust)
300 newPri=iOrdinalPriorityBase;
301 if (iWsOwner==CWsTop::FocusWindowGroupOwner())
302 newPri+=iOrdinalPriorityAdjust;
303 CheckCapability(newPri);
304 if (newPri!=iOrdinalPriority)
306 iOrdinalPriority=newPri;
308 SetOrdinalPosition(0);
312 void CWsWindowGroup::SetOrdinalPriority(TInt aPos,TInt aPriority)
316 iOrdinalPriorityBase=aPriority;
317 UpdateOrdinalPriority(EFalse);
321 TDblQueIter<CWsWindowGroup> iter(*iQueue);
322 CWsWindowGroup* group;
323 while ((group=iter++)!=NULL)
325 group->iOrdinalPriorityBase=aPriority;
326 group->iOrdinalPriority=aPriority;
329 SetOrdinalPosition(aPos);
332 void CWsWindowGroup::CommandL(TInt aOpcode, const TAny *aCmdData)
335 // Save root window for performing CheckTree at the end of this func.
336 // When aOpcode is EWsWinOpFree, this object would've been destroyed
337 // and a call to RootWindow() in that case would be impossible
338 CWsRootWindow* rootWindow=RootWindow();
340 // For certain opcodes, check for the 'screen device deleted' condition. If it
341 // has occured for the screen device associated with this group window then
342 // those op-codes are not valid, and the client is panicked.
345 case EWsWinOpEnableScreenChangeEvents:
346 case EWsWinOpAllowChildWindowGroup:
347 case EWsWinOpReceiveFocus:
348 case EWsWinOpAutoForeground:
349 case EWsWinOpSetOrdinalPositionPri:
350 case EWsWinOpSetOrdinalPriorityAdjust:
351 case EWsWinOpCaptureKey:
352 case EWsWinOpCaptureKeyUpsAndDowns:
353 case EWsWinOpCaptureLongKey:
354 case EWsWinOpAddPriorityKey:
355 case EWsWinOpSetTextCursor:
356 case EWsWinOpSetTextCursorClipped:
357 case EWsWinOpSetOwningWindowGroup:
358 case EWsWinOpDefaultOwningWindow:
359 case EWsWinOpSetName:
360 case EWsWinOpDisableKeyClick:
361 case EWsWinOpSendPointerEvent:
363 if (ScreenDeviceDeleted())
364 OwnerPanic(EWservPanicGroupWinScreenDeviceDeleted);
370 TWsWinCmdUnion pData;
372 if (CWsWindowBase::CommandL(aOpcode,pData)==EFalse)
376 case EWsWinOpAllowChildWindowGroup:
377 iChildSID=*pData.UInt;
379 case EWsWinOpEnableScreenChangeEvents:
380 SetScreenChangeEventStateL(ETrue);
382 case EWsWinOpDisableScreenChangeEvents:
383 SetScreenChangeEventStateL(EFalse);
385 case EWsWinOpReceiveFocus:
386 iFlags&=~EGroupFlagReceivesFocus;
388 iFlags|=EGroupFlagReceivesFocus;
389 iScreen->ResetFocus(NULL);
391 case EWsWinOpAutoForeground:
392 iFlags&=~EGroupFlagAutoForeground;
394 iFlags|=EGroupFlagAutoForeground;
396 case EWsWinOpSetOrdinalPositionPri:
397 case EWsWinOpSetOrdinalPositionErr:
399 TInt priority=pData.OrdinalPos->ordinalPriority;
400 TBool hascap = CheckCapability(priority);
401 SetOrdinalPriority(pData.OrdinalPos->pos, priority);
402 if (aOpcode == EWsWinOpSetOrdinalPositionErr)
404 SetReply(hascap?KErrNone:KErrPermissionDenied);
408 case EWsWinOpSetOrdinalPriorityAdjust:
411 iOrdinalPriorityAdjust=*pData.Int;
412 UpdateOrdinalPriority(ETrue);
415 case EWsWinOpCaptureKey:
417 if(!KSecurityPolicy_SwEvent().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWindowGroup::CaptureKey API")))
419 User::Leave(KErrPermissionDenied);
421 CWsCaptureKey *cKey=new(ELeave) CWsCaptureKey(this);
422 CleanupStack::PushL(cKey);
423 cKey->ConstructL(*pData.CaptureKey);
427 case EWsWinOpCaptureKeyUpsAndDowns:
429 if(!KSecurityPolicy_SwEvent().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWindowGroup::CaptureKeyUpsAndDowns API")))
431 User::Leave(KErrPermissionDenied);
433 CWsCaptureKeyUpsAndDowns *cKey=new(ELeave) CWsCaptureKeyUpsAndDowns(this);
434 CleanupStack::PushL(cKey);
435 cKey->ConstructL(*pData.CaptureKey);
439 case EWsWinOpCaptureLongKey:
441 if(!KSecurityPolicy_SwEvent().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWindowGroup::CaptureLongKey API")))
443 User::Leave(KErrPermissionDenied);
445 CWsCaptureLongKey *cKey=new(ELeave) CWsCaptureLongKey(this);
446 CleanupStack::PushL(cKey);
447 cKey->ConstructL(*pData.CaptureLongKey);
451 case EWsWinOpCancelCaptureKey:
452 if (*pData.UInt!=0) // Ignore null handle
454 CWsObject *destroyObj = iWsOwner->HandleToObj(*pData.UInt,WS_HANDLE_CAPTURE_KEY);
457 //Cancel any repeat that is underway for this key
458 const TWsWinCmdCaptureKey& capKey(*pData.CaptureKey);
459 CKeyboardRepeat::CancelRepeat(this,capKey.key,EFalse,capKey.modifierMask);
465 // Attempt to cancel key capture with an incorrect handle
466 OwnerPanic(EWservPanicDestroy);
471 case EWsWinOpCancelCaptureKeyUpsAndDowns:
472 if (*pData.UInt!=0) // Ignore null handle
474 CWsObject *destroyObj = iWsOwner->HandleToObj(*pData.UInt,WS_HANDLE_CAPTURE_KEY_UPDOWNS);
477 //Cancel any repeat that is underway for this key
478 const TWsWinCmdCaptureKey& capKey(*pData.CaptureKey);
479 CKeyboardRepeat::CancelRepeat(this,capKey.key,EFalse,capKey.modifierMask);
485 // Attempt to cancel ups and downs key capture with an incorrect handle
486 OwnerPanic(EWservPanicDestroy);
491 case EWsWinOpCancelCaptureLongKey:
492 if (*pData.UInt!=0) // Ignore null handle
494 CWsObject *destroyObj = iWsOwner->HandleToObj(*pData.UInt,WS_HANDLE_CAPTURE_LONG_KEY);
497 //Cancel any repeat that is underway for this key
498 const TWsWinCmdCaptureLongKey& capKey(*pData.CaptureLongKey);
499 CKeyboardRepeat::CancelRepeat(this,capKey.inputKey,ETrue,capKey.modifierMask);
505 // Attempt to cancel long key capture with an incorrect handle
506 OwnerPanic(EWservPanicDestroy);
511 case EWsWinOpAddPriorityKey:
512 AddPriorityKeyL(pData.PriorityKey->keycode, pData.PriorityKey->modifierMask, pData.PriorityKey->modifiers);
514 case EWsWinOpRemovePriorityKey:
515 RemovePriorityKey(pData.PriorityKey->keycode, pData.PriorityKey->modifierMask, pData.PriorityKey->modifiers);
517 case EWsWinOpSetTextCursor:
518 iTextCursor.SetL(*pData.SetTextCursor, EFalse);
520 case EWsWinOpSetTextCursorClipped:
521 iTextCursor.SetL(*pData.SetTextCursor, ETrue);
523 case EWsWinOpCancelTextCursor:
524 iTextCursor.Cancel();
526 case EWsWinOpSetOwningWindowGroup:
527 iOwningWindowGroup=*pData.Int;
529 case EWsWinOpDefaultOwningWindow:
531 if(KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for RWindowGroup::DefaultOwningWindow API")))
533 iScreen->SetDefaultOwningWindow(this);
538 iWsOwner->ReplyGroupName(iGroupName,*pData.Int);
540 case EWsWinOpSetName:
543 const TInt size=*pData.Int;
546 newName=HBufC::NewLC(size);
547 TPtr ptr(newName->Des());
548 iWsOwner->RemoteReadL(ptr,0);
549 CleanupStack::Pop(newName);
551 //Window Group Name is unchanged
552 if (iGroupName && newName && *iGroupName == *newName)
556 else //Window Group Name is changed
560 TWindowServerEvent::SendGroupChangedEvents();
564 case EWsWinOpIdentifier:
565 SetReply(Identifier());
567 case EWsWinOpDisableKeyClick:
569 iFlags|=EGroupFlagDisableKeyClick;
571 iFlags&=~EGroupFlagDisableKeyClick;
572 if (this==CWsTop::FocusWindowGroup())
573 UpdateKeyClickState();
575 case EWsWinOpSendPointerEvent:
576 if (!TWindowServerEvent::MousePress(*pData.RawEvent,this))
577 OwnerPanic(EWservPanicEventType);
579 case EWsWinOpClearChildGroup:
582 TBool fBefore=EFalse;
584 // If there is nothing to clear, return KErrArgument
585 if(iQueue->Last()==this)
587 SetReply(KErrArgument);
590 // fBefore is True if there is AT LEAST one window group queued before the current one
591 else if(iQueue->First()!=this)
595 // fAfter is True if there is MORE THAN one window group queued after the current one
596 TDblQueIter<CWsWindowGroup> iter(*iQueue);
598 if(iter--!=this && iter!=this)
602 TDblQue<CWsWindowGroup>* queue=NULL;
603 // if fBefore and fAfter are True, create a new queue and copy all window groups after the current one into that queue
604 if(fBefore && fAfter)
606 TInt ret=KErrNoMemory;
607 queue=new TDblQue<CWsWindowGroup>(_FOFF(CWsWindowGroup,iChainLink));
610 ret=iChains.Append(queue);
617 // Check that the queue creation and appending worked (we deque all the child groups even if it didn't)
623 // If we've got zero or one window groups after, don't need to queue them
624 if(!fAfter || fBefore)
627 CWsWindowGroup* groupWin;
628 while((groupWin=iter--)!=this)
630 groupWin->iChainLink.Deque();
631 groupWin->iQueue=queue;
633 queue->AddFirst(*groupWin);
636 // if we've got no window groups before, don't need to have a queue for this anymore
647 else // if this window group isn't queued, we can't clear any children
649 SetReply(KErrArgument);
652 case EWsWinOpSetChildGroup:
654 CWsWindowGroup* childWinGroup = CWsWindowGroup::WindowGroupFromIdentifier(*pData.Int);
655 if(!childWinGroup //(no child to append)
656 || (iQueue && (!iQueue->IsLast(this) || (childWinGroup->iQueue==iQueue))) //(GpWin has a child) || (GpWin and childGpWin in the same queue)
657 || (childWinGroup->iQueue && !childWinGroup->iQueue->IsFirst(childWinGroup)) //(childGpWin has a parent)
658 || (childWinGroup == this)) //(childGpWin == GpWin)
660 SetReply(KErrArgument);
664 // If we have a chain, we're prepending ourselves to the child window group
665 // So we take the childs chain and prepend each of the window groups in our own chain
666 // beginning with the current window group and working backward
668 TDblQueIter<CWsWindowGroup> iter(*iQueue);
670 CWsWindowGroup* groupWin;
671 if(childWinGroup->iQueue)
673 TDblQue<CWsWindowGroup>* oldQueue=iQueue;
674 while((groupWin=iter--)!=NULL)
676 groupWin->iChainLink.Deque();
677 childWinGroup->iQueue->AddFirst(*groupWin);
678 groupWin->iQueue=childWinGroup->iQueue;
680 DeleteQueue(oldQueue);
684 iQueue->AddLast(*childWinGroup);
685 childWinGroup->iQueue=iQueue;
689 // 1. If we don't have a chain, and if the child has a chain, we can simply prepend this wg to the child
691 // 2. If we don't have a chain, and if the child does not have a chain, need to create a chain with the child
692 // as the owning member, and prepend our window group
694 if(childWinGroup->iQueue)
696 childWinGroup->iQueue->AddFirst(*this);
697 iQueue=childWinGroup->iQueue;
701 TDblQue<CWsWindowGroup>* queue=new TDblQue<CWsWindowGroup>(_FOFF(CWsWindowGroup,iChainLink));
702 TInt ret=KErrNoMemory;
705 ret=iChains.Append(queue);
716 queue->AddFirst(*childWinGroup);
717 childWinGroup->iQueue=queue;
718 queue->AddFirst(*this);
724 default: // All other window commands disallowed
725 OwnerPanic(EWservPanicOpcode);
729 rootWindow->CheckTree();
733 TPoint CWsWindowGroup::Origin() const
738 TRect CWsWindowGroup::AbsRect() const
740 return (TRect(RootWindow()->Abs().iTl,RootWindow()->Size()));
743 TSize CWsWindowGroup::Size() const
745 return RootWindow()->Size();
748 void CWsWindowGroup::UpdateKeyClickState()
750 CClick::SetKeyClickOveride(iFlags&EGroupFlagDisableKeyClick);
753 void CWsWindowGroup::SetOrdinalPosition(TInt aPos)
755 if (aPos==(TInt)KOrdinalPositionSwitchToOwningWindow)
756 SwitchToOwningWindow(NULL);
758 SetOrdinalPosition(aPos,NULL);
761 TBool CWsWindowGroup::SetOrdinalPosition(TInt aPos,CWsWindowGroup* aClosingWindow)
765 ret=DoSetOrdinalPosition1(aPos,aClosingWindow);
768 TDblQueIter<CWsWindowGroup> iter(*iQueue);
769 CWsWindowGroup* group;
774 while ((group=iter--)!=NULL)
780 TInt lastWinGpPos=NumWindowGroupsOnMyScreen(OrdinalPriority())-after;
784 aPos=Min(aPos,lastWinGpPos);
788 CWsWindowGroup* firstForward=iter--;
789 while (firstForward && firstForward->OrdinalPosition(EFalse)<aPos)
798 iter.Set(*firstForward);
799 MoveChainedWindows(iter,ETrue,aPos,aClosingWindow);
800 iter.Set(*firstForward);
803 MoveChainedWindows(iter,EFalse,--aPos,aClosingWindow);
809 while ((group=iter--)!=this)
811 pos2=group->OrdinalPosition(EFalse);
816 WS_ASSERT_DEBUG(ok, EWsPanicGroupWindowChainError);
824 void CWsWindowGroup::MoveChainedWindows(TDblQueIter<CWsWindowGroup>& aIter,TBool aForward,TInt aPos,CWsWindowGroup* aClosingWindow)
826 CWsWindowGroup* groupWindow;
827 while ((groupWindow=(aForward ? aIter-- : aIter++))!=NULL)
829 groupWindow->DoSetOrdinalPosition1(aPos,aClosingWindow);
830 (aForward ? ++aPos : --aPos);
834 TBool CWsWindowGroup::DoSetOrdinalPosition1(TInt aPos,CWsWindowGroup* aClosingWindow)
837 if (CheckOrdinalPositionChange(aPos))
839 if (Child()) // A group window with no children can not affect shadows
843 DoSetOrdinalPosition2(aPos,aClosingWindow);
846 iScreen->ResetFocus(aClosingWindow);
850 void CWsWindowGroup::DoSetOrdinalPosition2(TInt aPos, CWsWindowGroup *aClosingWindow)
852 ChangeWindowPosition(aPos,iParent);
853 ResetFocus(aClosingWindow);
856 void CWsWindowGroup::LostFocus()
858 iTextCursor.LostFocus();
859 iWsOwner->UpdateWindowOrdinalPrioritys();
860 if (iClientHandle!=0)
861 QueueEvent(EEventFocusLost);
862 TWalkWindowTreeFocusChanged wwt(EFalse);
863 WalkWindowTree(wwt,EWalkChildren);
864 iWsOwner->SetClientPriority();
867 void CWsWindowGroup::ReceivedFocus()
869 iWsOwner->UpdateWindowOrdinalPrioritys();
870 iTextCursor.ReceivedFocus();
871 // Used for event queue testing
872 // Calling MoveToFront sets the queue of the focused window to first place,
873 // not doing so puts the queues in unusual situation thus stress testing the queue code.
874 // One such situation is where the focus queue is first but there is a gap before it (iEventPtr>iGlobalEventPtr)"
882 WsOwner()->EventQueue()->MoveToFront();
885 WsOwner()->EventQueue()->MoveToFront();
887 QueueEvent(EEventFocusGained);
888 TWalkWindowTreeFocusChanged wwt(ETrue);
889 WalkWindowTree(wwt,EWalkChildren);
890 iWsOwner->SetClientPriority();
891 UpdateKeyClickState();
894 TInt CWsWindowGroup::NumWindowGroups(TBool aAllPriorities, TInt aPriority)
898 for(screenNo=0;screenNo<CWsTop::NumberOfScreens();++screenNo)
900 count+=CWsWindowGroup::NumWindowGroupsOnScreen(CWsTop::Screen(screenNo)->RootWindow()->Child(),aAllPriorities,aPriority);
905 TInt CWsWindowGroup::NumWindowGroupsOnScreen(const CWsWindowGroup* aGroupWin,TBool aAllPriorities,TInt aPriority)
910 if (aAllPriorities || aGroupWin->iOrdinalPriority==aPriority)
912 aGroupWin=aGroupWin->NextSibling();
917 inline TInt CWsWindowGroup::NumWindowGroupsOnMyScreen(TInt aPriority)
919 return(CWsWindowGroup::NumWindowGroupsOnScreen(Parent()->Child(),EFalse,aPriority));
922 void CWsWindowGroup::GetFocusWindowGroupL(TInt aScreenNumber)
924 CWsWindowGroup *groupWin=(aScreenNumber==KDummyScreenNumber)?CWsTop::FocusWindowGroup():CWsTop::Screen(aScreenNumber)->FocusWindowGroup();
926 User::Leave(KErrGeneral);
927 CWsClient::SetReply(groupWin->Identifier());
930 TInt CWsWindowGroup::GetWindowGroupListL(TInt aScreenNo,TBool aAllPriorities,TInt aPriority,TInt aCount,CArrayFixFlat<TInt>* aList)
932 TInt count=aList->Count();
933 CWsWindowGroup* groupWin=CWsTop::Screen(aScreenNo)->RootWindow()->Child();
934 while(!aAllPriorities && groupWin && groupWin->iOrdinalPriority!=aPriority)
935 groupWin=groupWin->NextSibling();
936 while(groupWin && (aAllPriorities || groupWin->iOrdinalPriority==aPriority) && count<aCount)
938 aList->AppendL(groupWin->Identifier());
940 groupWin=groupWin->NextSibling();
945 TInt CWsWindowGroup::SendWindowGroupListL(TInt aScreenNumber, TBool aAllPriorities, TInt aPriority, TInt aCount)
947 if ((aCount<1) || (aCount>(KArrayMaxGranularity/sizeof(TInt))))
948 User::Leave(KErrArgument);
949 CArrayFixFlat<TInt>* list=new(ELeave) CArrayFixFlat<TInt>(aCount);
950 CleanupStack::PushL(list);
952 TInt requestedScreen=aScreenNumber;
954 if(requestedScreen==KDummyScreenNumber)
956 // get list from current focus screen first
957 TInt focusScreenNo=CWsTop::CurrentFocusScreen()->ScreenNumber();
958 count=GetWindowGroupListL(focusScreenNo, aAllPriorities, aPriority, aCount, list);
961 // now get from the remaining screen
963 for(screenNo=0;screenNo<CWsTop::NumberOfScreens() && count<aCount;++screenNo)
966 if (screenNo==focusScreenNo)
968 // count hold total number of window groups collected so far
969 count=GetWindowGroupListL(screenNo, aAllPriorities, aPriority, aCount, list);
975 count=GetWindowGroupListL(requestedScreen, aAllPriorities, aPriority, aCount, list);
978 if (list->Count() > 0)
979 CWsClient::ReplyBuf(&list->At(0),count*sizeof(TInt));
980 CleanupStack::PopAndDestroy(list);
981 return(count); // How many actually returned, may be less than asked for, but not more
984 void CWsWindowGroup::GetWindowGroupListAndChainL(TInt aScreen,TBool aAllPriorities,TInt aPriority
985 ,RArray<RWsSession::TWindowGroupChainInfo>& list,TInt& aCountLeft)
987 CWsWindowGroup *groupWin=CWsTop::Screen(aScreen)->RootWindow()->Child();
988 while(!aAllPriorities && groupWin && groupWin->iOrdinalPriority!=aPriority)
989 groupWin=groupWin->NextSibling();
990 while(groupWin && (aAllPriorities || groupWin->iOrdinalPriority==aPriority) && aCountLeft>0)
992 RWsSession::TWindowGroupChainInfo windowId;
993 windowId.iId=groupWin->Identifier();
994 if(!groupWin->IsChained(windowId.iParentId))
995 windowId.iParentId=-1; //Unchained window group
996 list.AppendL(windowId);
998 groupWin=groupWin->NextSibling();
1002 TInt CWsWindowGroup::SendWindowGroupListAndChainL(TBool aAllPriorities, TInt aPriority, TInt aCount)
1004 if ((aCount<1) || (aCount>(KArrayMaxGranularity/sizeof(RWsSession::TWindowGroupChainInfo))))
1005 User::Leave(KErrArgument);
1006 RArray<RWsSession::TWindowGroupChainInfo> list(aCount);
1007 CleanupClosePushL(list);
1009 TInt focusScreenNo=CWsTop::CurrentFocusScreen()->ScreenNumber();
1010 GetWindowGroupListAndChainL(focusScreenNo,aAllPriorities,aPriority,list,count);
1012 for(screenNo=0;screenNo<CWsTop::NumberOfScreens();++screenNo)
1014 if (screenNo!=focusScreenNo)
1015 GetWindowGroupListAndChainL(screenNo,aAllPriorities,aPriority,list,count);
1017 if (list.Count() > 0)
1018 CWsClient::ReplyBuf(&list[0],aCount*sizeof(RWsSession::TWindowGroupChainInfo));
1019 CleanupStack::PopAndDestroy(&list);
1020 return(aCount-count); // How many actually returned, may be less than asked for, but not more
1023 TBool CWsWindowGroup::SendEventToAllGroups(TBool aAllPriorities,TBool aOnePerClient,const TWsClCmdSendEventToWindowGroup& aData)
1025 TWsEvent event=aData.event;
1026 if (event.Type()==EEventKey && event.Key()->iRepeats!=0)
1027 CKeyboardRepeat::CancelRepeat(NULL); //Otherwise we will trip an invarient
1028 TInt priority=aData.parameter;
1029 TBool sentToAll=ETrue;
1031 for(screenNo=0;screenNo<CWsTop::NumberOfScreens();++screenNo)
1033 CWsWindowGroup *groupWin=CWsTop::Screen(screenNo)->RootWindow()->Child();
1034 if (!aAllPriorities)
1036 while(groupWin && groupWin->iOrdinalPriority!=priority)
1037 groupWin=groupWin->NextSibling();
1039 CWsWindowGroup* firstGroupWin=groupWin;
1040 CWsClient* lastOwner=NULL;
1041 CWsWindowGroup* groupWin2;
1042 while(groupWin && (aAllPriorities || groupWin->iOrdinalPriority==priority))
1046 if (lastOwner==groupWin->iWsOwner)
1048 lastOwner=groupWin->iWsOwner;
1049 for(groupWin2=firstGroupWin;groupWin2!=groupWin;groupWin2=groupWin2->NextSibling())
1051 if (groupWin2->iWsOwner==groupWin->iWsOwner)
1054 if (groupWin2->iWsOwner==groupWin->iWsOwner && groupWin2!=groupWin)
1057 event.SetHandle(groupWin->ClientHandle());
1058 if (!groupWin->EventQueue()->QueueEvent(event))
1061 groupWin=groupWin->NextSibling();
1067 void CWsWindowGroup::SendMessageToAllGroupsL(CWsClient& aSender,TBool aAllPriorities,const TWsClCmdSendMessageToWindowGroup& aData)
1070 for(screenNo=0;screenNo<CWsTop::NumberOfScreens();++screenNo)
1072 CWsWindowGroup* groupWin=CWsTop::Screen(screenNo)->RootWindow()->Child();
1073 if (!aAllPriorities)
1075 while(groupWin && groupWin->iOrdinalPriority!=aData.identifierOrPriority)
1076 groupWin=groupWin->NextSibling();
1078 while(groupWin && (aAllPriorities || (groupWin->iOrdinalPriority==aData.identifierOrPriority)))
1080 groupWin->QueueMessageL(aData.uid, aData.dataLength, aSender);
1081 groupWin=groupWin->NextSibling();
1086 CWsWindowGroup *CWsWindowGroup::WindowGroupFromIdentifier(TInt aIdentifier)
1088 // apply to all screens
1090 for (screenNo=0; screenNo<CWsTop::NumberOfScreens(); ++screenNo)
1092 CWsWindowGroup* group;
1093 for(group=CWsTop::Screen(screenNo)->RootWindow()->Child(); group; group=group->NextSibling())
1095 if (group->Identifier() == aIdentifier)
1104 CWsWindowGroup *CWsWindowGroup::WindowGroupFromIdentifierL(TInt aIdentifier)
1106 CWsWindowGroup *group=WindowGroupFromIdentifier(aIdentifier);
1108 User::Leave(KErrNotFound);
1112 CWsWindowGroup *CWsWindowGroup::FindWindowGroupL(CWsClient* aClient, TInt aIdentifier,TInt aOffset,const TPtrC *aMatch,const TThreadId *aThreadId)
1114 CWsWindowGroup *group;
1117 group=WindowGroupFromIdentifier(aIdentifier);
1118 if (group) // NULL group will cause KErrNotFound to be returned
1119 group=group->NextSibling();
1123 // get window group for this session
1125 group = aClient->Screen()->RootWindow()->Child();
1128 for(;group;group=group->NextSibling())
1132 if (group->WsOwner()->Client().Id()==*aThreadId)
1137 const TDesC *groupName=&nullDescriptor;
1138 if (group->GroupName())
1139 groupName=group->GroupName();
1140 if (groupName->Length()>=aOffset && groupName->Mid(aOffset).MatchF(*aMatch)>=0)
1145 User::Leave(KErrNotFound);
1149 void CWsWindowGroup::AddPriorityKeyL(TUint aKeycode, TUint aModifierMask, TUint aModifiers)
1151 iPriorityKeys=new(ELeave) TPriorityKey(aKeycode,aModifierMask,aModifiers,iPriorityKeys);
1154 void CWsWindowGroup::RemovePriorityKey(TUint aKeycode, TUint aModifierMask, TUint aModifiers)
1156 for(TPriorityKey **ppk=&iPriorityKeys;*ppk;ppk=&((*ppk)->iNext))
1157 if ((*ppk)->Equals(aKeycode, aModifierMask, aModifiers))
1159 TPriorityKey *next=(*ppk)->iNext;
1166 void CWsWindowGroup::RemoveAllPriorityKeys()
1168 TPriorityKey *pk=iPriorityKeys;
1171 TPriorityKey *next=pk->iNext;
1177 TBool CWsWindowGroup::CheckForPriorityKey(const TKeyData &aKey, TInt aScanCode)
1179 for(TPriorityKey *pk=iPriorityKeys;pk;pk=pk->iNext)
1181 if (pk->KeyMatches(aKey))
1183 WsOwner()->PriorityKeyPressed(ClientHandle(),aKey, aScanCode);
1190 void CWsWindowGroup::StatusDump(TDes &aBuf)
1192 _LIT(KWSERVStatusDumpWindowGroupInfo,"CWsWindowGroup[0x%x]RWindowGroup[0x%x,%d],Pri=%d,Id=%d,SizeMode=%d");
1193 aBuf.AppendFormat(KWSERVStatusDumpWindowGroupInfo,this,iClientHandle,LogHandle(),iOrdinalPriority,iIdentifier,iScreenDevice?iScreenDevice->AppMode():0);
1196 void CWsWindowGroup::SignalMessageReady()
1199 event.SetType(EEventMessageReady);
1200 event.SetHandle(ClientHandle());
1202 SEventMessageReady& eventMessageReady=*(SEventMessageReady*)event.EventData();
1203 eventMessageReady.iWindowGroupIdentifier=Identifier();
1204 eventMessageReady.iMessageUid=(*iMessageArray)[0].iUid;
1205 eventMessageReady.iMessageParametersSize=iMessageArray->Length(0)-sizeof(TUid);
1206 if(WsOwner()->EventQueue()->QueueEvent(event,EEventPriorityHigh))
1208 iFlags|=EGroupFlagMessageSignalled;
1212 void CWsWindowGroup::QueueMessageL(TUid aUid, TInt aDataLength, CWsClient& aSender)
1214 WS_ASSERT_DEBUG(iFlags&(EGroupFlagMsgQueueActive|EGroupFlagMsgQueueNew) || iMessageArray->Count()>=1,EWsPanicMsgQueueError);
1215 if (!(iFlags&(EGroupFlagMsgQueueActive|EGroupFlagMsgQueueNew)) && iMessageArray->Count()>=KMaxNumberOfMsgsInInactiveQueue)
1217 WS_ASSERT_DEBUG(iMessageArray->Count()<=KMaxNumberOfMsgsInInactiveQueue,EWsPanicMsgQueueError);
1218 iMessageArray->Delete(1,iMessageArray->Count()-1);
1220 TWsMessage* message=NULL;
1221 TRAPD(err,message=&iMessageArray->ExtendL(aDataLength+sizeof(aUid)));
1222 if ((err || (iFlags&EGroupFlagMsgQueueNew)) && iMessageArray->Count()>KMaxNumberOfMsgsInQueue)
1224 iFlags&=~(EGroupFlagMsgQueueActive|EGroupFlagMsgQueueNew);
1225 iMessageArray->Delete(1,iMessageArray->Count()-(err?1:2));
1226 iMessageArray->Compress();
1228 User::LeaveIfError(err);
1232 TPtr8 ptr(&message->iTheRest[0],aDataLength);
1233 TRAP(err,aSender.RemoteReadL(ptr,0));
1236 iMessageArray->Delete(iMessageArray->Count()-1);
1239 if (!(iFlags&EGroupFlagMessageSignalled))
1241 WS_ASSERT_DEBUG(iMessageArray->Count()==1,EWsPanicMsgQueueError);
1242 SignalMessageReady();
1247 void CWsWindowGroup::FetchMessageL()
1249 if (!(iFlags&EGroupFlagMessageSignalled))
1251 OwnerPanic(EWservPanicFetchMessage);
1253 CWsClient::ReplyBuf(&((*iMessageArray)[0].iTheRest[0]),(TInt)iMessageArray->Length(0)-sizeof(TUid));
1254 iMessageArray->Delete(0);
1255 iFlags|=EGroupFlagMsgQueueActive;
1256 iFlags&=~(EGroupFlagMessageSignalled|EGroupFlagMsgQueueNew);
1257 if (iMessageArray->Count()>0)
1259 SignalMessageReady();
1263 TBool CWsWindowGroup::ScreenDeviceValid() const
1265 return(iScreenDevice?iScreenDevice->ScreenDeviceValidState():(iScreen->ScreenSizeMode()==0));
1268 TBool CWsWindowGroup::CanReceiveFocus() const
1270 return(ReceivesFocus() && iWsOwner->NotClosing() && (ScreenDeviceValid() || iFlags&EGroupFlagHandlesDeviceChange));
1273 void CWsWindowGroup::SetScreenChangeEventStateL(TBool aEnabled)
1275 iFlags&=~EGroupFlagHandlesDeviceChange;
1278 iFlags|=EGroupFlagHandlesDeviceChange;
1279 TWindowServerEvent::AddToScreenDeviceChangeEventListL(*this);
1280 if (iScreen->ScreenSizeMode()!=0)
1281 TWindowServerEvent::SendScreenDeviceChangedEvent(this);
1284 TWindowServerEvent::RemoveFromScreenDeviceChangeEventList(*this);
1285 iScreen->ResetFocus(NULL);
1288 void CWsWindowGroup::SetScreenDeviceValidState(const DWsScreenDevice *aDevice)
1290 if (iScreenDevice==aDevice)
1292 TBool state=ScreenDeviceValid();
1293 for(CWsClientWindow *win=Child();win;win=win->NextSibling())
1295 win->SetScreenDeviceValidState(state);
1300 void CWsWindowGroup::SetScreenDeviceValidStates(const DWsScreenDevice *aDevice)
1302 for(CWsWindowGroup *groupWin=aDevice->RootWindow()->Child();groupWin;groupWin=groupWin->NextSibling())
1303 groupWin->SetScreenDeviceValidState(aDevice);
1306 TBool CWsWindowGroup::SetScreenDeviceValidStates(const TBool aScreenSizeChanged,const TBool aSwapWidthAndHeight, CScreen* aScreen)
1309 CWsRootWindow* rootWindow = aScreen->RootWindow();
1311 CWsWindowGroup* groupWin;
1312 CWsClientWindow* win;
1313 for(groupWin=rootWindow->Child();groupWin;groupWin=groupWin->NextSibling())
1315 TBool state=groupWin->ScreenDeviceValid();
1316 for(win=groupWin->Child();win;win=win->NextSibling())
1318 win->SetScreenDeviceValidStateFlag(state);
1319 win->ResetHiddenFlagsInParentAndChildren();
1322 if (aScreenSizeChanged)
1324 rootWindow->ScreenSizeChanged(aSwapWidthAndHeight);
1327 aScreen->AddRedrawRegion(rootWindow->WindowArea());
1332 void CWsWindowGroup::SetScreenDevice(DWsScreenDevice *aDevice)
1334 iScreenDevice=aDevice;
1337 void CWsWindowGroup::NewOrientation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation, CWsRootWindow* aRootWindow)
1339 for(CWsWindowGroup *groupWin=aRootWindow->Child();groupWin;groupWin=groupWin->NextSibling())
1341 DWsScreenDevice *device=groupWin->Device();
1343 device->NewOrientation(aMode,aRotation);
1347 void CWsWindowGroup::ResetFocus(CWsWindowGroup *aClosingWindow)
1351 iScreen->ResetFocus(aClosingWindow);
1355 TBool CWsWindowGroup::IsChained(TInt& aParentId)
1359 if (iQueue->First()==this)
1362 aParentId=BeforeInChain()->Identifier();
1366 inline CWsWindowGroup* CWsWindowGroup::BeforeInChain()
1367 { //You should only call this function if you know the window has a parent
1368 return reinterpret_cast<CWsWindowGroup*>(PtrSub(iChainLink.iPrev,_FOFF(CWsWindowGroup,iChainLink)));
1371 TBool CWsWindowGroup::CheckCapability(TInt& aOrdinalPriority)
1373 if(aOrdinalPriority>=KPasswordWindowGroupPriority)
1375 if(!KSecurityPolicy_SwEvent().CheckPolicy(WsOwner()->Client(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed")))
1377 aOrdinalPriority=KPasswordWindowGroupPriority-1;
1384 TBool CWsWindowGroup::HasVisibleTranslucentChild()
1386 CWsWindowBase * child = iChild;
1389 if (child->WinType() == EWinTypeClient)
1391 CWsClientWindow * cliwin = static_cast<CWsClientWindow *>(child);
1392 if (cliwin->IsTranslucent() && cliwin->IsVisible())
1395 else if (static_cast<CWsWindowGroup*>(child)->HasVisibleTranslucentChild())
1399 child = child->NextSibling();
1404 TInt CWsWindowGroup::NumClientWindowGroups()
1406 CWsObjectIx& objix=*WsOwner()->ObjectIndex();
1407 const TWsObject* ptr=objix.FirstObject();
1408 const TWsObject* end=ptr+objix.Length();
1410 while(++ptr<end) //First one should always have a NULL object
1412 const CWsObject* obj=ptr->iObject;
1413 if (obj && obj->Type()==WS_HANDLE_GROUP_WINDOW)