Update contrib.
1 // Copyright (c) 2006-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 // This module implements the class for a 32a bpp unpack color screen.
28 void CDrawThirtyTwoBppScreenBitmapAlpha::SetSize(const TSize& aSize)
30 CDrawBitmap::SetSize(aSize);
31 __ASSERT_DEBUG(iSize == aSize, User::Invariant());
32 iLongWidth = iScanLineWords;
35 void CDrawThirtyTwoBppScreenBitmapAlpha::SetDisplayMode(CFbsDrawDevice* aDrawDevice)
37 CopyOldSettings(aDrawDevice) ;
41 TInt CDrawThirtyTwoBppScreenBitmapAlpha::HorzTwipsPerThousandPixels() const
43 if (iSize.iWidth == 0)
47 TInt r = HAL::Get(iScreenNo, HAL::EDisplayMode, displayMode);
51 TInt width = displayMode;
52 r = HAL::Get(iScreenNo, HAL::EDisplayXTwips, width);
56 return (width * 1000) / iSize.iWidth;
59 TInt CDrawThirtyTwoBppScreenBitmapAlpha::VertTwipsPerThousandPixels() const
61 if (iSize.iHeight == 0)
65 TInt r = HAL::Get(iScreenNo, HAL::EDisplayMode, displayMode);
68 TInt height = displayMode;
69 r = HAL::Get(iScreenNo, HAL::EDisplayYTwips, height);
73 return (height * 1000) / iSize.iHeight;
76 TInt CDrawThirtyTwoBppScreenBitmapAlpha::InitScreen()
81 TInt CDrawThirtyTwoBppScreenBitmapAlpha::ConstructScreenL(TInt aScreenNo, TAny* aBitmapAddress, TSize aSize)
83 iScreenNo = aScreenNo;
85 TInt ret = HAL::Get(aScreenNo, HALData::EDisplayMode, displayMode);
89 TInt linepitchInBytes = displayMode;
90 ret = HAL::Get(aScreenNo,HALData::EDisplayOffsetBetweenLines,linepitchInBytes);
94 iScanLineWords = linepitchInBytes / 4;
95 ret = CDrawThirtyTwoBppBitmapAlpha::Construct(aSize);
99 TInt offsetToFirstPixel = displayMode;
100 ret = HAL::Get(aScreenNo,HALData::EDisplayOffsetToFirstPixel, offsetToFirstPixel);
104 iBits = (TUint32*)((TUint32)aBitmapAddress + offsetToFirstPixel);
108 void CDrawThirtyTwoBppScreenBitmapAlpha::OrientationsAvailable(TBool aOrientation[4])
110 aOrientation[EOrientationNormal] = ETrue ;
111 aOrientation[EOrientationRotated90] = ETrue ;
112 aOrientation[EOrientationRotated180] = ETrue ;
113 aOrientation[EOrientationRotated270] = ETrue ;
116 TBool CDrawThirtyTwoBppScreenBitmapAlpha::SetOrientation(TOrientation aOrientation)
118 iOrientation = aOrientation ;