epoc32/include/eikcolor.hrh
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@2
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
williamr@2
     2
// All rights reserved.
williamr@2
     3
// This component and the accompanying materials are made available
williamr@4
     4
// under the terms of "Eclipse Public License v1.0"
williamr@2
     5
// which accompanies this distribution, and is available
williamr@4
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
williamr@2
     7
//
williamr@2
     8
// Initial Contributors:
williamr@2
     9
// Nokia Corporation - initial contribution.
williamr@2
    10
//
williamr@2
    11
// Contributors:
williamr@2
    12
//
williamr@2
    13
// Description:
williamr@2
    14
// RGB colour constant: black.
williamr@2
    15
// 
williamr@2
    16
//
williamr@2
    17
williamr@2
    18
/**
williamr@2
    19
 @publishedAll 
williamr@2
    20
 @released 
williamr@2
    21
*/
williamr@2
    22
#define KEikRgbBlack				{red=0x00;green=0x00;blue=0x00;}
williamr@2
    23
williamr@2
    24
/** RGB colour constant: dark gray.
williamr@2
    25
@publishedAll 
williamr@2
    26
@released 
williamr@2
    27
*/
williamr@2
    28
#define KEikRgbDarkGray				{red=0x55;green=0x55;blue=0x55;}
williamr@2
    29
williamr@2
    30
/** RGB colour constant: dark red.
williamr@2
    31
@publishedAll 
williamr@2
    32
@released 
williamr@2
    33
*/
williamr@2
    34
#define KEikRgbDarkRed				{red=0x80;green=0x00;blue=0x00;}
williamr@2
    35
williamr@2
    36
/** RGB colour constant: dark green.
williamr@2
    37
@publishedAll 
williamr@2
    38
@released 
williamr@2
    39
*/
williamr@2
    40
#define KEikRgbDarkGreen			{red=0x00;green=0x80;blue=0x00;}
williamr@2
    41
williamr@2
    42
/** RGB colour constant: dark yellow.
williamr@2
    43
@publishedAll 
williamr@2
    44
@released 
williamr@2
    45
*/
williamr@2
    46
#define KEikRgbDarkYellow			{red=0x80;green=0x80;blue=0x00;}
williamr@2
    47
williamr@2
    48
/** RGB colour constant: dark blue.
williamr@2
    49
@publishedAll 
williamr@2
    50
@released 
williamr@2
    51
*/
williamr@2
    52
#define KEikRgbDarkBlue				{red=0x00;green=0x00;blue=0x80;}
williamr@2
    53
williamr@2
    54
/** RGB colour constant: dark magenta.
williamr@2
    55
@publishedAll 
williamr@2
    56
@released 
williamr@2
    57
*/
williamr@2
    58
#define KEikRgbDarkMagenta			{red=0x80;green=0x00;blue=0x80;}
williamr@2
    59
williamr@2
    60
/** RGB colour constant: dark cyan.
williamr@2
    61
@publishedAll 
williamr@2
    62
@released 
williamr@2
    63
*/
williamr@2
    64
#define KEikRgbDarkCyan				{red=0x00;green=0x80;blue=0x80;}
williamr@2
    65
williamr@2
    66
/** RGB colour constant: red.
williamr@2
    67
@publishedAll 
williamr@2
    68
@released 
williamr@2
    69
*/
williamr@2
    70
#define KEikRgbRed					{red=0xff;green=0x00;blue=0x00;}
williamr@2
    71
williamr@2
    72
/** RGB colour constant: green.
williamr@2
    73
@publishedAll 
williamr@2
    74
@released 
williamr@2
    75
*/
williamr@2
    76
#define KEikRgbGreen				{red=0x00;green=0xff;blue=0x00;}
williamr@2
    77
williamr@2
    78
/** RGB colour constant: yellow.
williamr@2
    79
@publishedAll 
williamr@2
    80
@released 
williamr@2
    81
*/
williamr@2
    82
#define KEikRgbYellow				{red=0xff;green=0xff;blue=0x00;}
williamr@2
    83
williamr@2
    84
/** RGB colour constant: blue.
williamr@2
    85
@publishedAll 
williamr@2
    86
@released 
williamr@2
    87
*/
williamr@2
    88
