First public contribution.
1 // Copyright (c) 2000-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.
16 #include "scrdevextension.h"
17 #include "../SERVER/w32cmd.h"
18 #include <graphics/displaycontrolbase.h>
22 CWsScreenDevice::CScrDevExtension::CScrDevExtension(RWsBuffer *aBuffer,TInt32 aWsHandle): MWsClientClass(aBuffer)
25 __ASSERT_DEBUG(aBuffer,Panic(EW32PanicBadClientInterface));
26 __ASSERT_DEBUG(aWsHandle,Panic(EW32PanicBadClientInterface));
29 CWsScreenDevice::CScrDevExtension::~CScrDevExtension()
31 //typeface store is not owned by this class, and is created/destroyed in CWsScreenDevice
33 /** Interface Extension capability
34 * Use of this interface going forward will allow the published client interface to be dynamically extended.
35 * Note that the pointer returned is only good for the lifetime of the called CBase derived object.
36 * @pre caller has already checked that the implementation is initialised using RepeatableConstruct
37 * @param aInterfaceId uniqueid or well known id of interface
38 * @return pointer to interface object matching this ID or NULL if no match.
40 void* CWsScreenDevice::CScrDevExtension::GetInterface(TUint aInterfaceId)
42 __ASSERT_DEBUG(this!=NULL,Panic(EW32PanicBadClientInterface));
43 __ASSERT_DEBUG(iBuffer,Panic(EW32PanicBadClientInterface));
44 __ASSERT_DEBUG(iWsHandle!=NULL,Panic(EW32PanicBadClientInterface));
48 case MTestScreenCapture::ETypeId:
50 return static_cast<MTestScreenCapture*>(this);
57 //Accessor to typeface store instance
58 CFbsTypefaceStore* CWsScreenDevice::CScrDevExtension::TypefaceStore()
60 return iTypefaceStore;
62 //Accessor to typeface store instance
63 void CWsScreenDevice::CScrDevExtension::SetTypefaceStore(CFbsTypefaceStore* aTypeFaceStore)
65 iTypefaceStore=aTypeFaceStore;
69 TInt CWsScreenDevice::CScrDevExtension::TranslateExtent(const TRect& aInitial, TRect& aTarget) const
71 // Current screen mode scale
72 TPckgBuf<TSize> pntPkg;
73 TInt err = WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScale);
74 TSize scale = pntPkg();
76 // Current screen mode offset
77 TPckgBuf<TPoint> soPkg;
78 err = WriteReplyP(&soPkg,EWsSdOpGetCurrentScreenModeScaledOrigin);
79 TPoint offset = soPkg();
81 // Calculate the top left point taking into account scale and offset
82 TInt startingPointWidth = (scale.iWidth * aInitial.iTl.iX) + offset.iX;
83 TInt startingPointHeight = (scale.iHeight * aInitial.iTl.iY) + offset.iY;
84 TPoint targetXY(startingPointWidth,startingPointHeight);
86 // Calculate the extent size taking into account scale
87 TInt targetWidth = (scale.iWidth * aInitial.Width());
88 TInt targetHeight = (scale.iHeight * aInitial.Height());
89 TSize targetSize(targetWidth,targetHeight);
91 aTarget.SetRect(targetXY,targetSize);
96 /** Gets the size of the screen device area in pixels.
98 This function always causes a flush of the window server buffer.
100 @return The x and y dimensions of the screen device area, in pixels.
101 @see CGraphicsDevice::SizeInPixels() */
102 TInt CWsScreenDevice::CScrDevExtension::GetCompositedSize(TSize& aSize) const
104 TPckgBuf<TSize> sizePkg;
105 TInt err = WriteReplyP(&sizePkg,EWsSdOpPixelSize);
112 /** Saves the entire screen to a bitmap.
114 This function always causes a flush of the window server buffer.
116 @param aBitmap Bitmap to be filled with the screen image.
117 @return KErrNone if successful, otherwise one of the system-wide error codes. */
118 TInt CWsScreenDevice::CScrDevExtension::ComposeScreen(const CFbsBitmap& aBitmap) const
120 TInt bitmapHandle = aBitmap.Handle();
121 AddToBitmapArray(bitmapHandle);
122 TWsSdCmdCopyScreenToBitmap rectCompare(bitmapHandle);
123 return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap));