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

// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// 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
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

#if !defined(__GULDEF_H__)
#define __GULDEF_H__

/** The sides on which borders can be adjacent. 

@publishedAll
@released */
enum TGulAdjacent
	{
	/** Indicates that rectangle borders are not adjacent. */
	EGulAdjNone		=0x00,
	/** Adjacent at the top. */
	EGulAdjTop		=0x01,
	/** Adjacent at the bottom. */
	EGulAdjBottom	=0x02,
	/** Adjacent at the left. */
	EGulAdjLeft		=0x04,
	/** Adjacent at the right. */
	EGulAdjRight	=0x08
	};
	
/** Symbian light grey.

@publishedAll
@released */
#define KRgbDitheredLightGray 	TRgb(204,204,204)

/** Symbian dithered grey.

@publishedAll
@released */
#define KRgb1in4DitheredGray 	TRgb(238,238,238)

/** Symbian green.

@publishedAll
@released */
#define KRgbSymbianGreen 		TRgb(0,153,153)

/** Symbian light green.

@publishedAll
@released */
#define KRgbSymbianGreenLight	TRgb(0,183,183)

/** Symbian blue.

@publishedAll
@released */
#define KRgbSymbianBlue 		TRgb(0,102,153)

/** Symbian dark blue.

@publishedAll
@released */
#define KRgbSymbianBlueDark		TRgb(0,72,123)

/** Symbian orange.

@publishedAll
@released */
#define KRgbSymbianOrange		TRgb(255,218,155)

#endif