epoc32/include/eikcolor.hrh
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
     1.1 --- a/epoc32/include/eikcolor.hrh	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/eikcolor.hrh	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,512 @@
     1.4 -eikcolor.hrh
     1.5 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +// All rights reserved.
     1.7 +// This component and the accompanying materials are made available
     1.8 +// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     1.9 +// which accompanies this distribution, and is available
    1.10 +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.11 +//
    1.12 +// Initial Contributors:
    1.13 +// Nokia Corporation - initial contribution.
    1.14 +//
    1.15 +// Contributors:
    1.16 +//
    1.17 +// Description:
    1.18 +// RGB colour constant: black.
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +
    1.23 +
    1.24 +/**
    1.25 + @publishedAll 
    1.26 + @released 
    1.27 +*/
    1.28 +#define KEikRgbBlack				{red=0x00;green=0x00;blue=0x00;}
    1.29 +
    1.30 +/** RGB colour constant: dark gray.
    1.31 +@publishedAll 
    1.32 +@released 
    1.33 +*/
    1.34 +#define KEikRgbDarkGray				{red=0x55;green=0x55;blue=0x55;}
    1.35 +
    1.36 +/** RGB colour constant: dark red.
    1.37 +@publishedAll 
    1.38 +@released 
    1.39 +*/
    1.40 +#define KEikRgbDarkRed				{red=0x80;green=0x00;blue=0x00;}
    1.41 +
    1.42 +/** RGB colour constant: dark green.
    1.43 +@publishedAll 
    1.44 +@released 
    1.45 +*/
    1.46 +#define KEikRgbDarkGreen			{red=0x00;green=0x80;blue=0x00;}
    1.47 +
    1.48 +/** RGB colour constant: dark yellow.
    1.49 +@publishedAll 
    1.50 +@released 
    1.51 +*/
    1.52 +#define KEikRgbDarkYellow			{red=0x80;green=0x80;blue=0x00;}
    1.53 +
    1.54 +/** RGB colour constant: dark blue.
    1.55 +@publishedAll 
    1.56 +@released 
    1.57 +*/
    1.58 +#define KEikRgbDarkBlue				{red=0x00;green=0x00;blue=0x80;}
    1.59 +
    1.60 +/** RGB colour constant: dark magenta.
    1.61 +@publishedAll 
    1.62 +@released 
    1.63 +*/
    1.64 +#define KEikRgbDarkMagenta			{red=0x80;green=0x00;blue=0x80;}
    1.65 +
    1.66 +/** RGB colour constant: dark cyan.
    1.67 +@publishedAll 
    1.68 +@released 
    1.69 +*/
    1.70 +#define KEikRgbDarkCyan				{red=0x00;green=0x80;blue=0x80;}
    1.71 +
    1.72 +/** RGB colour constant: red.
    1.73 +@publishedAll 
    1.74 +@released 
    1.75 +*/
    1.76 +#define KEikRgbRed					{red=0xff;green=0x00;blue=0x00;}
    1.77 +
    1.78 +/** RGB colour constant: green.
    1.79 +@publishedAll 
    1.80 +@released 
    1.81 +*/
    1.82 +#define KEikRgbGreen				{red=0x00;green=0xff;blue=0x00;}
    1.83 +
    1.84 +/** RGB colour constant: yellow.
    1.85 +@publishedAll 
    1.86 +@released 
    1.87 +*/
    1.88 +#define KEikRgbYellow				{red=0xff;green=0xff;blue=0x00;}
    1.89 +
    1.90 +/** RGB colour constant: blue.
    1.91 +@publishedAll 
    1.92 +@released 
    1.93 +*/
    1.94 +#define KEikRgbBlue					{red=0x00;green=0x00;blue=0xff;}
    1.95 +
    1.96 +/** RGB colour constant: magenta.
    1.97 +@publishedAll 
    1.98 +@released 
    1.99 +*/
   1.100 +#define KEikRgbMagenta				{red=0xff;green=0x00;blue=0xff;}
   1.101 +
   1.102 +/** RGB colour constant: cyan.
   1.103 +@publishedAll 
   1.104 +@released 
   1.105 +*/
   1.106 +#define KEikRgbCyan					{red=0x00;green=0xff;blue=0xff;}
   1.107 +
   1.108 +/** RGB colour constant: gray.
   1.109 +@publishedAll 
   1.110 +@released 
   1.111 +*/
   1.112 +#define KEikRgbGray					{red=0xaa;green=0xaa;blue=0xaa;}
   1.113 +
   1.114 +/** RGB colour constant: dithered light gray.
   1.115 +@publishedAll 
   1.116 +@released 
   1.117 +*/
   1.118 +#define KEikRgbDitheredLightGray	{red=0xcc;green=0xcc;blue=0xcc;}
   1.119 +
   1.120 +/** RGB colour constant: 1-in-4 dithered gray.
   1.121 +@publishedAll 
   1.122 +@released 
   1.123 +*/
   1.124 +#define KEikRgb1in4DitheredGray		{red=0xed;green=0xed;blue=0xed;}
   1.125 +
   1.126 +/** RGB colour constant: white.
   1.127 +@publishedAll 
   1.128 +@released 
   1.129 +*/
   1.130 +#define KEikRgbWhite				{red=0xff;green=0xff;blue=0xff;}
   1.131 +
   1.132 +
   1.133 +/** RGB colour constant: Symbian green.
   1.134 +@publishedAll 
   1.135 +@released 
   1.136 +*/
   1.137 +#define KEikRgbSymbianGreen 		{red=0x00;green=153;blue=153;}
   1.138 +
   1.139 +/** RGB colour constant: Symbian light green.
   1.140 +@publishedAll 
   1.141 +@released 
   1.142 +*/
   1.143 +#define KEikRgbSymbianGreenLight	{red=0x00;green=183;blue=183;}
   1.144 +
   1.145 +/** RGB colour constant: Symbian blue.
   1.146 +@publishedAll 
   1.147 +@released 
   1.148 +*/
   1.149 +#define KEikRgbSymbianBlue 			{red=0x00;green=102;blue=153;}
   1.150 +
   1.151 +/** RGB colour constant: Symbian dark blue.
   1.152 +@publishedAll 
   1.153 +@released 
   1.154 +*/
   1.155 +#define KEikRgbSymbianBlueDark		{red=0x00;green=72;blue=123;}
   1.156 +
   1.157 +/** RGB colour constant: Symbian orange.
   1.158 +@publishedAll 
   1.159 +@released 
   1.160 +*/
   1.161 +#define KEikRgbSymbianOrange		{red=255;green=218;blue=155;}
   1.162 +
   1.163 +
   1.164 +/** Logical colour value for use in resources: The colour of a window's background. 
   1.165 +@publishedAll 
   1.166 +@released 
   1.167 +*/
   1.168 +#define EEikColorWindowBackground						0
   1.169 +
   1.170 +/** Logical colour value for use in resources: The colour of text in a window. 
   1.171 +@publishedAll 
   1.172 +@released 
   1.173 +*/
   1.174 +#define EEikColorWindowText								1
   1.175 +
   1.176 +/** Logical colour value for use in resources: The colour of the background contents of a control. 
   1.177 +@publishedAll 
   1.178 +@released 
   1.179 +*/
   1.180 +#define EEikColorControlBackground						2
   1.181 +
   1.182 +/** Logical colour value for use in resources: The colour of the text inside a control. 
   1.183 +@publishedAll 
   1.184 +@released 
   1.185 +*/
   1.186 +#define EEikColorControlText							3 
   1.187 +
   1.188 +/** Logical colour value for use in resources: The background colour of a control's border. 
   1.189 +@publishedAll 
   1.190 +@released 
   1.191 +*/
   1.192 +#define EEikColorControlSurroundBackground				4
   1.193 +
   1.194 +/** Logical colour value for use in resources: The colour of text in a control's border. 
   1.195 +@publishedAll 
   1.196 +@released 
   1.197 +*/
   1.198 +#define EEikColorControlSurroundText					5
   1.199 +
   1.200 +/** Logical colour value for use in resources: The colour of a control's background when highlighted for selection. 
   1.201 +@publishedAll 
   1.202 +@released 
   1.203 +*/
   1.204 +#define EEikColorControlHighlightBackground				6 
   1.205 +
   1.206 +/** Logical colour value for use in resources: The colour of the text in a control when highlighted for selection. 
   1.207 +@publishedAll 
   1.208 +@released 
   1.209 +*/
   1.210 +#define EEikColorControlHighlightText					7
   1.211 +
   1.212 +/** Logical colour value for use in resources: The colour of a control's background when dimmed. 
   1.213 +@publishedAll 
   1.214 +@released 
   1.215 +*/
   1.216 +#define EEikColorControlDimmedBackground				8
   1.217 +
   1.218 +/** Logical colour value for use in resources: The colour of the text in a control when dimmed. 
   1.219 +@publishedAll 
   1.220 +@released 
   1.221 +*/
   1.222 +#define EEikColorControlDimmedText						9
   1.223 +
   1.224 +/** Logical colour value for use in resources: The colour of a control's background when dimmed and highlighted for selection. 
   1.225 +@publishedAll 
   1.226 +@released 
   1.227 +*/
   1.228 +#define EEikColorControlDimmedHighlightBackground		10
   1.229 +
   1.230 +/** Logical colour value for use in resources: The colour of the text in a control when dimmed and highlighted for selection. 
   1.231 +@publishedAll 
   1.232 +@released 
   1.233 +*/
   1.234 +#define EEikColorControlDimmedHighlightText				11
   1.235 +
   1.236 +/** Logical colour value for use in resources: The colour of a dialog's background. 
   1.237 +@publishedAll 
   1.238 +@released 
   1.239 +*/
   1.240 +#define EEikColorDialogBackground						12
   1.241 +
   1.242 +/** Logical colour value for use in resources: The colour of text inside a dialog. 
   1.243 +@publishedAll 
   1.244 +@released 
   1.245 +*/
   1.246 +#define EEikColorDialogText								13
   1.247 +
   1.248 +/** Logical colour value for use in resources: A dialog title's background colour. 
   1.249 +@publishedAll 
   1.250 +@released 
   1.251 +*/
   1.252 +#define EEikColorDialogTitle							14
   1.253 +
   1.254 +/** Logical colour value for use in resources: A dialog title's background colour when pressed. 
   1.255 +@publishedAll 
   1.256 +@released 
   1.257 +*/
   1.258 +#define EEikColorDialogTitlePressed						15
   1.259 +
   1.260 +/** Logical colour value for use in resources: The text colour in a dialog's title. 
   1.261 +@publishedAll 
   1.262 +@released 
   1.263 +*/
   1.264 +#define EEikColorDialogTitleText						16
   1.265 +
   1.266 +/** Logical colour value for use in resources: The text colour in a dialog's title when pressed. 
   1.267 +@publishedAll 
   1.268 +@released 
   1.269 +*/
   1.270 +#define EEikColorDialogTitleTextPressed					17
   1.271 +
   1.272 +/** Logical colour value for use in resources: The colour of the menubar's background. 
   1.273 +@publishedAll 
   1.274 +@released 
   1.275 +*/
   1.276 +#define EEikColorMenubarBackground						18
   1.277 +
   1.278 +/** Logical colour value for use in resources: The colour of text in the menubar. 
   1.279 +@publishedAll 
   1.280 +@released 
   1.281 +*/
   1.282 +#define EEikColorMenubarText							19
   1.283 +
   1.284 +/** Logical colour value for use in resources: The colour of the menubar title's background. 
   1.285 +@publishedAll 
   1.286 +@released 
   1.287 +*/
   1.288 +#define EEikColorMenubarTitleBackground					20
   1.289 +
   1.290 +/** Logical colour value for use in resources: The colour of text in the menubar title. 
   1.291 +@publishedAll 
   1.292 +@released 
   1.293 +*/
   1.294 +#define EEikColorMenubarTitleText						21
   1.295 +
   1.296 +/** Logical colour value for use in resources: The colour of the menupane's background. 
   1.297 +@publishedAll 
   1.298 +@released 
   1.299 +*/
   1.300 +#define EEikColorMenuPaneBackground						22
   1.301 +
   1.302 +/** Logical colour value for use in resources: The colour of text in the menu pane. 
   1.303 +@publishedAll 
   1.304 +@released 
   1.305 +*/
   1.306 +#define EEikColorMenuPaneText							23
   1.307 +
   1.308 +/** Logical colour value for use in resources: The colour of the menu pane background when highlighted for selection. 
   1.309 +@publishedAll 
   1.310 +@released 
   1.311 +*/
   1.312 +#define EEikColorMenuPaneHighlight						24
   1.313 +
   1.314 +/** Logical colour value for use in resources: The colour of text in the menu pane when highlighted for selection. 
   1.315 +@publishedAll 
   1.316 +@released 
   1.317 +*/
   1.318 +#define EEikColorMenuPaneTextHighlight					25
   1.319 +
   1.320 +/** Logical colour value for use in resources: The colour of the menu pane background when dimmed and highlighted. 
   1.321 +@publishedAll 
   1.322 +@released 
   1.323 +*/
   1.324 +#define EEikColorMenuPaneDimmedHighlight				26
   1.325 +
   1.326 +/** Logical colour value for use in resources: The colour of text in the menu pane when dimmed. 
   1.327 +@publishedAll 
   1.328 +@released 
   1.329 +*/
   1.330 +#define EEikColorMenuPaneDimmedText						27
   1.331 +
   1.332 +/** Logical colour value for use in resources: The colour of text in the menu pane when dimmed and highlighted for selection. 
   1.333 +@publishedAll 
   1.334 +@released 
   1.335 +*/
   1.336 +#define EEikColorMenuPaneDimmedTextHighlight			28
   1.337 +
   1.338 +/** Logical colour value for use in resources: The colour of the button background, when the button is in the unset state. 
   1.339 +@publishedAll 
   1.340 +@released 
   1.341 +*/
   1.342 +#define EEikColorButtonFaceClear						29
   1.343 +
   1.344 +/** Logical colour value for use in resources: The colour of the button background when the button is in the set state. 
   1.345 +@publishedAll 
   1.346 +@released 
   1.347 +*/
   1.348 +#define EEikColorButtonFaceSet							30
   1.349 +
   1.350 +/** Logical colour value for use in resources: The colour of the button background when the button is in the set state and is pressed. 
   1.351 +@publishedAll 
   1.352 +@released 
   1.353 +*/
   1.354 +#define EEikColorButtonFaceSetPressed					31
   1.355 +
   1.356 +/** Logical colour value for use in resources: The colour of the button background when the button is in the unset state and is pressed. 
   1.357 +@publishedAll 
   1.358 +@released 
   1.359 +*/
   1.360 +#define EEikColorButtonFaceClearPressed					32
   1.361 +
   1.362 +/** Logical colour value for use in resources: The colour of the button text. 
   1.363 +@publishedAll 
   1.364 +@released 
   1.365 +*/
   1.366 +#define EEikColorButtonText								33
   1.367 +
   1.368 +/** Logical colour value for use in resources: The colour of the button text when the button is pressed. 
   1.369 +@publishedAll 
   1.370 +@released 
   1.371 +*/
   1.372 +#define EEikColorButtonTextPressed						34
   1.373 +
   1.374 +/** Logical colour value for use in resources: The colour of the button text when the button is dimmed. 
   1.375 +@publishedAll 
   1.376 +@released 
   1.377 +*/
   1.378 +#define EEikColorButtonTextDimmed						35		
   1.379 +
   1.380 +/** Logical colour value for use in resources: The colour of the message window foreground. 
   1.381 +@publishedAll 
   1.382 +@released 
   1.383 +*/
   1.384 +#define EEikColorMsgWinForeground						36
   1.385 +
   1.386 +/** Logical colour value for use in resources: The colour of the message window background. 
   1.387 +@publishedAll 
   1.388 +@released 
   1.389 +*/
   1.390 +#define EEikColorMsgWinBackground						37
   1.391 +
   1.392 +/** Logical colour value for use in resources: The colour of the scroll bar border. 
   1.393 +@publishedAll 
   1.394 +@released 
   1.395 +*/
   1.396 +#define EEikColorScrollBarBorder						38
   1.397 +
   1.398 +/** Logical colour value for use in resources: The colour of the scroll bar shaft background. 
   1.399 +@publishedAll 
   1.400 +@released 
   1.401 +*/
   1.402 +#define EEikColorScrollBarShaft							39
   1.403 +
   1.404 +/** Logical colour value for use in resources: The colour of the scroll bar shaft background when dimmed. 
   1.405 +@publishedAll 
   1.406 +@released 
   1.407 +*/
   1.408 +#define EEikColorScrollBarShaftDimmed					40
   1.409 +
   1.410 +/** Logical colour value for use in resources: The colour of the scroll bar shaft background when pressed. 
   1.411 +@publishedAll 
   1.412 +@released 
   1.413 +*/
   1.414 +#define EEikColorScrollBarShaftPressed					41
   1.415 +
   1.416 +/** Logical colour value for use in resources: The colour of the background for scroll bars with no thumb and no shaft. 
   1.417 +@publishedAll 
   1.418 +@released 
   1.419 +*/
   1.420 +#define EEikColorScrollBarNoShaftOrThumb				42
   1.421 +
   1.422 +/** Logical colour value for use in resources: The colour of scroll bar buttons. 
   1.423 +@publishedAll 
   1.424 +@released 
   1.425 +*/
   1.426 +#define EEikColorScrollButtonIcon						43
   1.427 +
   1.428 +/** Logical colour value for use in resources: The colour of scroll bar buttons when pressed. 
   1.429 +@publishedAll 
   1.430 +@released 
   1.431 +*/
   1.432 +#define EEikColorScrollButtonIconPressed				44
   1.433 +
   1.434 +/** Logical colour value for use in resources: The colour of scroll bar buttons when dimmed. 
   1.435 +@publishedAll 
   1.436 +@released 
   1.437 +*/
   1.438 +#define EEikColorScrollButtonIconDimmed					45
   1.439 +
   1.440 +/** Logical colour value for use in resources: The colour of a scroll bar thumb's background. 
   1.441 +@publishedAll 
   1.442 +@released 
   1.443 +*/
   1.444 +#define EEikColorScrollButtonThumbBackground			46
   1.445 +
   1.446 +/** Logical colour value for use in resources: The colour of a scroll bar thumb's background when pressed. 
   1.447 +@publishedAll 
   1.448 +@released 
   1.449 +*/
   1.450 +#define EEikColorScrollButtonThumbBackgroundPressed		47
   1.451 +
   1.452 +/** Logical colour value for use in resources: The colour of a scroll bar thumb's background when dimmed. 
   1.453 +@publishedAll 
   1.454 +@released 
   1.455 +*/
   1.456 +#define EEikColorScrollThumbDimmed						48
   1.457 +
   1.458 +/** Logical colour value for use in resources: The colour of a scroll bar thumb's edge. 
   1.459 +@publishedAll 
   1.460 +@released 
   1.461 +*/
   1.462 +#define EEikColorScrollThumbEdge						49
   1.463 +
   1.464 +/** Logical colour value for use in resources: The colour of a toolbar's background. 
   1.465 +@publishedAll 
   1.466 +@released 
   1.467 +*/
   1.468 +#define EEikColorToolbarBackground						50
   1.469 +
   1.470 +/** Logical colour value for use in resources: The colour of the text in a toolbar. 
   1.471 +@publishedAll 
   1.472 +@released 
   1.473 +*/
   1.474 +#define EEikColorToolbarText							51
   1.475 +
   1.476 +/** Logical colour value for use in resources: The colour of a status pane's background. 
   1.477 +@publishedAll 
   1.478 +@released 
   1.479 +*/
   1.480 +#define EEikColorStatusPaneBackground					52
   1.481 +
   1.482 +/** Logical colour value for use in resources: The colour of the text in a status pane. 
   1.483 +@publishedAll 
   1.484 +@released 
   1.485 +*/
   1.486 +#define EEikColorStatusPaneText							53
   1.487 +
   1.488 +/** Logical colour value for use in resources: The colour of the text in a label. 
   1.489 +@publishedAll 
   1.490 +@released 
   1.491 +*/
   1.492 +#define EEikColorLabelText								54
   1.493 +
   1.494 +/** Logical colour value for use in resources: The colour of emphasised text in a label. 
   1.495 +@publishedAll 
   1.496 +@released 
   1.497 +*/
   1.498 +#define EEikColorLabelTextEmphasis						55
   1.499 +
   1.500 +/** Logical colour value for use in resources: The colour of the text in a label when dimmed. 
   1.501 +@publishedAll 
   1.502 +@released 
   1.503 +*/
   1.504 +#define EEikColorLabelDimmedText						56
   1.505 +
   1.506 +/** Logical colour value for use in resources: The colour of the label background when highlighted and dimmed. 
   1.507 +@publishedAll 
   1.508 +@released 
   1.509 +*/
   1.510 +#define EEikColorLabelHighlightPartialEmphasis			57
   1.511 +
   1.512 +/** Logical colour value for use in resources: The colour of the label background when highlighted. 
   1.513 +@publishedAll 
   1.514 +@released 
   1.515 +*/
   1.516 +#define EEikColorLabelHighlightFullEmphasis				58