1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/mw/guldef.h Wed Mar 31 12:27:01 2010 +0100
1.3 @@ -0,0 +1,79 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// 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
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#if !defined(__GULDEF_H__)
1.20 +#define __GULDEF_H__
1.21 +
1.22 +/** The sides on which borders can be adjacent.
1.23 +
1.24 +@publishedAll
1.25 +@released */
1.26 +enum TGulAdjacent
1.27 + {
1.28 + /** Indicates that rectangle borders are not adjacent. */
1.29 + EGulAdjNone =0x00,
1.30 + /** Adjacent at the top. */
1.31 + EGulAdjTop =0x01,
1.32 + /** Adjacent at the bottom. */
1.33 + EGulAdjBottom =0x02,
1.34 + /** Adjacent at the left. */
1.35 + EGulAdjLeft =0x04,
1.36 + /** Adjacent at the right. */
1.37 + EGulAdjRight =0x08
1.38 + };
1.39 +
1.40 +/** Symbian light grey.
1.41 +
1.42 +@publishedAll
1.43 +@released */
1.44 +#define KRgbDitheredLightGray TRgb(204,204,204)
1.45 +
1.46 +/** Symbian dithered grey.
1.47 +
1.48 +@publishedAll
1.49 +@released */
1.50 +#define KRgb1in4DitheredGray TRgb(238,238,238)
1.51 +
1.52 +/** Symbian green.
1.53 +
1.54 +@publishedAll
1.55 +@released */
1.56 +#define KRgbSymbianGreen TRgb(0,153,153)
1.57 +
1.58 +/** Symbian light green.
1.59 +
1.60 +@publishedAll
1.61 +@released */
1.62 +#define KRgbSymbianGreenLight TRgb(0,183,183)
1.63 +
1.64 +/** Symbian blue.
1.65 +
1.66 +@publishedAll
1.67 +@released */
1.68 +#define KRgbSymbianBlue TRgb(0,102,153)
1.69 +
1.70 +/** Symbian dark blue.
1.71 +
1.72 +@publishedAll
1.73 +@released */
1.74 +#define KRgbSymbianBlueDark TRgb(0,72,123)
1.75 +
1.76 +/** Symbian orange.
1.77 +
1.78 +@publishedAll
1.79 +@released */
1.80 +#define KRgbSymbianOrange TRgb(255,218,155)
1.81 +
1.82 +#endif