#define KEikRgbBlue					{red=0x00;green=0x00;blue=0xff;}
williamr@2
    89
williamr@2
    90
/** RGB colour constant: magenta.
williamr@2
    91
@publishedAll 
williamr@2
    92
@released 
williamr@2
    93
*/
williamr@2
    94
#define KEikRgbMagenta				{red=0xff;green=0x00;blue=0xff;}
williamr@2
    95
williamr@2
    96
/** RGB colour constant: cyan.
williamr@2
    97
@publishedAll 
williamr@2
    98
@released 
williamr@2
    99
*/
williamr@2
   100
#define KEikRgbCyan					{red=0x00;green=0xff;blue=0xff;}
williamr@2
   101
williamr@2
   102
/** RGB colour constant: gray.
williamr@2
   103
@publishedAll 
williamr@2
   104
@released 
williamr@2
   105
*/
williamr@2
   106
#define KEikRgbGray					{red=0xaa;green=0xaa;blue=0xaa;}
williamr@2
   107
williamr@2
   108
/** RGB colour constant: dithered light gray.
williamr@2
   109
@publishedAll 
williamr@2
   110
@released 
williamr@2
   111
*/
williamr@2
   112
#define KEikRgbDitheredLightGray	{red=0xcc;green=0xcc;blue=0xcc;}
williamr@2
   113
williamr@2
   114
/** RGB colour constant: 1-in-4 dithered gray.
williamr@2
   115
@publishedAll 
williamr@2
   116
@released 
williamr@2
   117
*/
williamr@2
   118
#define KEikRgb1in4DitheredGray		{red=0xed;green=0xed;blue=0xed;}
williamr@2
   119
williamr@2
   120
/** RGB colour constant: white.
williamr@2
   121
@publishedAll 
williamr@2
   122
@released 
williamr@2
   123
*/
williamr@2
   124
#define KEikRgbWhite				{red=0xff;green=0xff;blue=0xff;}
williamr@2
   125
williamr@2
   126
williamr@2
   127
/** RGB colour constant: Symbian green.
williamr@2
   128
@publishedAll 
williamr@2
   129
@released 
williamr@2
   130
*/
williamr@2
   131
#define KEikRgbSymbianGreen 		{red=0x00;green=153;blue=153;}
williamr@2
   132
williamr@2
   133
/** RGB colour constant: Symbian light green.
williamr@2
   134
@publishedAll 
williamr@2
   135
@released 
williamr@2
   136
*/
williamr@2
   137
#define KEikRgbSymbianGreenLight	{red=0x00;green=183;blue=183;}
williamr@2
   138
williamr@2
   139
/** RGB colour constant: Symbian blue.
williamr@2
   140
@publishedAll 
williamr@2
   141
@released 
williamr@2
   142
*/
williamr@2
   143
#define KEikRgbSymbianBlue 			{red=0x00;green=102;blue=153;}
williamr@2
   144
williamr@2
   145
/** RGB colour constant: Symbian dark blue.
williamr@2
   146
@publishedAll 
williamr@2
   147
@released 
williamr@2
   148
*/
williamr@2
   149
#define KEikRgbSymbianBlueDark		{red=0x00;green=72;blue=123;}
williamr@2
   150
williamr@2
   151
/** RGB colour constant: Symbian orange.
williamr@2
   152
@publishedAll 
williamr@2
   153
@released 
williamr@2
   154
*/
williamr@2
   155
#define KEikRgbSymbianOrange		{red=255;green=218;blue=155;}
williamr@2
   156
williamr@2
   157
williamr@2
   158
/** Logical colour value for use in resources: The colour of a window's background. 
williamr@2
   159
@publishedAll 
williamr@2
   160
@released 
williamr@2
   161
*/
williamr@2
   162
#define EEikColorWindowBackground						0
williamr@2
   163
williamr@2
   164
/** Logical colour value for use in resources: The colour of text in a window. 
williamr@2
   165
@publishedAll 
williamr@2
   166
@released 
williamr@2
   167
*/
williamr@2
   168
#define EEikColorWindowText								1
williamr@2
   169
williamr@2
   170
/** Logical colour value for use in resources: The colour of the background contents of a control. 
williamr@2
   171
@publishedAll 
williamr@2
   172
@released 
williamr@2
   173
*/
williamr@2
   174
