williamr@2: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@2: // All rights reserved. williamr@2: // This component and the accompanying materials are made available williamr@4: // under the terms of "Eclipse Public License v1.0" williamr@2: // which accompanies this distribution, and is available williamr@4: // at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@2: // williamr@2: // Initial Contributors: williamr@2: // Nokia Corporation - initial contribution. williamr@2: // williamr@2: // Contributors: williamr@2: // williamr@2: // Description: williamr@2: // RGB colour constant: black. williamr@2: // williamr@2: // williamr@2: williamr@2: /** williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbBlack {red=0x00;green=0x00;blue=0x00;} williamr@2: williamr@2: /** RGB colour constant: dark gray. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDarkGray {red=0x55;green=0x55;blue=0x55;} williamr@2: williamr@2: /** RGB colour constant: dark red. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDarkRed {red=0x80;green=0x00;blue=0x00;} williamr@2: williamr@2: /** RGB colour constant: dark green. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDarkGreen {red=0x00;green=0x80;blue=0x00;} williamr@2: williamr@2: /** RGB colour constant: dark yellow. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDarkYellow {red=0x80;green=0x80;blue=0x00;} williamr@2: williamr@2: /** RGB colour constant: dark blue. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDarkBlue {red=0x00;green=0x00;blue=0x80;} williamr@2: williamr@2: /** RGB colour constant: dark magenta. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDarkMagenta {red=0x80;green=0x00;blue=0x80;} williamr@2: williamr@2: /** RGB colour constant: dark cyan. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDarkCyan {red=0x00;green=0x80;blue=0x80;} williamr@2: williamr@2: /** RGB colour constant: red. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbRed {red=0xff;green=0x00;blue=0x00;} williamr@2: williamr@2: /** RGB colour constant: green. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbGreen {red=0x00;green=0xff;blue=0x00;} williamr@2: williamr@2: /** RGB colour constant: yellow. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbYellow {red=0xff;green=0xff;blue=0x00;} williamr@2: williamr@2: /** RGB colour constant: blue. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbBlue {red=0x00;green=0x00;blue=0xff;} williamr@2: williamr@2: /** RGB colour constant: magenta. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbMagenta {red=0xff;green=0x00;blue=0xff;} williamr@2: williamr@2: /** RGB colour constant: cyan. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbCyan {red=0x00;green=0xff;blue=0xff;} williamr@2: williamr@2: /** RGB colour constant: gray. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbGray {red=0xaa;green=0xaa;blue=0xaa;} williamr@2: williamr@2: /** RGB colour constant: dithered light gray. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbDitheredLightGray {red=0xcc;green=0xcc;blue=0xcc;} williamr@2: williamr@2: /** RGB colour constant: 1-in-4 dithered gray. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgb1in4DitheredGray {red=0xed;green=0xed;blue=0xed;} williamr@2: williamr@2: /** RGB colour constant: white. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbWhite {red=0xff;green=0xff;blue=0xff;} williamr@2: williamr@2: williamr@2: /** RGB colour constant: Symbian green. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbSymbianGreen {red=0x00;green=153;blue=153;} williamr@2: williamr@2: /** RGB colour constant: Symbian light green. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbSymbianGreenLight {red=0x00;green=183;blue=183;} williamr@2: williamr@2: /** RGB colour constant: Symbian blue. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbSymbianBlue {red=0x00;green=102;blue=153;} williamr@2: williamr@2: /** RGB colour constant: Symbian dark blue. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbSymbianBlueDark {red=0x00;green=72;blue=123;} williamr@2: williamr@2: /** RGB colour constant: Symbian orange. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define KEikRgbSymbianOrange {red=255;green=218;blue=155;} williamr@2: williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a window's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorWindowBackground 0 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in a window. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorWindowText 1 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the background contents of a control. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlBackground 2 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text inside a control. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlText 3 williamr@2: williamr@2: /** Logical colour value for use in resources: The background colour of a control's border. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlSurroundBackground 4 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in a control's border. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlSurroundText 5 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a control's background when highlighted for selection. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlHighlightBackground 6 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text in a control when highlighted for selection. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlHighlightText 7 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a control's background when dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlDimmedBackground 8 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text in a control when dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlDimmedText 9 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a control's background when dimmed and highlighted for selection. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlDimmedHighlightBackground 10 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text in a control when dimmed and highlighted for selection. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorControlDimmedHighlightText 11 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a dialog's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorDialogBackground 12 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text inside a dialog. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorDialogText 13 williamr@2: williamr@2: /** Logical colour value for use in resources: A dialog title's background colour. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorDialogTitle 14 williamr@2: williamr@2: /** Logical colour value for use in resources: A dialog title's background colour when pressed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorDialogTitlePressed 15 williamr@2: williamr@2: /** Logical colour value for use in resources: The text colour in a dialog's title. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorDialogTitleText 16 williamr@2: williamr@2: /** Logical colour value for use in resources: The text colour in a dialog's title when pressed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorDialogTitleTextPressed 17 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the menubar's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenubarBackground 18 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in the menubar. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenubarText 19 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the menubar title's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenubarTitleBackground 20 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in the menubar title. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenubarTitleText 21 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the menupane's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenuPaneBackground 22 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in the menu pane. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenuPaneText 23 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the menu pane background when highlighted for selection. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenuPaneHighlight 24 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in the menu pane when highlighted for selection. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenuPaneTextHighlight 25 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the menu pane background when dimmed and highlighted. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenuPaneDimmedHighlight 26 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in the menu pane when dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenuPaneDimmedText 27 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of text in the menu pane when dimmed and highlighted for selection. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMenuPaneDimmedTextHighlight 28 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the button background, when the button is in the unset state. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorButtonFaceClear 29 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the button background when the button is in the set state. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorButtonFaceSet 30 williamr@2: williamr@2: /** 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: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorButtonFaceSetPressed 31 williamr@2: williamr@2: /** 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: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorButtonFaceClearPressed 32 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the button text. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorButtonText 33 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the button text when the button is pressed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorButtonTextPressed 34 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the button text when the button is dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorButtonTextDimmed 35 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the message window foreground. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMsgWinForeground 36 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the message window background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorMsgWinBackground 37 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the scroll bar border. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollBarBorder 38 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the scroll bar shaft background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollBarShaft 39 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the scroll bar shaft background when dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollBarShaftDimmed 40 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the scroll bar shaft background when pressed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollBarShaftPressed 41 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the background for scroll bars with no thumb and no shaft. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollBarNoShaftOrThumb 42 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of scroll bar buttons. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollButtonIcon 43 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of scroll bar buttons when pressed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollButtonIconPressed 44 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of scroll bar buttons when dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollButtonIconDimmed 45 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a scroll bar thumb's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollButtonThumbBackground 46 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a scroll bar thumb's background when pressed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollButtonThumbBackgroundPressed 47 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a scroll bar thumb's background when dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollThumbDimmed 48 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a scroll bar thumb's edge. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorScrollThumbEdge 49 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a toolbar's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorToolbarBackground 50 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text in a toolbar. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorToolbarText 51 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of a status pane's background. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorStatusPaneBackground 52 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text in a status pane. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorStatusPaneText 53 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text in a label. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorLabelText 54 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of emphasised text in a label. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorLabelTextEmphasis 55 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the text in a label when dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorLabelDimmedText 56 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the label background when highlighted and dimmed. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorLabelHighlightPartialEmphasis 57 williamr@2: williamr@2: /** Logical colour value for use in resources: The colour of the label background when highlighted. williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: #define EEikColorLabelHighlightFullEmphasis 58