Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
2
    COPYRIGHT NOTICE
3
 
4
    This program is the proprietary property of IXI Ltd, a subsidiary
5
    of the Santa Cruz Operation (SCO). Use, reproduction, production
6
    of amended versions and/or transfer of this program is permitted
7
    PROVIDED THAT:
8
 
9
    (a)  This legend be preserved on any such reproduction and amended
10
         version.
11
 
12
    (b)  Any recipient of such reproduction or amended version accept
13
         the conditions set out in this legend.
14
 
15
    IXI accepts no liability whatsoever in relation to any use to
16
    which this program may be put and gives no warranty as to the
17
    program's suitability for any purpose.
18
 
19
    All rights reserved.
20
 
21
    Copyright (c) 1995, 1996
22
 
23
*/
24
 
25
 
26
 
27
/* SCO CID (IXI) ColorObj.h,v 1.1 1996/08/08 14:12:21 wendland Exp */
28
 
29
+USE "motif/1_2", "Xm/Xm.h";
30
 
31
+EXP lvalue WidgetClass _xmColorObjClass;
32
 
33
+TYPE (struct) _ColorObjClassRec;
34
+TYPE (struct) _ColorObjRec;
35
+TYPEDEF _ColorObjClassRec *ColorObjClass;
36
+TYPEDEF _ColorObjRec *ColorObj;
37
 
38
+CONST String XmNprimaryColorSetId;
39
+CONST String XmCPrimaryColorSetId;
40
+CONST String XmNsecondaryColorSetId;
41
+CONST String XmCSecondaryColorSetId;
42
+CONST String XmNactiveColorSetId;
43
+CONST String XmCActiveColorSetId;
44
+CONST String XmNinactiveColorSetId;
45
+CONST String XmCInactiveColorSetId;
46
+CONST String XmNuseColorObj;
47
+CONST String XmCUseColorObj;
48
+CONST String XmNtextColorSetId;
49
+CONST String XmCTextColorSetId;
50
+CONST String XmNuseTextColor;
51
+CONST String XmCUseTextColor;
52
+CONST String XmNuseTextColorForList;
53
+CONST String XmCUseTextColorForList;
54
+CONST String XmNuseMask;
55
+CONST String XmCUseMask;
56
+CONST String XmNuseMultiColorIcons;
57
+CONST String XmCUseMultiColorIcons;
58
 
59
+FIELD (struct) PixelSet := {
60
 
61
	Pixel	fg;
62
	Pixel	bg;
63
	Pixel	ts;
64
	Pixel	bs;
65
	Pixel	sc;
66
};
67
 
68
+MACRO int DitherTopShadow(Display *, Screen *, PixelSet *);
69
+MACRO int DitherBottomShadow(Display *, Screen *, PixelSet *);
70
 
71
+CONST String DITHER;
72
+CONST String NO_DITHER;
73
 
74
+CONST int B_W;
75
+CONST int LOW_COLOR;
76
+CONST int MEDIUM_COLOR;
77
+CONST int HIGH_COLOR;
78
 
79
+CONST String COLOR_SRV_NAME;
80
 
81
+CONST int VALUE_THRESHOLD;
82
 
83
+CONST String PIXEL_SET;
84
+CONST String PALETTE_NAME;
85
+CONST String TYPE_OF_MONITOR;
86
+CONST String UPDATE_FILE;
87
+CONST String CUST_DATA;
88
 
89
+CONST int MAX_NUM_COLORS;
90
+NAT NUM_COLORS;
91