#define EEikColorControlBackground						2
williamr@2
   175
williamr@2
   176
/** Logical colour value for use in resources: The colour of the text inside a control. 
williamr@2
   177
@publishedAll 
williamr@2
   178
@released 
williamr@2
   179
*/
williamr@2
   180
#define EEikColorControlText							3 
williamr@2
   181
williamr@2
   182
/** Logical colour value for use in resources: The background colour of a control's border. 
williamr@2
   183
@publishedAll 
williamr@2
   184
@released 
williamr@2
   185
*/
williamr@2
   186
#define EEikColorControlSurroundBackground				4
williamr@2
   187
williamr@2
   188
/** Logical colour value for use in resources: The colour of text in a control's border. 
williamr@2
   189
@publishedAll 
williamr@2
   190
@released 
williamr@2
   191
*/
williamr@2
   192
#define EEikColorControlSurroundText					5
williamr@2
   193
williamr@2
   194
/** Logical colour value for use in resources: The colour of a control's background when highlighted for selection. 
williamr@2
   195
@publishedAll 
williamr@2
   196
@released 
williamr@2
   197
*/
williamr@2
   198
#define EEikColorControlHighlightBackground				6 
williamr@2
   199
williamr@2
   200
/** Logical colour value for use in resources: The colour of the text in a control when highlighted for selection. 
williamr@2
   201
@publishedAll 
williamr@2
   202
@released 
williamr@2
   203
*/
williamr@2
   204
#define EEikColorControlHighlightText					7
williamr@2
   205
williamr@2
   206
/** Logical colour value for use in resources: The colour of a control's background when dimmed. 
williamr@2
   207
@publishedAll 
williamr@2
   208
@released 
williamr@2
   209
*/
williamr@2
   210
#define EEikColorControlDimmedBackground				8
williamr@2
   211
williamr@2
   212
/** Logical colour value for use in resources: The colour of the text in a control when dimmed. 
williamr@2
   213
@publishedAll 
williamr@2
   214
@released 
williamr@2
   215
*/
williamr@2
   216
#define EEikColorControlDimmedText						9
williamr@2
   217
williamr@2
   218
/** Logical colour value for use in resources: The colour of a control's background when dimmed and highlighted for selection. 
williamr@2
   219
@publishedAll 
williamr@2
   220
@released 
williamr@2
   221
*/
williamr@2
   222
#define EEikColorControlDimmedHighlightBackground		10
williamr@2
   223
williamr@2
   224
/** Logical colour value for use in resources: The colour of the text in a control when dimmed and highlighted for selection. 
williamr@2
   225
@publishedAll 
williamr@2
   226
@released 
williamr@2
   227
*/
williamr@2
   228
#define EEikColorControlDimmedHighlightText				11
williamr@2
   229
williamr@2
   230
/** Logical colour value for use in resources: The colour of a dialog's background. 
williamr@2
   231
@publishedAll 
williamr@2
   232
@released 
williamr@2
   233
*/
williamr@2
   234
#define EEikColorDialogBackground						12
williamr@2
   235
williamr@2
   236
/** Logical colour value for use in resources: The colour of text inside a dialog. 
williamr@2
   237
@publishedAll 
williamr@2
   238
@released 
williamr@2
   239
*/
williamr@2
   240
#define EEikColorDialogText								13
williamr@2
   241
williamr@2
   242
/** Logical colour value for use in resources: A dialog title's background colour. 
williamr@2
   243
@publishedAll 
williamr@2
   244
@released 
williamr@2
   245
*/
williamr@2
   246
#define EEikColorDialogTitle							14
williamr@2
   247
williamr@2
   248
/** Logical colour value for use in resources: A dialog title's background colour when pressed. 
williamr@2
   249
@publishedAll 
williamr@2
   250
@released 
williamr@2
   251
*/
williamr@2
   252
#define EEikColorDialogTitlePressed						15
williamr@2
   253
williamr@2
   254
/** Logical colour value for use in resources: The text colour in a dialog's title. 
williamr@2
   255
@publishedAll 
williamr@2
   256
@released 
williamr@2
   257
*/
williamr@2
   258
#define EEikColorDialogTitleText						16
williamr@2
   259
