Subversion Repositories tendra.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#   		 Crown Copyright (c) 1997
2
#   
3
#   This TenDRA(r) Computer Program is subject to Copyright
4
#   owned by the United Kingdom Secretary of State for Defence
5
#   acting through the Defence Evaluation and Research Agency
6
#   (DERA).  It is made available to Recipients with a
7
#   royalty-free licence for its use, reproduction, transfer
8
#   to other parties and amendment for any purpose not excluding
9
#   product development provided that any such use et cetera
10
#   shall be deemed to be acceptance of the following conditions:-
11
#   
12
#       (1) Its Recipients shall ensure that this Notice is
13
#       reproduced upon any copies or amended versions of it;
14
#   
15
#       (2) Any amended version of it shall be clearly marked to
16
#       show both the nature of and the organisation responsible
17
#       for the relevant amendment or amendments;
18
#   
19
#       (3) Its onward transfer from a recipient to another
20
#       party shall be deemed to be that party's acceptance of
21
#       these conditions;
22
#   
23
#       (4) DERA gives no warranty or assurance as to its
24
#       quality or suitability for any purpose and DERA accepts
25
#       no liability whatsoever in relation to any use to which
26
#       it may be put.
27
#
28
+USE "x5/t", "X11/Intrinsic.h" ;
29
 
30
 
31
# ShellClassPart Definition (4.1.1)
32
 
33
+TYPE ( struct ) ShellClassRec ;
34
+TYPEDEF ShellClassRec *ShellWidgetClass ;
35
 
36
+TYPE ( struct ) OverrideShellClassRec ;
37
+TYPEDEF OverrideShellClassRec *OverrideShellWidgetClass ;
38
 
39
+TYPE ( struct ) WMShellClassRec ;
40
+TYPEDEF WMShellClassRec *WMShellWidgetClass ;
41
 
42
+TYPE ( struct ) VendorShellClassRec ;
43
+TYPEDEF VendorShellClassRec *VendorShellWidgetClass ;
44
 
45
+TYPE ( struct ) TransientShellClassRec ;
46
+TYPEDEF TransientShellClassRec *TransientShellWidgetClass ;
47
 
48
+TYPE ( struct ) TopLevelShellClassRec ;
49
+TYPEDEF TopLevelShellClassRec *TopLevelShellWidgetClass ;
50
 
51
+TYPE ( struct ) ApplicationShellClassRec ;
52
+TYPEDEF ApplicationShellClassRec *ApplicationShellWidgetClass ;
53
 
54
+EXP lvalue WidgetClass shellWidgetClass ;
55
+EXP lvalue WidgetClass overrideShellWidgetClass ;
56
+EXP lvalue WidgetClass wmShellWidgetClass ;
57
+EXP lvalue WidgetClass vendorShellWidgetClass ;
58
+EXP lvalue WidgetClass transientShellWidgetClass ;
59
+EXP lvalue WidgetClass topLevelShellWidgetClass ;
60
+EXP lvalue WidgetClass applicationShellWidgetClass ;
61
 
62
 
63
# ShellPart Definition (4.1.2)
64
 
65
+TYPE ( struct ) ShellRec ;
66
+TYPEDEF ShellRec *ShellWidget ;
67
 
68
+TYPE ( struct ) OverrideShellRec ;
69
+TYPEDEF OverrideShellRec *OverrideShellWidget ;
70
 
71
+TYPE ( struct ) WMShellRec ;
72
+TYPEDEF WMShellRec *WMShellWidget ;
73
 
74
+TYPE ( struct ) VendorShellRec ;
75
+TYPEDEF VendorShellRec *VendorShellWidget ;
76
 
77
+TYPE ( struct ) TransientShellRec ;
78
+TYPEDEF TransientShellRec *TransientShellWidget ;
79
 
80
+TYPE ( struct ) TopLevelShellRec ;
81
+TYPEDEF TopLevelShellRec *TopLevelShellWidget ;
82
 
83
+TYPE ( struct ) ApplicationShellRec ;
84
+TYPEDEF ApplicationShellRec *ApplicationShellWidget ;
85
 
86
 
87
# Shell Resources (4.1.3) - also see StringDefs.h
88
 
89
+CONST String XtNallowShellResize, XtNargc, XtNargv, XtNbaseHeight ;
90
+CONST String XtNbaseWidth, XtNcreatePopupChildProc, XtNgeometry ;
91
+CONST String XtNheightInc, XtNiconMask, XtNiconName, XtNiconNameEncoding ;
92
+CONST String XtNiconPixmap, XtNiconWindow, XtNiconX, XtNiconY, XtNiconic ;
93
+CONST String XtNinitialState, XtNinput, XtNmaxAspectX, XtNmaxAspectY ;
94
+CONST String XtNmaxHeight, XtNmaxWidth, XtNminAspectX, XtNminAspectY ;
95
+CONST String XtNminHeight, XtNminWidth, XtNoverrideRedirect, XtNsaveUnder ;
96
+CONST String XtNtitle, XtNtitleEncoding, XtNtransient, XtNtransientFor ;
97
+CONST String XtNvisual, XtNwaitForWm, XtNwidthInc, XtNwinGravity ;
98
+CONST String XtNwindowGroup, XtNwmTimeout ;
99
 
100
+CONST String XtCAllowShellResize, XtCArgc, XtCArgv, XtCBaseHeight ;
101
+CONST String XtCBaseWidth, XtCCreatePopupChildProc, XtCGeometry ;
102
+CONST String XtCHeightInc, XtCIconMask, XtCIconName, XtCIconNameEncoding ;
103
+CONST String XtCIconPixmap, XtCIconWindow, XtCIconX, XtCIconY, XtCIconic ;
104
+CONST String XtCInitialState, XtCInput, XtCMaxAspectX, XtCMaxAspectY ;
105
+CONST String XtCMaxHeight, XtCMaxWidth, XtCMinAspectX, XtCMinAspectY ;
106
+CONST String XtCMinHeight, XtCMinWidth, XtCOverrideRedirect, XtCSaveUnder ;
107
+CONST String XtCTitle, XtCTitleEncoding, XtCTransient, XtCTransientFor ;
108
+CONST String XtCVisual, XtCWaitForWm, XtCWidthInc, XtCWinGravity ;
109
+CONST String XtCWindowGroup, XtCWmTimeout ;