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.
22 #include <graphics/wsscreendevice.h>
27 #include "windowgroup.h"
31 #include "../CLIENT/w32comm.h"
32 #include "devicemap.h"
33 #include <graphics/wsdisplaycontrol.h>
34 #include "wsdisplaychangeao.h"
35 #include <graphics/wstestscreencapture.h>
36 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
38 const TInt KEikSrvsSid=0x10003a4a;
40 static _LIT_SECURITY_POLICY_C1(KSecurityPolicy_WriteDeviceData,ECapabilityWriteDeviceData);
44 DWsScreenDevice::DWsScreenDevice(CWsClient* aOwner, TInt aDefaultScreenNumber, TUint aClientScreenDevicePointer)
45 : CWsScreenObject(aOwner, WS_HANDLE_SCREEN_DEVICE, CWsTop::Screen( aDefaultScreenNumber ))
46 ,iClientScreenDevicePointer(aClientScreenDevicePointer)
48 MWsScreen* pOI=Screen();
49 iDispCont=pOI->ObjectInterface<MWsDisplayControl>();
50 iDispMap =pOI->ObjectInterface<MWsDisplayMapping>();
51 iTestScreenCapture = pOI->ObjectInterface<MWsTestScreenCapture>();
54 DWsScreenDevice::~DWsScreenDevice()
56 //remove it for display change notification, if it asked for notification
57 Screen()->RemoveNotificationClient(iWsOwner);
60 void DWsScreenDevice::CopyScreenToBitmapL(const TRect &aRect, TInt aHandle)
62 iScreen->DoRedrawNow();
64 CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
65 CleanupStack::PushL(bitmap);
66 TInt ret = bitmap->Duplicate(aHandle);
67 if (ret == KErrNoMemory)
72 OwnerPanic(EWservPanicBitmap);
74 iScreen->ScreenDevice().CopyScreenToBitmapL(bitmap, aRect);
75 CleanupStack::PopAndDestroy(bitmap);
78 void DWsScreenDevice::CommandL(TInt aOpcode, const TAny *aCmdData)
84 case EWsSdOpGetNumScreenModes:
85 SetReply(iScreen->NumScreenSizeModes());
87 case EWsSdOpGetScreenMode:
88 SetReply(iScreen->ScreenSizeMode());
90 case EWsSdOpSetScreenMode:
92 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for CWsScreenDevice::SetScreenMode API")))
94 iWsOwner->PPanic(EWservPanicPermissionDenied);
96 SetScreenMode(*pData.Int);
99 case EWsSdOpSetModeRotation:
101 if(KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for CWsScreenDevice::SetModeRotation API")))
103 TClientPanic panic=iScreen->SetModeRotation(pData.SetScreenRotation->mode,pData.SetScreenRotation->rotation);
109 case EWsSdOpGetRotationList:
110 if (!iScreen->IsValidScreenSizeMode(*pData.Int))
111 OwnerPanic(EWservPanicScreenModeNumber);
112 SetReply(iScreen->ScreenSizeModeData(*pData.Int).iAlternativeRotations);
114 case EWsSdOpGetScreenModeSizeAndRotation:
115 GetScreenSizeAndRotationCmd(*pData.Int);
117 case EWsSdOpGetScreenModeSizeAndRotation2:
118 GetScreenSizeAndRotationCmd2(*pData.Int);
120 case EWsSdOpSetScreenSizeAndRotation:
121 SetScreenSizeAndRotation(*pData.PixelsTwipsAndRotation);
123 case EWsSdOpSetScreenSizeAndRotation2:
124 SetScreenSizeAndRotation(*pData.PixelsAndRotation);
126 case EWsSdOpGetDefaultScreenSizeAndRotation:
127 GetScreenSizeAndRotationCmd(iScreen->ScreenSizeMode());
129 case EWsSdOpGetDefaultScreenSizeAndRotation2:
130 GetScreenSizeAndRotationCmd2(iScreen->ScreenSizeMode());
132 case EWsSdOpGetScreenModeDisplayMode:
133 GetScreenModeDisplayMode(*pData.Int);
135 case EWsSdOpGetScreenModeScale:
136 if (!iScreen->IsValidScreenSizeMode(*pData.Int))
137 OwnerPanic(EWservPanicScreenModeNumber);
138 CWsClient::ReplySize(TSize(1,1));
140 case EWsSdOpGetCurrentScreenModeScale:
141 CWsClient::ReplySize(TSize(1,1));
143 case EWsSdOpSetAppScreenMode:
144 SetAppScreenMode(*pData.Int);
146 case EWsSdOpGetCurrentScreenModeScaledOrigin:
147 //scaling is not supported, but origin is.
148 CWsClient::ReplyPoint(iScreen->Origin());
150 case EWsSdOpGetScreenModeScaledOrigin:
152 if (!iScreen->IsValidScreenSizeMode(*pData.Int))
153 OwnerPanic(EWservPanicScreenModeNumber);
154 //scaling is not supported, but origin is.
155 const TSizeMode& sizeMode=iScreen->ScreenSizeModeData(*pData.Int);
156 CWsClient::ReplyPoint(sizeMode.iOrigin);
159 case EWsSdOpGetCurrentScreenModeAttributes:
160 GetCurrentScreenModeAttributes();
162 case EWsSdOpSetCurrentScreenModeAttributes:
163 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for CWsScreenDevice::SetCurrentScreenModeAttributes API, API should be used for test purposes only")))
165 iWsOwner->PPanic(EWservPanicPermissionDenied);
167 SetCurrentScreenModeAttributes(*pData.ScreenSizeMode);
169 case EWsSdOpSetScreenModeEnforcement:
171 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for CWsScreenDevice::SetScreenModeEnforcement API")))
173 iWsOwner->PPanic(EWservPanicPermissionDenied);
175 if (!iScreen->SetScreenModeEnforcement(*pData.Int))
176 OwnerPanic(EWservPanicScreenEnforcementMode);
179 case EWsSdOpScreenModeEnforcement:
180 SetReply(iScreen->SizeEnforcementMode());
182 case EWsSdOpGetDefaultScreenModeOrigin:
183 CWsClient::ReplyPoint(iScreen->Origin());
185 case EWsSdOpGetScreenModeOrigin:
187 if (!iScreen->IsValidScreenSizeMode(*pData.Int))
188 OwnerPanic(EWservPanicScreenModeNumber);
189 const TSizeMode& mode=iScreen->ScreenSizeModeData(*pData.Int);
190 CWsClient::ReplyPoint(mode.iOrigin);
195 iScreen->DoRedrawNow();
197 iScreen->ScreenDevice().GetPixel(rgb,*pData.Point);
198 SetReply(rgb.Internal());
201 case EWsSdOpGetScanLine:
202 iScreen->DoRedrawNow();
203 iScreen->GetScanLine(pData.GetScanLine);
205 case EWsSdOpTwipsSize:
206 CWsClient::ReplySize(AppScreenSizeInTwips());
208 case EWsSdOpPixelSize:
209 CWsClient::ReplySize(AppScreenSizeInPixels());
211 case EWsSdOpHorizontalTwipsToPixels:
212 SetReply(iScreen->DeviceMap().HorizontalTwipsToPixels(*pData.UInt));
214 case EWsSdOpVerticalTwipsToPixels:
215 SetReply(iScreen->DeviceMap().VerticalTwipsToPixels(*pData.UInt));
217 case EWsSdOpHorizontalPixelsToTwips:
218 SetReply(iScreen->DeviceMap().HorizontalPixelsToTwips(*pData.UInt));
220 case EWsSdOpVerticalPixelsToTwips:
221 SetReply(iScreen->DeviceMap().VerticalPixelsToTwips(*pData.UInt));
223 case EWsSdOpPointerRect:
225 MWsScreen* pOI=iScreen;
226 const MWsScreenDevice* screenDevice = pOI->ObjectInterface<MWsScreenDevice>();
227 WS_ASSERT_ALWAYS(screenDevice, EWsPanicScreenDeviceMissing);
228 CWsClient::ReplyRect(screenDevice->PointerRect());
233 // Mark any group windows associated with the screen device being deleted
234 CWsRootWindow* root=iScreen->RootWindow();
235 for (CWsWindowGroup* grp = root->Child(); grp; grp = grp->NextSibling())
237 if (grp->Device() == this)
240 grp->SetScreenDeviceDeleted();
242 grp->SetScreenDevice(NULL);
246 // Let our owner (CWsClient) know that a screen device is being deleted so it
247 // can check whether to reset its iPrimaryScreenDevice member or not
249 WsOwner()->NotifyScreenDeviceDeleted(this);
252 case EWsSdOpDisplayMode:
253 SetReply(iScreen->DisplayMode());
255 case EWsSdOpRectCompare:
257 // if (pData.RectCompare->flags&CWsScreenDevice::EIncludeSprite)
259 // SpriteManager()->IncrementProcessingSprites();
262 RWsTextCursor * cursor = 0;
263 if (!(pData.RectCompare->flags&CWsScreenDevice::EIncludeTextCursor))
264 cursor = CWsTop::CurrentTextCursor();
267 iScreen->DoRedrawNow();
268 SetReply(iScreen->ScreenDevice().RectCompare(pData.RectCompare->rect1, pData.RectCompare->rect2));
273 // if (pData.RectCompare->flags&CWsScreenDevice::EIncludeSprite)
275 // SpriteManager()->DecrementProcessingSprites();
279 case EWsSdOpCopyScreenToBitmap:
280 CopyScreenToBitmapL(TRect(iScreen->SizeInPixels()), pData.CopyScreenToBitmap->handle);
282 case EWsSdOpCopyScreenToBitmap2:
283 CopyScreenToBitmapL(pData.CopyScreenToBitmap2->rect,pData.CopyScreenToBitmap2->handle);
285 case EWsSdOpPaletteAttributes:
288 MWsScreen* pOI=iScreen;
289 MWsPalette* palette = pOI->ObjectInterface<MWsPalette>();
294 palette->PaletteAttributes(modifiable, numEntries);
296 numEntries |= EWsSdSetableBitFlag;
301 iScreen->MaxNumColors(numEntries, aGrays);
304 SetReply(numEntries);
307 case EWsSdOpSetPalette:
309 if(!KSecurityPolicy_WriteDeviceData().CheckPolicy(iWsOwner->ClientMessage(),__PLATSEC_DIAGNOSTIC_STRING("Capability check failed for CWsScreenDevice::SetPalette API")))
311 User::Leave(KErrPermissionDenied);
316 case EWsSdOpGetPalette:
317 GetPalette(*pData.Int);
320 case EWsSdOpGetScreenNumber:
321 SetReply(iScreen->ScreenNumber());
323 case EWsSdOpGetScreenSizeModeList:
324 SetReply(iScreen->GetScreenSizeModeListL());
326 case EWsClOpSetBackLight:
329 if(Screen()->BackLightFlag() && iWsOwner->ClientMessage().SecureId()==KEikSrvsSid)
331 TWindowServerEvent::ProcessErrorMessages(TWsErrorMessage::EBackLight, err=HAL::Set(iScreen->ScreenNumber(),HALData::EBacklightState,*pData.Int));
336 User::Leave(KErrPermissionDenied);
340 case EWsSdOpIsScreenModeDynamic:
342 TInt mode = (*pData.Int == -1) ? iAppMode : *pData.Int;
344 TRAPD(err,flags = Screen()->ModeFlagsL(mode));
345 if (err == KErrNone && flags & MWsScreenConfigList::EDynamic)
357 ExtensionCommandL(aOpcode, aCmdData);
362 void DWsScreenDevice::ExtensionCommandL(TInt aOpcode, const TAny *aCmdData)
368 case EWsSdOpExtensionsSupported:
373 reply|=TWsSdXDisplayControl;
377 reply|=TWsSdXDisplayMapping;
379 MWsScreen* pOI=Screen();
380 iTestScreenCapture = pOI->ObjectInterface<MWsTestScreenCapture>();
381 if (iTestScreenCapture != NULL)
383 reply|=TWsSdXDebugComposition;
388 case EWsSdOpXDcGetNumberOfResolutions:
392 SetReply(iDispCont->NumberOfResolutions());
396 SetReply(KErrNotSupported);
400 case EWsSdOpXDcGetResolutionsList:
404 RArray<MWsDisplayControl::TResolution> resolutions;
405 TInt err = iDispCont->GetResolutions(resolutions);
412 TInt bufLength = resolutions.Count()*sizeof(MWsDisplayControl::TResolution);
415 if(CWsClient::ReplyBufSpace() >= bufLength)
416 { //must not overflow the client's allocated storage.
417 CWsClient::ReplyBuf(&resolutions[0], bufLength);
423 SetReply(KErrNotSupported);
427 case EWsSdOpXDcGetConfiguration:
431 TDisplayConfiguration dispConfig = *pData.DisplayConfiguration;
432 if (dispConfig.Version() < sizeof(TDisplayConfiguration))
434 //Test not required until there are multiple configuration sizes
435 __ASSERT_COMPILE(sizeof(TDisplayConfiguration1)==sizeof(TDisplayConfiguration));
436 //if (dispConfig.Version() != sizeof(TDisplayConfiguration1))
438 CWsClient::PanicCurrentClient(EWservPanicInvalidDisplayConfiguration);
441 iDispCont->GetConfiguration(dispConfig);
442 TInt expectedVersion = pData.DisplayConfiguration->Version();
443 if (sizeof(TDisplayConfiguration)< expectedVersion)
444 expectedVersion = sizeof(TDisplayConfiguration);
445 CWsClient::ReplyBuf(&dispConfig, expectedVersion);
449 SetReply(KErrNotSupported);
454 case EWsSdOpXDcSetConfiguration:
456 TDisplayConfiguration dispConfig = *pData.DisplayConfiguration;
457 if (dispConfig.Version() < TDisplayConfiguration().Version())
459 //Test not required until there are multiple configuration sizes
460 __ASSERT_COMPILE(sizeof(TDisplayConfiguration1)==sizeof(TDisplayConfiguration));
461 //if (dispConfig.Version() != sizeof(TDisplayConfiguration1))
463 CWsClient::PanicCurrentClient(EWservPanicInvalidDisplayConfiguration);
466 TInt reply=Screen()->SetConfiguration(dispConfig);
471 case EWsSdOpXDcGetPreferredDisplayVersion:
475 SetReply(iDispCont->PreferredDisplayVersion());
479 SetReply(KErrNotSupported);
483 case EWsSdOpXDcNotifyOnDisplayChange:
487 SetReply(Screen()->AddNotificationClient(iWsOwner));
491 SetReply(KErrNotSupported);
495 case EWsSdOpXDcNotifyOnDisplayChangeCancel:
499 Screen()->RemoveNotificationClient(iWsOwner);
504 SetReply(KErrNotSupported);
508 case EWsSdOpXTestScreenCapture:
509 TestScreenCaptureL(pData.any);
511 case EWsSdOpXTestScreenCaptureSize:
512 CWsClient::ReplySize(iScreen->SizeInPixels());
514 case EWsSdOpXDcDisplayChangeEventEnabled:
518 if(Screen()->FindNotificationClient(iWsOwner) != KErrNotFound)
529 case EWsSdOpXDmMapExtent:
533 TWsSdCmdMapCoordinates mapCoord = *pData.MapCoordinates;
535 TInt err = iDispMap->MapCoordinates(mapCoord.sourceSpace, mapCoord.sourceRect, mapCoord.targetSpace, targetRect);
542 CWsClient::ReplyBuf(&targetRect, sizeof(TRect));
548 SetReply(KErrNotSupported);
553 OwnerPanic(EWservPanicOpcode);
558 void DWsScreenDevice::SetScreenMode(TInt aMode)
560 if (!iScreen->IsValidScreenSizeMode(aMode))
561 OwnerPanic(EWservPanicScreenModeNumber);
562 iScreen->doSetScreenMode(aMode);
565 TSize DWsScreenDevice::AppScreenSizeInPixels() const
567 if (iAppScreenSizeInPixels == TSize(-1,-1))
570 TRAP_IGNORE(returnSize = iScreen->ScreenModeSizeInPixelsL(iAppMode));
573 return iAppScreenSizeInPixels;
576 TSize DWsScreenDevice::AppScreenSizeInTwips() const
578 if (iAppScreenSizeInTwips == TSize(-1,-1))
581 TRAP_IGNORE(returnSize = iScreen->ScreenModeSizeInTwipsL(iAppMode));
584 return iAppScreenSizeInTwips;
587 TBool DWsScreenDevice::ScreenDeviceValidState() const
589 WS_ASSERT_DEBUG(iScreen->IsValidScreenSizeMode(iScreen->ScreenSizeMode()), EWsPanicInvalidScreenSizeMode);
590 const TSizeMode& currentMode=iScreen->ScreenSizeModeData();
593 // In all enforcement modes scale should match, so check scale first
594 if (iScreen->SizeEnforcementMode()!=ESizeEnforcementNone)
596 TSize appScreenSizeInPixels = AppScreenSizeInPixels();
597 if (currentMode.iRotation!=iAppRotation)
601 else if (!(appScreenSizeInPixels == currentMode.iScreenSize))
606 if (iScreen->SizeEnforcementMode()==ESizeEnforcementPixelsTwipsAndRotation)
608 TSize appScreenSizeInTwips = AppScreenSizeInTwips();
609 if (!(appScreenSizeInTwips == currentMode.iScreenTwipsSize))
617 void DWsScreenDevice::ConstructL()
619 // App specific construct
623 const TSizeMode& mode=iScreen->ScreenSizeModeData(iScreen->ScreenSizeMode());
624 TInt modeNumber = iScreen->ScreenSizeMode();
625 TInt flags = iScreen->ModeFlagsL(modeNumber);
626 if (flags & MWsScreenConfigList::EDynamic)
628 iAppScreenSizeInPixels = TSize(-1,-1);
629 iAppScreenSizeInTwips = TSize(-1,-1);
633 iAppScreenSizeInPixels=mode.iScreenSize;
634 iAppScreenSizeInTwips=mode.iScreenTwipsSize;
636 iAppRotation=mode.iRotation;
640 void DWsScreenDevice::SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSar)
642 iAppScreenSizeInPixels=aSar.iPixelSize;
643 iAppScreenSizeInTwips=aSar.iTwipsSize;
644 iAppRotation=aSar.iRotation;
645 SetScreenDeviceValidStates(this);
647 TRAP_IGNORE(flags = iScreen->ModeFlagsL(iScreen->ScreenSizeMode()));
648 if (flags & MWsScreenConfigList::EDynamic)
650 iAppScreenSizeInPixels = TSize(-1,-1);
651 iAppScreenSizeInTwips = TSize(-1,-1);
655 void DWsScreenDevice::SetScreenSizeAndRotation(const TPixelsAndRotation &aSar)
657 iAppScreenSizeInPixels=aSar.iPixelSize;
658 iAppScreenSizeInTwips.iWidth=iScreen->DeviceMap().HorizontalPixelsToTwips(iAppScreenSizeInPixels.iWidth);
659 iAppScreenSizeInTwips.iHeight=iScreen->DeviceMap().VerticalPixelsToTwips(iAppScreenSizeInPixels.iHeight);
660 iAppRotation=aSar.iRotation;
661 SetScreenDeviceValidStates(this);
663 TRAP_IGNORE(flags = iScreen->ModeFlagsL(iScreen->ScreenSizeMode()));
664 if (flags & MWsScreenConfigList::EDynamic)
666 iAppScreenSizeInPixels = TSize(-1,-1);
667 iAppScreenSizeInTwips = TSize(-1,-1);
671 void DWsScreenDevice::GetCurrentScreenModeAttributes()
673 TSizeMode aModeData=iScreen->ScreenSizeModeData();
674 CWsClient::ReplyBuf(&aModeData,sizeof(aModeData));
677 void DWsScreenDevice::SetCurrentScreenModeAttributes(const TSizeMode &aModeData)
680 if (aModeData.iScreenScale.iWidth==0 || aModeData.iScreenScale.iHeight==0)
681 OwnerPanic(EWservPanicScreenModeNumber);
683 iScreen->SetCurrentScreenModeAttributes(aModeData);
686 void DWsScreenDevice::GetScreenSizeAndRotationCmd(TInt aMode)
688 if (!iScreen->IsValidScreenSizeMode(aMode))
689 OwnerPanic(EWservPanicScreenModeNumber);
690 TPixelsTwipsAndRotation sar;
691 iScreen->GetScreenSizeAndRotation(sar,aMode);
692 CWsClient::ReplyBuf(&sar, sizeof(sar));
695 void DWsScreenDevice::GetScreenSizeAndRotationCmd2(TInt aMode)
697 if (!iScreen->IsValidScreenSizeMode(aMode))
698 OwnerPanic(EWservPanicScreenModeNumber);
699 TPixelsAndRotation sar;
700 iScreen->GetScreenSizeAndRotation(sar,aMode);
701 CWsClient::ReplyBuf(&sar, sizeof(sar));
704 void DWsScreenDevice::GetScreenModeDisplayMode(const TInt aMode)
706 if (!iScreen->IsValidScreenSizeMode(aMode))
708 OwnerPanic(EWservPanicScreenModeNumber);
710 SetReply(STATIC_CAST(TInt,iScreen->DefaultDisplayMode(aMode)));
713 void DWsScreenDevice::SetAppScreenMode(TInt aMode)
715 if (!iScreen->IsValidScreenSizeMode(aMode))
717 OwnerPanic(EWservPanicScreenModeNumber);
719 const TSizeMode& sizeMode=iScreen->ScreenSizeModeData(aMode);
721 TRAP_IGNORE(flags = iScreen->ModeFlagsL(aMode));
722 if (flags & MWsScreenConfigList::EDynamic)
724 iAppScreenSizeInPixels = TSize(-1,-1);
725 iAppScreenSizeInTwips = TSize(-1,-1);
729 iAppScreenSizeInPixels=sizeMode.iScreenSize;
730 iAppScreenSizeInTwips=sizeMode.iScreenTwipsSize;
733 iAppRotation=sizeMode.iRotation;
734 CWsWindowGroup::SetScreenDeviceValidStates(this);
737 #define ROTATION_TO_FLAG(x) 1<<x
739 void DWsScreenDevice::SetScreenDeviceValidStates(const DWsScreenDevice *aDevice)
741 TInt modes=iScreen->NumScreenSizeModes();
743 for (mode=0;mode<modes;++mode)
746 TRAPD(err,flags = iScreen->ModeFlagsL(mode));
747 if (err != KErrNone || flags&MWsScreenConfigList::EDynamic)
751 const TSizeMode& sizeMode=iScreen->ScreenSizeModeData(mode);
752 if (iAppScreenSizeInPixels==sizeMode.iScreenSize && ROTATION_TO_FLAG(iAppRotation)&sizeMode.iAlternativeRotations)
758 CWsWindowGroup::SetScreenDeviceValidStates(aDevice);
761 void DWsScreenDevice::NewOrientation(TInt aMode,CFbsBitGc::TGraphicsOrientation aRotation)
764 iAppRotation=aRotation;
767 void DWsScreenDevice::SetPaletteL()
769 MWsScreen* pOI=iScreen;
770 MWsPalette* paletteInterface = pOI->ObjectInterface<MWsPalette>();
772 if (paletteInterface)
774 const TInt size=iWsOwner->ClientMessage().GetDesLength(KRemoteBufferMessageSlot);
775 TInt numEntries=size/sizeof(TRgb);
776 CPalette* palette=CPalette::NewL(numEntries);
777 CleanupStack::PushL(palette);
778 TPtr8 paletteData(NULL,0);
779 palette->GetDataPtr(0,numEntries,paletteData);
780 iWsOwner->RemoteReadL(paletteData,0);
781 SetReply(paletteInterface->SetCustomPalette(palette));
782 CleanupStack::PopAndDestroy(palette);
785 SetReply(KErrNotSupported);
788 void DWsScreenDevice::GetPalette(TInt aNumColors)
790 MWsScreen* pOI=iScreen;
791 MWsPalette* paletteInterface = pOI->ObjectInterface<MWsPalette>();
793 if (paletteInterface)
795 CPalette* palette = NULL;
796 TInt ret = paletteInterface->GetPalette(palette);
804 ret = palette->Entries();
806 if (ret != aNumColors)
813 TPtr8 paletteData(NULL,0);
814 palette->GetDataPtr(0,ret,paletteData);
815 CWsClient::ReplyBuf(paletteData);
820 SetReply(KErrNotSupported);
823 TUint DWsScreenDevice::ClientDevicePointer()
825 return iClientScreenDevicePointer;
827 //Integer version means callers don't need exported panic enumeration
828 void DWsScreenDevice::PanicCurrentClient(TInt aPanic)
830 PanicCurrentClient((TClientPanic)aPanic);
833 //Allows render stage to initiate a client panic
834 void DWsScreenDevice::PanicCurrentClient(TClientPanic aPanic)
836 CWsClient::PanicCurrentClient(aPanic);
839 void DWsScreenDevice::SetReply(TInt aReply)
841 CWsObject::SetReply(aReply);
844 void DWsScreenDevice::RedrawNowIfPending()
846 iScreen->RedrawNowIfPending();
849 void DWsScreenDevice::ReplyBuf(const TAny* aSource, TInt aLength)
851 TPtrC8 src(reinterpret_cast<const TUint8*>(aSource),aLength);
852 CWsClient::ReplyBuf(src);
855 void DWsScreenDevice::TestScreenCaptureL(const TAny* aMessage)
857 if (iTestScreenCapture == NULL)
859 // at this point we expect that Screen Capture Interface exists always
860 OwnerPanic(EWservPanicScreenCaptureInvalidRequest);
861 SetReply(KErrNotSupported);
863 iTestScreenCapture->TestScreenCaptureL(aMessage, *static_cast<MWsScreenDeviceUtils*>(this));