williamr@2
   260
/** Logical colour value for use in resources: The text colour in a dialog's title when pressed. 
williamr@2
   261
@publishedAll 
williamr@2
   262
@released 
williamr@2
   263
*/
williamr@2
   264
#define EEikColorDialogTitleTextPressed					17
williamr@2
   265
williamr@2
   266
/** Logical colour value for use in resources: The colour of the menubar's background. 
williamr@2
   267
@publishedAll 
williamr@2
   268
@released 
williamr@2
   269
*/
williamr@2
   270
#define EEikColorMenubarBackground						18
williamr@2
   271
williamr@2
   272
/** Logical colour value for use in resources: The colour of text in the menubar. 
williamr@2
   273
@publishedAll 
williamr@2
   274
@released 
williamr@2
   275
*/
williamr@2
   276
#define EEikColorMenubarText							19
williamr@2
   277
williamr@2
   278
/** Logical colour value for use in resources: The colour of the menubar title's background. 
williamr@2
   279
@publishedAll 
williamr@2
   280
@released 
williamr@2
   281
*/
williamr@2
   282
#define EEikColorMenubarTitleBackground					20
williamr@2
   283
williamr@2
   284
/** Logical colour value for use in resources: The colour of text in the menubar title. 
williamr@2
   285
@publishedAll 
williamr@2
   286
@released 
williamr@2
   287
*/
williamr@2
   288
#define EEikColorMenubarTitleText						21
williamr@2
   289
williamr@2
   290
/** Logical colour value for use in resources: The colour of the menupane's background. 
williamr@2
   291
@publishedAll 
williamr@2
   292
@released 
williamr@2
   293
*/
williamr@2
   294
#define EEikColorMenuPaneBackground						22
williamr@2
   295
williamr@2
   296
/** Logical colour value for use in resources: The colour of text in the menu pane. 
williamr@2
   297
@publishedAll 
williamr@2
   298
@released 
williamr@2
   299
*/
williamr@2
   300
#define EEikColorMenuPaneText							23
williamr@2
   301
williamr@2
   302
/** Logical colour value for use in resources: The colour of the menu pane background when highlighted for selection. 
williamr@2
   303
@publishedAll 
williamr@2
   304
@released 
williamr@2
   305
*/
williamr@2
   306
#define EEikColorMenuPaneHighlight						24
williamr@2
   307
williamr@2
   308
/** Logical colour value for use in resources: The colour of text in the menu pane when highlighted for selection. 
williamr@2
   309
@publishedAll 
williamr@2
   310
@released 
williamr@2
   311
*/
williamr@2
   312
#define EEikColorMenuPaneTextHighlight					25
williamr@2
   313
williamr@2
   314
/** Logical colour value for use in resources: The colour of the menu pane background when dimmed and highlighted. 
williamr@2
   315
@publishedAll 
williamr@2
   316
@released 
williamr@2
   317
*/
williamr@2
   318
#define EEikColorMenuPaneDimmedHighlight				26
williamr@2
   319
williamr@2
   320
/** Logical colour value for use in resources: The colour of text in the menu pane when dimmed. 
williamr@2
   321
@publishedAll 
williamr@2
   322
@released 
williamr@2
   323
*/
williamr@2
   324
#define EEikColorMenuPaneDimmedText						27
williamr@2
   325
williamr@2
   326
/** Logical colour value for use in resources: The colour of text in the menu pane when dimmed and highlighted for selection. 
williamr@2
   327
@publishedAll 
williamr@2
   328
@released 
williamr@2
   329
*/
williamr@2
   330
#define EEikColorMenuPaneDimmedTextHighlight			28
williamr@2
   331
williamr@2
   332
/** Logical colour value for use in resources: The colour of the button background, when the button is in the unset state. 
williamr@2
   333
@publishedAll 
williamr@2
   334
@released 
williamr@2
   335
*/
williamr@2
   336
#define EEikColorButtonFaceClear						29
williamr@2
   337
williamr@2
   338
/** Logical colour value for use in resources: The colour of the button background when the button is in the set state. 
williamr@2
   339
@publishedAll 
williamr@2
   340
@released 
williamr@2
   341
*/
williamr@2
   342
#define EEikColorButtonFaceSet							30
williamr@2
   343
