epoc32/include/mw/guldef.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 epoc32/include/guldef.h@2fe1408b6811
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // 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
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #if !defined(__GULDEF_H__)
    17 #define __GULDEF_H__
    18 
    19 /** The sides on which borders can be adjacent. 
    20 
    21 @publishedAll
    22 @released */
    23 enum TGulAdjacent
    24 	{
    25 	/** Indicates that rectangle borders are not adjacent. */
    26 	EGulAdjNone		=0x00,
    27 	/** Adjacent at the top. */
    28 	EGulAdjTop		=0x01,
    29 	/** Adjacent at the bottom. */
    30 	EGulAdjBottom	=0x02,
    31 	/** Adjacent at the left. */
    32 	EGulAdjLeft		=0x04,
    33 	/** Adjacent at the right. */
    34 	EGulAdjRight	=0x08
    35 	};
    36 	
    37 /** Symbian light grey.
    38 
    39 @publishedAll
    40 @released */
    41 #define KRgbDitheredLightGray 	TRgb(204,204,204)
    42 
    43 /** Symbian dithered grey.
    44 
    45 @publishedAll
    46 @released */
    47 #define KRgb1in4DitheredGray 	TRgb(238,238,238)
    48 
    49 /** Symbian green.
    50 
    51 @publishedAll
    52 @released */
    53 #define KRgbSymbianGreen 		TRgb(0,153,153)
    54 
    55 /** Symbian light green.
    56 
    57 @publishedAll
    58 @released */
    59 #define KRgbSymbianGreenLight	TRgb(0,183,183)
    60 
    61 /** Symbian blue.
    62 
    63 @publishedAll
    64 @released */
    65 #define KRgbSymbianBlue 		TRgb(0,102,153)
    66 
    67 /** Symbian dark blue.
    68 
    69 @publishedAll
    70 @released */
    71 #define KRgbSymbianBlueDark		TRgb(0,72,123)
    72 
    73 /** Symbian orange.
    74 
    75 @publishedAll
    76 @released */
    77 #define KRgbSymbianOrange		TRgb(255,218,155)
    78 
    79 #endif