sl@0
|
1 |
// Copyright (c) 1998-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <graphics/lookuptable.h>
|
sl@0
|
17 |
#include <graphics/blendingalgorithms.h>
|
sl@0
|
18 |
#include <gdi.h>
|
sl@0
|
19 |
#include <palette.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
// Class TRgb Definition
|
sl@0
|
22 |
|
sl@0
|
23 |
/** Sets the red component.
|
sl@0
|
24 |
|
sl@0
|
25 |
@param aRed Red component (0 - 255). */
|
sl@0
|
26 |
EXPORT_C void TRgb::SetRed(TInt aRed)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
iValue&=0xff00ffff;
|
sl@0
|
29 |
iValue|=(aRed&0xff)<<16;
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
/** Sets the green component.
|
sl@0
|
33 |
|
sl@0
|
34 |
@param aGreen Green component (0 - 255). */
|
sl@0
|
35 |
EXPORT_C void TRgb::SetGreen(TInt aGreen)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
iValue&=0xffff00ff;
|
sl@0
|
38 |
iValue|=(aGreen&0xff)<<8;
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
/** Sets the blue component.
|
sl@0
|
42 |
|
sl@0
|
43 |
@param aBlue Blue component (0 - 255). */
|
sl@0
|
44 |
EXPORT_C void TRgb::SetBlue(TInt aBlue)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
iValue&=0xffffff00;
|
sl@0
|
47 |
iValue|=(aBlue&0xff);
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
/** Gets TRgb from 2 level grayscale.
|
sl@0
|
51 |
|
sl@0
|
52 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
53 |
and blue values are set to an appropriate level.
|
sl@0
|
54 |
|
sl@0
|
55 |
@param aGray2 Grayscale value to be converted.
|
sl@0
|
56 |
@return Equivalent 24 bit colour. Gray2 has only 2 levels (black and white),
|
sl@0
|
57 |
the function returns r=g=b=0 or r=g=b=255. */
|
sl@0
|
58 |
EXPORT_C TRgb TRgb::Gray2(TInt aGray2)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
if(aGray2) return(TRgb(0xffffff, 0xff));
|
sl@0
|
61 |
return(TRgb(0, 0xff));
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
/** Gets TRgb from 4 level grayscale.
|
sl@0
|
65 |
|
sl@0
|
66 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
67 |
and blue values are set to an appropriate level.
|
sl@0
|
68 |
|
sl@0
|
69 |
@param aGray4 Grayscale value to be converted.
|
sl@0
|
70 |
@return Equivalent 24 bit colour. Gray4 has 4 levels- the function returns
|
sl@0
|
71 |
r=g=b=85*c, where c=0,1,2, or 3. */
|
sl@0
|
72 |
EXPORT_C TRgb TRgb::Gray4(TInt aGray4)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
aGray4&=3;
|
sl@0
|
75 |
aGray4|=aGray4<<2;
|
sl@0
|
76 |
aGray4|=aGray4<<4;
|
sl@0
|
77 |
return(TRgb(aGray4,aGray4,aGray4));
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
/** Gets TRgb from 16 level grayscale.
|
sl@0
|
81 |
|
sl@0
|
82 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
83 |
and blue values are set to an appropriate level.
|
sl@0
|
84 |
|
sl@0
|
85 |
@param aGray16 Grayscale value to be converted.
|
sl@0
|
86 |
@return Equivalent 24 bit colour. Gray16 has 16 levels - the function returns
|
sl@0
|
87 |
r=g=b=17*c, where c=0, 1, ... 15. */
|
sl@0
|
88 |
EXPORT_C TRgb TRgb::Gray16(TInt aGray16)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
aGray16&=0xf;
|
sl@0
|
91 |
aGray16|=aGray16<<4;
|
sl@0
|
92 |
return(TRgb(aGray16,aGray16,aGray16));
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
/** Gets TRgb from 256 level grayscale.
|
sl@0
|
96 |
|
sl@0
|
97 |
The function takes a grayscale argument and return a TRgb whose red, green
|
sl@0
|
98 |
and blue values are set to an appropriate level.
|
sl@0
|
99 |
|
sl@0
|
100 |
@param aGray256 Grayscale value to be converted.
|
sl@0
|
101 |
@return Equivalent 24 bit colour. Gray256 has 256 levels- the function
|
sl@0
|
102 |
returns r=g=b=c, where c=0, 1, ... 255. */
|
sl@0
|
103 |
EXPORT_C TRgb TRgb::Gray256(TInt aGray256)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
aGray256&=0xff;
|
sl@0
|
106 |
return(TRgb(aGray256,aGray256,aGray256));
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
/** Gets TRgb from 4 bit colour index.
|
sl@0
|
110 |
|
sl@0
|
111 |
The function takes a 4 bit index into a colour palette and returns a TRgb
|
sl@0
|
112 |
whose red, green and blue values are set to an appropriate level.
|
sl@0
|
113 |
|
sl@0
|
114 |
@param aColor16 4 bit index into a colour palette
|
sl@0
|
115 |
@return Equivalent 24 bit colour. */
|
sl@0
|
116 |
EXPORT_C TRgb TRgb::Color16(TInt aColor16)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
return(TRgb(DynamicPalette::Color16array()[aColor16&0xf]));
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
/** Gets TRgb from 8 bit colour index.
|
sl@0
|
122 |
|
sl@0
|
123 |
The function takes an 8 bit index into a colour palette and returns a TRgb
|
sl@0
|
124 |
whose red, green and blue values are set to an appropriate level.
|
sl@0
|
125 |
|
sl@0
|
126 |
@param aColor256 8 bit index into a colour palette.
|
sl@0
|
127 |
@return Equivalent 24 bit colour. */
|
sl@0
|
128 |
EXPORT_C TRgb TRgb::Color256(TInt aColor256)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
return(TRgb(DynamicPalette::DefaultColor256Util()->iColorTable[aColor256&0xff]));
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
/** Gets TRgb from 4K colour index.
|
sl@0
|
134 |
|
sl@0
|
135 |
The function takes a 12 bit index into a colour palette and returns a TRgb
|
sl@0
|
136 |
whose red, green and blue values are set to an appropriate level.
|
sl@0
|
137 |
|
sl@0
|
138 |
@param aColor4K 12 bit index into a colour palette
|
sl@0
|
139 |
@return Equivalent 24 bit colour. */
|
sl@0
|
140 |
EXPORT_C TRgb TRgb::Color4K(TInt aColor4K)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
return _Color4K(aColor4K);
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
/** Gets TRgb from 64K colour index.
|
sl@0
|
146 |
|
sl@0
|
147 |
The function takes a 16 bit index into a colour palette and returns a TRgb
|
sl@0
|
148 |
whose red, green and blue values are set to an appropriate level.
|
sl@0
|
149 |
|
sl@0
|
150 |
@param aColor64K 16 bit index into a colour palette
|
sl@0
|
151 |
@return Equivalent 24 bit colour. */
|
sl@0
|
152 |
EXPORT_C TRgb TRgb::Color64K(TInt aColor64K)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
return _Color64K(aColor64K);
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
/** Gets TRgb from 16M colour index.
|
sl@0
|
158 |
|
sl@0
|
159 |
The function takes a 24 bit index into a colour palette and returns the TRgb
|
sl@0
|
160 |
whose red, green and blue values represent it exactly.
|
sl@0
|
161 |
|
sl@0
|
162 |
@param aColor16M 24 bit index into a colour palette
|
sl@0
|
163 |
@return The TRgb which represents the index exactly. */
|
sl@0
|
164 |
EXPORT_C TRgb TRgb::Color16M(TInt aColor16M)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
return _Color16M(aColor16M);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
170 |
based on the matching display mode.
|
sl@0
|
171 |
|
sl@0
|
172 |
@return The index (0 - 1) representing the nearest TRgb. */
|
sl@0
|
173 |
EXPORT_C TInt TRgb::Gray2() const
|
sl@0
|
174 |
{
|
sl@0
|
175 |
return _Gray2();
|
sl@0
|
176 |
}
|
sl@0
|
177 |
|
sl@0
|
178 |
/**Gets the index of the closest TRgb value to this,
|
sl@0
|
179 |
based on the matching display mode.
|
sl@0
|
180 |
|
sl@0
|
181 |
@return The index (0 - 3) representing the nearest TRgb. */
|
sl@0
|
182 |
EXPORT_C TInt TRgb::Gray4() const
|
sl@0
|
183 |
{
|
sl@0
|
184 |
return _Gray4();
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
188 |
based on the matching display mode.
|
sl@0
|
189 |
|
sl@0
|
190 |
@return The index (0 - 15) representing the nearest TRgb.*/
|
sl@0
|
191 |
EXPORT_C TInt TRgb::Gray16() const
|
sl@0
|
192 |
{
|
sl@0
|
193 |
return _Gray16();
|
sl@0
|
194 |
}
|
sl@0
|
195 |
|
sl@0
|
196 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
197 |
based on the matching display mode.
|
sl@0
|
198 |
|
sl@0
|
199 |
@return The index (0 - 255) representing the nearest TRgb.*/
|
sl@0
|
200 |
EXPORT_C TInt TRgb::Gray256() const
|
sl@0
|
201 |
{
|
sl@0
|
202 |
return _Gray256();
|
sl@0
|
203 |
}
|
sl@0
|
204 |
|
sl@0
|
205 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
206 |
based on the matching display mode.
|
sl@0
|
207 |
|
sl@0
|
208 |
@return The index (0 - 15) representing the nearest TRgb. */
|
sl@0
|
209 |
EXPORT_C TInt TRgb::Color16() const
|
sl@0
|
210 |
{
|
sl@0
|
211 |
TInt index = (iValue & 0x000000e0) << 1;
|
sl@0
|
212 |
index |= (iValue & 0x0000e000) >> 10;
|
sl@0
|
213 |
index |= (iValue & 0x00e00000) >> 21;
|
sl@0
|
214 |
return DynamicPalette::Color16inverse()[index];
|
sl@0
|
215 |
}
|
sl@0
|
216 |
|
sl@0
|
217 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
218 |
based on the matching display mode.
|
sl@0
|
219 |
|
sl@0
|
220 |
@return The index (0 - 255) representing the nearest TRgb. */
|
sl@0
|
221 |
EXPORT_C TInt TRgb::Color256() const
|
sl@0
|
222 |
{
|
sl@0
|
223 |
TInt index = (iValue & 0x000000f0) << 4;
|
sl@0
|
224 |
index |= (iValue & 0x0000f000) >> 8;
|
sl@0
|
225 |
index |= (iValue & 0x00f00000) >> 20;
|
sl@0
|
226 |
return DynamicPalette::DefaultColor256Util()->iInverseColorTable[index];
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
230 |
based on the matching display mode.
|
sl@0
|
231 |
|
sl@0
|
232 |
@return The index (0 - 4095) representing the nearest TRgb. */
|
sl@0
|
233 |
EXPORT_C TInt TRgb::Color4K() const
|
sl@0
|
234 |
{
|
sl@0
|
235 |
return _Color4K();
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
239 |
based on the matching display mode.
|
sl@0
|
240 |
|
sl@0
|
241 |
@return The index (0 - 65535) representing the nearest TRgb.*/
|
sl@0
|
242 |
EXPORT_C TInt TRgb::Color64K() const
|
sl@0
|
243 |
{
|
sl@0
|
244 |
return _Color64K();
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
/** Gets the index of the closest TRgb value to this,
|
sl@0
|
248 |
based on the matching display mode.
|
sl@0
|
249 |
|
sl@0
|
250 |
@return The index (0 - 16777215) representing the nearest TRgb.*/
|
sl@0
|
251 |
EXPORT_C TInt TRgb::Color16M() const
|
sl@0
|
252 |
{
|
sl@0
|
253 |
return _Color16M();
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
/** Gets the difference between two TRgbs.
|
sl@0
|
257 |
|
sl@0
|
258 |
This difference is defined as the sum of the absolute values of the difference
|
sl@0
|
259 |
in the red, green and blue components.
|
sl@0
|
260 |
|
sl@0
|
261 |
@param aColor The TRgb to be compared.
|
sl@0
|
262 |
@return The sum of the absolute value of the differences between the red, green
|
sl@0
|
263 |
and blue components. */
|
sl@0
|
264 |
EXPORT_C TInt TRgb::Difference(const TRgb& aColor) const
|
sl@0
|
265 |
{
|
sl@0
|
266 |
return(Abs((TInt)(aColor.Internal()&0xFF)-(TInt)(Internal()&0xFF))+
|
sl@0
|
267 |
(Abs((TInt)(aColor.Internal()&0xFF00)-(TInt)(Internal()&0xFF00))>>8)+
|
sl@0
|
268 |
(Abs((TInt)(aColor.Internal()&0xFF0000)-(TInt)(Internal()&0xFF0000))>>16));
|
sl@0
|
269 |
}
|
sl@0
|
270 |
|
sl@0
|
271 |
/** Internalises a TRgb object from a stream.
|
sl@0
|
272 |
|
sl@0
|
273 |
The presence of this function means that the standard templated stream operator>>()
|
sl@0
|
274 |
is available to internalise objects of this class.
|
sl@0
|
275 |
|
sl@0
|
276 |
@param aStream Stream from which the object is internalised.
|
sl@0
|
277 |
@see operator>>() */
|
sl@0
|
278 |
EXPORT_C void TRgb::InternalizeL(RReadStream& aStream)
|
sl@0
|
279 |
{
|
sl@0
|
280 |
TInt red=aStream.ReadUint8L();
|
sl@0
|
281 |
TInt green=aStream.ReadUint8L();
|
sl@0
|
282 |
TInt blue=aStream.ReadUint8L();
|
sl@0
|
283 |
*this=TRgb(red,green,blue);
|
sl@0
|
284 |
}
|
sl@0
|
285 |
|
sl@0
|
286 |
/** Externalises a TRgb object to a stream.
|
sl@0
|
287 |
|
sl@0
|
288 |
The presence of this function means that the standard templated stream operator<<()
|
sl@0
|
289 |
is available to externalise objects of this class.
|
sl@0
|
290 |
|
sl@0
|
291 |
@param aStream Stream to which the object is externalised. */
|
sl@0
|
292 |
EXPORT_C void TRgb::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
293 |
{
|
sl@0
|
294 |
aStream.WriteUint8L(Red());
|
sl@0
|
295 |
aStream.WriteUint8L(Green());
|
sl@0
|
296 |
aStream.WriteUint8L(Blue());
|
sl@0
|
297 |
}
|
sl@0
|
298 |
|
sl@0
|
299 |
/** Gets TRgb from 16MU colour index.
|
sl@0
|
300 |
The function takes a 24 bit colour value with eight bits for each
|
sl@0
|
301 |
component, blue in the low byte, and returns the TRgb
|
sl@0
|
302 |
whose red, green and blue values represent it exactly.
|
sl@0
|
303 |
@param a0RGB The color - 0, R, G, B bytes. / BGR0 - little endian format /
|
sl@0
|
304 |
@return The TRgb which represents the index exactly. */
|
sl@0
|
305 |
EXPORT_C TRgb TRgb::Color16MU(TInt a0RGB)
|
sl@0
|
306 |
{
|
sl@0
|
307 |
// R G B
|
sl@0
|
308 |
return _Color16MU(a0RGB);
|
sl@0
|
309 |
}
|
sl@0
|
310 |
|
sl@0
|
311 |
/** Gets the index of the closest TRgb value to this, based on the matching display mode.
|
sl@0
|
312 |
@return The index (0 - 16777215) representing the nearest TRgb. */
|
sl@0
|
313 |
EXPORT_C TInt TRgb::Color16MU() const
|
sl@0
|
314 |
{
|
sl@0
|
315 |
// R G B
|
sl@0
|
316 |
return _Color16MU();
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|
sl@0
|
319 |
|
sl@0
|
320 |
/** Sets the alpha component.
|
sl@0
|
321 |
|
sl@0
|
322 |
@param aAlpha Alpha component (0 - 255). */
|
sl@0
|
323 |
EXPORT_C void TRgb::SetAlpha(TInt aAlpha)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
iValue&=0x00ffffff;
|
sl@0
|
326 |
iValue|=(aAlpha << 24);
|
sl@0
|
327 |
}
|
sl@0
|
328 |
|
sl@0
|
329 |
|
sl@0
|
330 |
/** Gets TRgb from 16MA colour index.
|
sl@0
|
331 |
The function takes a 32 bit colour value with eight bits for each
|
sl@0
|
332 |
component, blue in the low byte, and returns the TRgb
|
sl@0
|
333 |
whose red, green, blue and alpha values represent it exactly.
|
sl@0
|
334 |
@param aARGB The color - A, R, G, B bytes. / BGRA - little endian format /
|
sl@0
|
335 |
@return The TRgb which represents the index exactly. */
|
sl@0
|
336 |
EXPORT_C TRgb TRgb::Color16MA(TUint aARGB)
|
sl@0
|
337 |
{
|
sl@0
|
338 |
return _Color16MA(aARGB);
|
sl@0
|
339 |
}
|
sl@0
|
340 |
|
sl@0
|
341 |
/** Gets the index of the closest TRgb value to this, based on the matching display mode.
|
sl@0
|
342 |
@return The index (0 - 16777215) representing the nearest TRgb. */
|
sl@0
|
343 |
EXPORT_C TUint TRgb::Color16MA() const
|
sl@0
|
344 |
{
|
sl@0
|
345 |
return _Color16MA();
|
sl@0
|
346 |
}
|
sl@0
|
347 |
|
sl@0
|
348 |
/** Gets TRgb from 16MAP colour index.
|
sl@0
|
349 |
The function takes a 32 bit colour value with eight bits for each
|
sl@0
|
350 |
component, blue in the low byte, and returns the TRgb
|
sl@0
|
351 |
whose red, green, and blue vales are divided by the alpha value.
|
sl@0
|
352 |
@param aARGB The pre-multiplied (EColor16MAP) color value.
|
sl@0
|
353 |
@return The TRgb which represents the color channel and alpha information. */
|
sl@0
|
354 |
/* static */
|
sl@0
|
355 |
EXPORT_C TRgb TRgb::Color16MAP(TUint aARGB)
|
sl@0
|
356 |
{
|
sl@0
|
357 |
const TUint16* ArTable = PtrTo16BitNormalisationTable();
|
sl@0
|
358 |
TRgb retColor;
|
sl@0
|
359 |
retColor.SetInternal(PMA2NonPMAPixel(aARGB, ArTable));
|
sl@0
|
360 |
return retColor;
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
/** Gets the index of the closest TRgb value to this, based on the matching display mode.
|
sl@0
|
364 |
pre-multiplies the alpha channels with the color channel.
|
sl@0
|
365 |
@return The pre-multiplied color value */
|
sl@0
|
366 |
EXPORT_C TUint TRgb::Color16MAP() const
|
sl@0
|
367 |
{
|
sl@0
|
368 |
return NonPMA2PMAPixel(iValue);
|
sl@0
|
369 |
}
|
sl@0
|
370 |
|
sl@0
|
371 |
|
sl@0
|
372 |
/** Tests whether the display mode specified is colour or greyscale.
|
sl@0
|
373 |
|
sl@0
|
374 |
@param aDispMode The display mode.
|
sl@0
|
375 |
@return ETrue if colour; EFalse if greyscale or monochrome. */
|
sl@0
|
376 |
EXPORT_C TBool TDisplayModeUtils::IsDisplayModeColor(TDisplayMode aDispMode)
|
sl@0
|
377 |
{
|
sl@0
|
378 |
return (aDispMode >= EColor16);
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
/** Tests whether the display mode specified is one of the valid values.
|
sl@0
|
382 |
|
sl@0
|
383 |
@param aDispMode The display mode to be tested.
|
sl@0
|
384 |
@return ETrue if aDispMode is valid; EFalse if not valid. */
|
sl@0
|
385 |
EXPORT_C TBool TDisplayModeUtils::IsDisplayModeValid(TDisplayMode aDispMode)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
return aDispMode >= ENone && aDispMode < EColorLast;
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
/** Gets the number of colours or shades of grey supported by the specified
|
sl@0
|
391 |
display mode.
|
sl@0
|
392 |
|
sl@0
|
393 |
For instance, a display mode of EGray4 returns 4, EColor4K returns 4096.
|
sl@0
|
394 |
|
sl@0
|
395 |
@param aDispMode The display mode.
|
sl@0
|
396 |
@return The number of colours/grey shades supported by the display mode. */
|
sl@0
|
397 |
EXPORT_C TInt TDisplayModeUtils::NumDisplayModeColors(TDisplayMode aDispMode)
|
sl@0
|
398 |
{
|
sl@0
|
399 |
switch (aDispMode)
|
sl@0
|
400 |
{
|
sl@0
|
401 |
case EGray2:
|
sl@0
|
402 |
return 2;
|
sl@0
|
403 |
case EGray4:
|
sl@0
|
404 |
return 4;
|
sl@0
|
405 |
case EGray16:
|
sl@0
|
406 |
case EColor16:
|
sl@0
|
407 |
return 16;
|
sl@0
|
408 |
case EGray256:
|
sl@0
|
409 |
case EColor256:
|
sl@0
|
410 |
return 256;
|
sl@0
|
411 |
case EColor4K:
|
sl@0
|
412 |
return 4096;
|
sl@0
|
413 |
case EColor64K:
|
sl@0
|
414 |
return 65536;
|
sl@0
|
415 |
case EColor16M:
|
sl@0
|
416 |
case EColor16MU:
|
sl@0
|
417 |
case EColor16MA:
|
sl@0
|
418 |
case EColor16MAP:
|
sl@0
|
419 |
return 16777216;
|
sl@0
|
420 |
default:
|
sl@0
|
421 |
return 0;
|
sl@0
|
422 |
};
|
sl@0
|
423 |
}
|
sl@0
|
424 |
|
sl@0
|
425 |
/** Gets the number of bits required by each pixel when displayed in the
|
sl@0
|
426 |
specified display mode.
|
sl@0
|
427 |
|
sl@0
|
428 |
@param aDispMode The display mode.
|
sl@0
|
429 |
@return The number of bits required by each pixel. */
|
sl@0
|
430 |
EXPORT_C TInt TDisplayModeUtils::NumDisplayModeBitsPerPixel(TDisplayMode aDispMode)
|
sl@0
|
431 |
{
|
sl@0
|
432 |
switch (aDispMode)
|
sl@0
|
433 |
{
|
sl@0
|
434 |
case EGray2:
|
sl@0
|
435 |
return 1;
|
sl@0
|
436 |
case EGray4:
|
sl@0
|
437 |
return 2;
|
sl@0
|
438 |
case EGray16:
|
sl@0
|
439 |
case EColor16:
|
sl@0
|
440 |
return 4;
|
sl@0
|
441 |
case EGray256:
|
sl@0
|
442 |
case EColor256:
|
sl@0
|
443 |
return 8;
|
sl@0
|
444 |
case EColor4K:
|
sl@0
|
445 |
return 12;
|
sl@0
|
446 |
case EColor64K:
|
sl@0
|
447 |
return 16;
|
sl@0
|
448 |
case EColor16M:
|
sl@0
|
449 |
return 24;
|
sl@0
|
450 |
case EColor16MU:
|
sl@0
|
451 |
case EColor16MA:
|
sl@0
|
452 |
case EColor16MAP:
|
sl@0
|
453 |
return 32;
|
sl@0
|
454 |
default:
|
sl@0
|
455 |
return 0;
|
sl@0
|
456 |
};
|
sl@0
|
457 |
}
|
sl@0
|
458 |
|
sl@0
|
459 |
//
|
sl@0
|
460 |
// TColor256Util
|
sl@0
|
461 |
//
|
sl@0
|
462 |
/** Initialises the two lookup tables using the specified palette.
|
sl@0
|
463 |
|
sl@0
|
464 |
@param aPalette The palette of colours used to initialise the colour lookup
|
sl@0
|
465 |
tables. */
|
sl@0
|
466 |
EXPORT_C void TColor256Util::Construct(const CPalette& aPalette)
|
sl@0
|
467 |
{
|
sl@0
|
468 |
TInt n = aPalette.Entries();
|
sl@0
|
469 |
if(n>256)
|
sl@0
|
470 |
n = 256;
|
sl@0
|
471 |
|
sl@0
|
472 |
TInt i;
|
sl@0
|
473 |
for(i=0; i<n; i++)
|
sl@0
|
474 |
iColorTable[i] = aPalette.GetEntry(i).Value();
|
sl@0
|
475 |
for(; i<256; i++)
|
sl@0
|
476 |
iColorTable[i] = 0;
|
sl@0
|
477 |
|
sl@0
|
478 |
i = 0;
|
sl@0
|
479 |
for(TInt b=0; b<0x100; b+=0x11)
|
sl@0
|
480 |
for(TInt g=0; g<0x100; g+=0x11)
|
sl@0
|
481 |
for(TInt r=0; r<0x100; r+=0x11)
|
sl@0
|
482 |
iInverseColorTable[i++] = (TUint8)aPalette.NearestIndex(TRgb(r,g,b));
|
sl@0
|
483 |
}
|
sl@0
|
484 |
|
sl@0
|
485 |
/** Gets the entry from the inverse colour lookup table for the colour that most
|
sl@0
|
486 |
closely matches the specified TRgb value.
|
sl@0
|
487 |
|
sl@0
|
488 |
Entries in the inverse colour lookup table are indices into the palette that
|
sl@0
|
489 |
the object was created with. Essentially, this function matches aRgb to the
|
sl@0
|
490 |
index of the nearest colour in the palette.
|
sl@0
|
491 |
|
sl@0
|
492 |
@param aRgb The conversion colour.
|
sl@0
|
493 |
@return The index of the nearest colour to aRgb in the palette. */
|
sl@0
|
494 |
EXPORT_C TInt TColor256Util::Color256(TRgb aRgb) const
|
sl@0
|
495 |
{
|
sl@0
|
496 |
TInt index = (aRgb.Value() & 0x000000f0) >> 4;
|
sl@0
|
497 |
index |= (aRgb.Value() & 0x0000f000) >> 8;
|
sl@0
|
498 |
index |= (aRgb.Value() & 0x00f00000) >> 12;
|
sl@0
|
499 |
return iInverseColorTable[index];
|
sl@0
|
500 |
}
|
sl@0
|
501 |
|
sl@0
|
502 |
/** Gets the entries from the inverse colour lookup table for the colours that
|
sl@0
|
503 |
most closely match the specified TRgb values.
|
sl@0
|
504 |
|
sl@0
|
505 |
@param aDestination On return, a pointer to a buffer containing the entries
|
sl@0
|
506 |
from the inverse colour lookup table.
|
sl@0
|
507 |
@param aSource Pointer to the first TRgb value to match.
|
sl@0
|
508 |
@param aNumPixels The number of TRgb values to match. */
|
sl@0
|
509 |
EXPORT_C void TColor256Util::Color256(TUint8* aDestination,const TRgb* aSource,TInt aNumPixels) const
|
sl@0
|
510 |
{
|
sl@0
|
511 |
TUint8* limit = aDestination+aNumPixels;
|
sl@0
|
512 |
while(aDestination<limit)
|
sl@0
|
513 |
{
|
sl@0
|
514 |
TInt value = (*aSource++).Value();
|
sl@0
|
515 |
TInt index = (value & 0x000000f0) >> 4;
|
sl@0
|
516 |
index |= (value & 0x0000f000) >> 8;
|
sl@0
|
517 |
index |= (value & 0x00f00000) >> 12;
|
sl@0
|
518 |
*(aDestination++) = iInverseColorTable[index];
|
sl@0
|
519 |
}
|
sl@0
|
520 |
}
|
sl@0
|
521 |
|
sl@0
|
522 |
/** Returns a pointer to the system default 256 colour palette.
|
sl@0
|
523 |
|
sl@0
|
524 |
@return Pointer to the system default 256 colour palette. */
|
sl@0
|
525 |
EXPORT_C const TColor256Util* TColor256Util::Default()
|
sl@0
|
526 |
{
|
sl@0
|
527 |
return DynamicPalette::DefaultColor256Util();
|
sl@0
|
528 |
}
|
sl@0
|
529 |
|