williamr@2
   344
/** Logical colour value for use in resources: The colour of the button background when the button is in the set state and is pressed. 
williamr@2
   345
@publishedAll 
williamr@2
   346
@released 
williamr@2
   347
*/
williamr@2
   348
#define EEikColorButtonFaceSetPressed					31
williamr@2
   349
williamr@2
   350
/** Logical colour value for use in resources: The colour of the button background when the button is in the unset state and is pressed. 
williamr@2
   351
@publishedAll 
williamr@2
   352
@released 
williamr@2
   353
*/
williamr@2
   354
#define EEikColorButtonFaceClearPressed					32
williamr@2
   355
williamr@2
   356
/** Logical colour value for use in resources: The colour of the button text. 
williamr@2
   357
@publishedAll 
williamr@2
   358
@released 
williamr@2
   359
*/
williamr@2
   360
#define EEikColorButtonText								33
williamr@2
   361
williamr@2
   362
/** Logical colour value for use in resources: The colour of the button text when the button is pressed. 
williamr@2
   363
@publishedAll 
williamr@2
   364
@released 
williamr@2
   365
*/
williamr@2
   366
#define EEikColorButtonTextPressed						34
williamr@2
   367
williamr@2
   368
/** Logical colour value for use in resources: The colour of the button text when the button is dimmed. 
williamr@2
   369
@publishedAll 
williamr@2
   370
@released 
williamr@2
   371
*/
williamr@2
   372
#define EEikColorButtonTextDimmed						35		
williamr@2
   373
williamr@2
   374
/** Logical colour value for use in resources: The colour of the message window foreground. 
williamr@2
   375
@publishedAll 
williamr@2
   376
@released 
williamr@2
   377
*/
williamr@2
   378
#define EEikColorMsgWinForeground						36
williamr@2
   379
williamr@2
   380
/** Logical colour value for use in resources: The colour of the message window background. 
williamr@2
   381
@publishedAll 
williamr@2
   382
@released 
williamr@2
   383
*/
williamr@2
   384
#define EEikColorMsgWinBackground						37
williamr@2
   385
williamr@2
   386
/** Logical colour value for use in resources: The colour of the scroll bar border. 
williamr@2
   387
@publishedAll 
williamr@2
   388
@released 
williamr@2
   389
*/
williamr@2
   390
#define EEikColorScrollBarBorder						38
williamr@2
   391
williamr@2
   392
/** Logical colour value for use in resources: The colour of the scroll bar shaft background. 
williamr@2
   393
@publishedAll 
williamr@2
   394
@released 
williamr@2
   395
*/
williamr@2
   396
#define EEikColorScrollBarShaft							39
williamr@2
   397
williamr@2
   398
/** Logical colour value for use in resources: The colour of the scroll bar shaft background when dimmed. 
williamr@2
   399
@publishedAll 
williamr@2
   400
@released 
williamr@2
   401
*/
williamr@2
   402
#define EEikColorScrollBarShaftDimmed					40
williamr@2
   403
williamr@2
   404
/** Logical colour value for use in resources: The colour of the scroll bar shaft background when pressed. 
williamr@2
   405
@publishedAll 
williamr@2
   406
@released 
williamr@2
   407
*/
williamr@2
   408
#define EEikColorScrollBarShaftPressed					41
williamr@2
   409
williamr@2
   410
/** Logical colour value for use in resources: The colour of the background for scroll bars with no thumb and no shaft. 
williamr@2
   411
@publishedAll 
williamr@2
   412
@released 
williamr@2
   413
*/
williamr@2
   414
#define EEikColorScrollBarNoShaftOrThumb				42
williamr@2
   415
williamr@2
   416
/** Logical colour value for use in resources: The colour of scroll bar buttons. 
williamr@2
   417
@publishedAll 
williamr@2
   418
@released 
williamr@2
   419
*/
williamr@2
   420
#define EEikColorScrollButtonIcon						43
williamr@2
   421
williamr@2
   422
/** Logical colour value for use in resources: The colour of scroll bar buttons when pressed. 
williamr@2
   423
@publishedAll 
williamr@2
   424
@released 
williamr@2
   425
*/
williamr@2
   426
#define EEikColorScrollButtonIconPressed				44
williamr@2
   427
