sl@0
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// This module implemente the class use for a 8 bpp color screen.
|
sl@0
|
15 |
// Include files
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
/********************************************************************/
|
sl@0
|
23 |
#include <bitdraw.h>
|
sl@0
|
24 |
#include "scdraw.h"
|
sl@0
|
25 |
#include <hal.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
/********************************************************************/
|
sl@0
|
28 |
/* Implementation of CDrawEightBppScreenBitmapColor class */
|
sl@0
|
29 |
/********************************************************************/
|
sl@0
|
30 |
void CDrawEightBppScreenBitmapColor::SetSize(const TSize& aSize)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
CDrawBitmap::SetSize(aSize);
|
sl@0
|
33 |
__ASSERT_DEBUG(iSize == aSize, User::Invariant());
|
sl@0
|
34 |
iLongWidth = CDrawBitmap::iScanLineWords * 4;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
void CDrawEightBppScreenBitmapColor::SetDisplayMode(CFbsDrawDevice* aDrawDevice)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
CopyOldSettings(aDrawDevice) ;
|
sl@0
|
39 |
InitScreen() ;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
TInt CDrawEightBppScreenBitmapColor::HorzTwipsPerThousandPixels() const
|
sl@0
|
43 |
{
|
sl@0
|
44 |
if (iSize.iWidth == 0)
|
sl@0
|
45 |
return 0 ;
|
sl@0
|
46 |
TMachineInfoV1Buf miBuf ;
|
sl@0
|
47 |
UserHal::MachineInfo(miBuf) ;
|
sl@0
|
48 |
return miBuf().iPhysicalScreenSize.iWidth * 1000 / iSize.iWidth ;
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
TInt CDrawEightBppScreenBitmapColor::VertTwipsPerThousandPixels() const
|
sl@0
|
52 |
{
|
sl@0
|
53 |
if (iSize.iHeight == 0)
|
sl@0
|
54 |
return 0 ;
|
sl@0
|
55 |
|
sl@0
|
56 |
TMachineInfoV1Buf miBuf ;
|
sl@0
|
57 |
UserHal::MachineInfo(miBuf) ;
|
sl@0
|
58 |
return miBuf().iPhysicalScreenSize.iHeight * 1000 / iSize.iHeight ;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
Initialises the palette
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
TInt CDrawEightBppScreenBitmapColor::InitScreen()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
|
sl@0
|
67 |
__ASSERT_ALWAYS(iPaletteAddress!=NULL, Panic(EScreenDriverPanicNullPointer)) ;
|
sl@0
|
68 |
|
sl@0
|
69 |
/* Fill the palette to support 8 Bpp color */
|
sl@0
|
70 |
TUint16* palettePtr = iPaletteAddress ;
|
sl@0
|
71 |
for (TInt count = 0; count < KEightBppPaletteEntries; count++)
|
sl@0
|
72 |
*palettePtr++ = TRgb::Color256(count)._Color4K() | KEightBppPixelBitSize ;
|
sl@0
|
73 |
|
sl@0
|
74 |
return KErrNone ;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Constructs the CDrawEightBppScreenBitmapColor object.
|
sl@0
|
79 |
@param aScreenNo Screen number. It will be used in HAL::Get() calls.
|
sl@0
|
80 |
@param aBitmapAddress The screen memory address.
|
sl@0
|
81 |
@param aSize Screen size
|
sl@0
|
82 |
@return System-wide error codes, KErrNone if the construction was successfull.
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
TInt CDrawEightBppScreenBitmapColor::ConstructScreenL(TInt aScreenNo, TAny* aBitmapAddress, TSize aSize)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
iScreenNo = aScreenNo;
|
sl@0
|
87 |
TInt displayMode;
|
sl@0
|
88 |
|
sl@0
|
89 |
TInt ret = HAL::Get(aScreenNo, HALData::EDisplayMode, displayMode);
|
sl@0
|
90 |
if (ret != KErrNone)
|
sl@0
|
91 |
return ret;
|
sl@0
|
92 |
|
sl@0
|
93 |
TInt linepitchInBytes = displayMode;
|
sl@0
|
94 |
ret = HAL::Get(aScreenNo,HALData::EDisplayOffsetBetweenLines,linepitchInBytes);
|
sl@0
|
95 |
if (ret != KErrNone)
|
sl@0
|
96 |
return ret;
|
sl@0
|
97 |
|
sl@0
|
98 |
CDrawBitmap::iScanLineWords = linepitchInBytes / 4;
|
sl@0
|
99 |
ret = CDrawEightBppBitmapColor::Construct(aSize);
|
sl@0
|
100 |
if (ret != KErrNone)
|
sl@0
|
101 |
return ret ;
|
sl@0
|
102 |
|
sl@0
|
103 |
/* Set the pointer on the first palette entry */
|
sl@0
|
104 |
iPaletteAddress = (TUint16*)aBitmapAddress ;
|
sl@0
|
105 |
|
sl@0
|
106 |
TInt offsetToFirstPixel = displayMode;
|
sl@0
|
107 |
ret = HAL::Get(aScreenNo,HALData::EDisplayOffsetToFirstPixel, offsetToFirstPixel);
|
sl@0
|
108 |
if (ret != KErrNone)
|
sl@0
|
109 |
return ret;
|
sl@0
|
110 |
iBits = (TUint32*)((TUint32)aBitmapAddress + offsetToFirstPixel);
|
sl@0
|
111 |
|
sl@0
|
112 |
return KErrNone ;
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
void CDrawEightBppScreenBitmapColor::OrientationsAvailable(TBool aOrientation[4])
|
sl@0
|
116 |
{
|
sl@0
|
117 |
aOrientation[EOrientationNormal] = ETrue ;
|
sl@0
|
118 |
aOrientation[EOrientationRotated90] = ETrue ;
|
sl@0
|
119 |
aOrientation[EOrientationRotated180] = ETrue ;
|
sl@0
|
120 |
aOrientation[EOrientationRotated270] = ETrue ;
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
TBool CDrawEightBppScreenBitmapColor::SetOrientation(TOrientation aOrientation)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
iOrientation = aOrientation ;
|
sl@0
|
126 |
return ETrue ;
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
TInt CDrawEightBppScreenBitmapColor::SetCustomPalette(const CPalette* aPalette)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
TInt ret = CDrawEightBppBitmapColor::SetCustomPalette(aPalette) ;
|
sl@0
|
132 |
|
sl@0
|
133 |
if (ret == KErrNone)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
TInt index = 0 ;
|
sl@0
|
136 |
TUint16* palettePtr = iPaletteAddress ;
|
sl@0
|
137 |
const TUint16* const palettePtrLimit = iPaletteAddress + KEightBppPaletteEntries ;
|
sl@0
|
138 |
|
sl@0
|
139 |
*palettePtr++ = IndexToColor(index++)._Color4K() | KEightBppPixelBitSize ;
|
sl@0
|
140 |
|
sl@0
|
141 |
while (palettePtr < palettePtrLimit)
|
sl@0
|
142 |
*palettePtr++ = IndexToColor(index++)._Color4K() ;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
return ret ;
|
sl@0
|
145 |
}
|