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
%%
29
#ifndef __X11_P_HEADERS
30
#error Unauthorized access to X11 P headers
31
#endif
32
%%
33
 
34
+USE "x5/t", "X11/Intrinsic.h" ;
35
+USE "x5/t", "X11/Composite.h" ;
36
+USE "x5/t", "X11/IntrinsicP.h", "intrinsix" ;
37
+USE "x5/t", "X11/CoreP.h" ;
38
 
39
 
40
# CompositeClassPart Structure (1.4.2.1)
41
 
42
+FIELD ( struct ) CompositeClassPart := {
43
    XtGeometryHandler geometry_manager ;
44
    XtWidgetProc change_managed ;
45
    XtWidgetProc insert_child ;
46
    XtWidgetProc delete_child ;
47
    XtPointer extension ;
48
} ;
49
 
50
+FIELD ( struct ) CompositeClassExtensionRec := {
51
    XtPointer next_extension ;
52
    XrmQuark record_type ;
53
    long version ;
54
    Cardinal record_size ;
55
    Boolean accepts_objects ;
56
} ;
57
 
58
+TYPEDEF CompositeClassExtensionRec *CompositeClassExtension ;
59
+CONST long XtCompositeExtensionVersion ;
60
 
61
+FIELD CompositeClassRec := {
62
    CoreClassPart core_class ;
63
    CompositeClassPart composite_class ;
64
} ;
65
 
66
+EXP lvalue CompositeClassRec compositeClassRec ;
67
 
68
 
69
# CompositePart Structure (1.4.2.2)
70
 
71
+FIELD ( struct ) CompositePart {
72
    WidgetList children ;
73
    Cardinal num_children ;
74
    Cardinal num_slots ;
75
    XtOrderProc insert_position ;
76
} ;
77
 
78
+FIELD CompositeRec := {
79
    CorePart core ;
80
    CompositePart composite ;
81
} ;
82
 
83
 
84
# Inheritance of Superclass Operations (1.6.10)
85
 
86
+EXP XtGeometryHandler XtInheritGeometryManager ;
87
+EXP XtWidgetProc XtInheritChangeManaged ;
88
+EXP XtWidgetProc XtInheritInsertChild ;
89
+EXP XtWidgetProc XtInheritDeleteChild ;