williamr@2
   428
/** Logical colour value for use in resources: The colour of scroll bar buttons when dimmed. 
williamr@2
   429
@publishedAll 
williamr@2
   430
@released 
williamr@2
   431
*/
williamr@2
   432
#define EEikColorScrollButtonIconDimmed					45
williamr@2
   433
williamr@2
   434
/** Logical colour value for use in resources: The colour of a scroll bar thumb's background. 
williamr@2
   435
@publishedAll 
williamr@2
   436
@released 
williamr@2
   437
*/
williamr@2
   438
#define EEikColorScrollButtonThumbBackground			46
williamr@2
   439
williamr@2
   440
/** Logical colour value for use in resources: The colour of a scroll bar thumb's background when pressed. 
williamr@2
   441
@publishedAll 
williamr@2
   442
@released 
williamr@2
   443
*/
williamr@2
   444
#define EEikColorScrollButtonThumbBackgroundPressed		47
williamr@2
   445
williamr@2
   446
/** Logical colour value for use in resources: The colour of a scroll bar thumb's background when dimmed. 
williamr@2
   447
@publishedAll 
williamr@2
   448
@released 
williamr@2
   449
*/
williamr@2
   450
#define EEikColorScrollThumbDimmed						48
williamr@2
   451
williamr@2
   452
/** Logical colour value for use in resources: The colour of a scroll bar thumb's edge. 
williamr@2
   453
@publishedAll 
williamr@2
   454
@released 
williamr@2
   455
*/
williamr@2
   456
#define EEikColorScrollThumbEdge						49
williamr@2
   457
williamr@2
   458
/** Logical colour value for use in resources: The colour of a toolbar's background. 
williamr@2
   459
@publishedAll 
williamr@2
   460
@released 
williamr@2
   461
*/
williamr@2
   462
#define EEikColorToolbarBackground						50
williamr@2
   463
williamr@2
   464
/** Logical colour value for use in resources: The colour of the text in a toolbar. 
williamr@2
   465
@publishedAll 
williamr@2
   466
@released 
williamr@2
   467
*/
williamr@2
   468
#define EEikColorToolbarText							51
williamr@2
   469
williamr@2
   470
/** Logical colour value for use in resources: The colour of a status pane's background. 
williamr@2
   471
@publishedAll 
williamr@2
   472
@released 
williamr@2
   473
*/
williamr@2
   474
#define EEikColorStatusPaneBackground					52
williamr@2
   475
williamr@2
   476
/** Logical colour value for use in resources: The colour of the text in a status pane. 
williamr@2
   477
@publishedAll 
williamr@2
   478
@released 
williamr@2
   479
*/
williamr@2
   480
#define EEikColorStatusPaneText							53
williamr@2
   481
williamr@2
   482
/** Logical colour value for use in resources: The colour of the text in a label. 
williamr@2
   483
@publishedAll 
williamr@2
   484
@released 
williamr@2
   485
*/
williamr@2
   486
#define EEikColorLabelText								54
williamr@2
   487
williamr@2
   488
/** Logical colour value for use in resources: The colour of emphasised text in a label. 
williamr@2
   489
@publishedAll 
williamr@2
   490
@released 
williamr@2
   491
*/
williamr@2
   492
#define EEikColorLabelTextEmphasis						55
williamr@2
   493
williamr@2
   494
/** Logical colour value for use in resources: The colour of the text in a label when dimmed. 
williamr@2
   495
@publishedAll 
williamr@2
   496
@released 
williamr@2
   497
*/
williamr@2
   498
#define EEikColorLabelDimmedText						56
williamr@2
   499
williamr@2
   500
/** Logical colour value for use in resources: The colour of the label background when highlighted and dimmed. 
williamr@2
   501
@publishedAll 
williamr@2
   502
@released 
williamr@2
   503
*/
williamr@2
   504
#define EEikColorLabelHighlightPartialEmphasis			57
williamr@2
   505
williamr@2
   506
/** Logical colour value for use in resources: The colour of the label background when highlighted. 
williamr@2
   507
@publishedAll 
williamr@2
   508
@released 
williamr@2
   509
*/
williamr@2
   510
#define EEikColorLabelHighlightFullEmphasis				58