Subversion Repositories tendra.SVN

Rev

Details | 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/Object.h" ;
35
+USE "x5/t", "X11/IntrinsicP.h", "intrinsix" ;
36
 
37
 
38
# ObjectClassPart Definition (12.2.1)
39
 
40
+FIELD ( struct ) ObjectClassPart := {
41
    WidgetClass superclass ;
42
    String class_name ;
43
    Cardinal widget_size ;
44
    XtProc class_initialize ;
45
    XtWidgetClassProc class_part_initialize ;
46
    XtEnum class_inited ;
47
    XtInitProc initialize ;
48
    XtArgsProc initialize_hook ;
49
    XtProc obj1 ;
50
    XtPointer obj2 ;
51
    Cardinal obj3 ;
52
    XtResourceList resources ;
53
    Cardinal num_resources ;
54
    XrmClass xrm_class ;
55
    Boolean obj4 ;
56
    XtEnum obj5 ;
57
    Boolean obj6 ;
58
    Boolean obj7 ;
59
    XtWidgetProc destroy ;
60
    XtProc obj8 ;
61
    XtProc obj9 ;
62
    XtSetValuesFunc set_values ;
63
    XtArgsFunc set_values_hook ;
64
    XtProc obj10 ;
65
    XtArgsProc get_values_hook ;
66
    XtProc obj11 ;
67
    XtVersionType version ;
68
    XtPointer callback_private ;
69
    String obj12 ;
70
    XtProc obj13 ;
71
    XtProc obj14 ;
72
    XtPointer extension ;
73
} ;
74
 
75
+FIELD (struct) ObjectClassRec := {
76
    ObjectClassPart object_class ;
77
} ;
78
 
79
+EXP lvalue ObjectClassRec objectClassRec ;
80
 
81
 
82
# ObjectPart Definition (12.2.2)
83
 
84
+FIELD ( struct ) ObjectPart {
85
    Widget self ;
86
    WidgetClass widget_class ;
87
    Widget parent ;
88
    Boolean being_destroyed ;
89
    XtCallbackList destroy_callbacks ;
90
    XtPointer constraints ;
91
} ;
92
 
93
+FIELD ObjectRec := {
94
    ObjectPart object ;
95
} ;