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
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@2
     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
williamr@2
     5
// which accompanies this distribution, and is available
williamr@2
     6
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.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
//
williamr@2
    15
williamr@2
    16
#if !defined(__GULDEF_H__)
williamr@2
    17
#define __GULDEF_H__
williamr@2
    18
williamr@2
    19
/** The sides on which borders can be adjacent. 
williamr@2
    20
williamr@2
    21
@publishedAll
williamr@2
    22
@released */
williamr@2
    23
enum TGulAdjacent
williamr@2
    24
	{
williamr@2
    25
	/** Indicates that rectangle borders are not adjacent. */
williamr@2
    26
	EGulAdjNone		=0x00,
williamr@2
    27
	/** Adjacent at the top. */
williamr@2
    28
	EGulAdjTop		=0x01,
williamr@2
    29
	/** Adjacent at the bottom. */
williamr@2
    30
	EGulAdjBottom	=0x02,
williamr@2
    31
	/** Adjacent at the left. */
williamr@2
    32
	EGulAdjLeft		=0x04,
williamr@2
    33
	/** Adjacent at the right. */
williamr@2
    34
	EGulAdjRight	=0x08
williamr@2
    35
	};
williamr@2
    36
	
williamr@2
    37
/** Symbian light grey.
williamr@2
    38
williamr@2
    39
@publishedAll
williamr@2
    40
@released */
williamr@2
    41
#define KRgbDitheredLightGray 	TRgb(204,204,204)
williamr@2
    42
williamr@2
    43
/** Symbian dithered grey.
williamr@2
    44
williamr@2
    45
@publishedAll
williamr@2
    46
@released */
williamr@2
    47
#define KRgb1in4DitheredGray 	TRgb(238,238,238)
williamr@2
    48
williamr@2
    49
/** Symbian green.
williamr@2
    50
williamr@2
    51
@publishedAll
williamr@2
    52
@released */
williamr@2
    53
#define KRgbSymbianGreen 		TRgb(0,153,153)
williamr@2
    54
williamr@2
    55
/** Symbian light green.
williamr@2
    56
williamr@2
    57
@publishedAll
williamr@2
    58
@released */
williamr@2
    59
#define KRgbSymbianGreenLight	TRgb(0,183,183)
williamr@2
    60
williamr@2
    61
/** Symbian blue.
williamr@2
    62
williamr@2
    63
@publishedAll
williamr@2
    64
@released */
williamr@2
    65
#define KRgbSymbianBlue 		TRgb(0,102,153)
williamr@2
    66
williamr@2
    67
/** Symbian dark blue.
williamr@2
    68
williamr@2
    69
@publishedAll
williamr@2
    70
@released */
williamr@2
    71
#define KRgbSymbianBlueDark		TRgb(0,72,123)
williamr@2
    72
williamr@2
    73
/** Symbian orange.
williamr@2
    74
williamr@2
    75
@publishedAll
williamr@2
    76
@released */
williamr@2
    77
#define KRgbSymbianOrange		TRgb(255,218,155)
williamr@2
    78
williamr@2
    79
#endif