annotate lisp/oobr/tree-x/rsrc.h @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 4103f0995bd7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 #define TrNbackgroundColor "backgroundColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 #define TrNtreeColor "treeColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 #define TrNcontourColor "contourColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 #define TrNsplitColor "splitColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 #define TrNhighlightColor "highlightColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 #define TrNactionColor "actionColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 #define TrNcontourWidth "contourWidth"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 #define TrCBackgroundColor "BackgroundColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 #define TrCTreeColor "TreeColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 #define TrCContourColor "ContourColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 #define TrCSplitColor "SplitColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #define TrCHighlightColor "HighlightColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 #define TrCActionColor "ActionColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 #define TrCContourWidth "ContourWidth"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #define TrDefaultBackgroundColor "white"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 #define TrDefaultTreeColor "black"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 #define TrDefaultContourColor "MediumSlateBlue"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 #define TrDefaultSplitColor "goldenrod"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 #define TrDefaultHighlightColor "OrangeRed"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #define TrDefaultActionColor "OrangeRed"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 #define TrDefaultContourWidth 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 typedef struct {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 Pixel background_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 Pixel tree_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 Pixel contour_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 Pixel split_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 Pixel highlight_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 Pixel action_color;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 int contour_width;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 } ApplRsrcData, *ApplRsrcDataPtr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34