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