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) $ID$ */
|
|
|
28 |
|
|
|
29 |
%%
|
|
|
30 |
#ifndef __MOTIF_P_HEADERS
|
|
|
31 |
#error Unexpected access to Motif P headers
|
|
|
32 |
#endif
|
|
|
33 |
%%
|
|
|
34 |
|
|
|
35 |
+USE "motif/1_2", "Xm/ExtObjectP.h";
|
|
|
36 |
|
|
|
37 |
|
|
|
38 |
+FIELD (struct) _XmDesktopClassPart := {
|
|
|
39 |
|
|
|
40 |
WidgetClass child_class;
|
|
|
41 |
XtWidgetProc insert_child;
|
|
|
42 |
XtWidgetProc delete_child;
|
|
|
43 |
XtPointer extension;
|
|
|
44 |
};
|
|
|
45 |
|
|
|
46 |
+TYPEDEF _XmDesktopClassPart XmDesktopClassPart;
|
|
|
47 |
+TYPEDEF _XmDesktopClassPart *XmDesktopClassPartPtr;
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
+FIELD (struct) _XmDesktopClassRec := {
|
|
|
51 |
|
|
|
52 |
ObjectClassPart object_class;
|
|
|
53 |
XmExtClassPart ext_class;
|
|
|
54 |
XmDesktopClassPart desktop_class;
|
|
|
55 |
};
|
|
|
56 |
|
|
|
57 |
+TYPEDEF _XmDesktopClassRec XmDesktopClassRec;
|
|
|
58 |
+TYPEDEF _XmDesktopClassRec *XmDesktopObjectClass;
|
|
|
59 |
|
|
|
60 |
+FIELD (struct) XmDesktopPart := {
|
|
|
61 |
|
|
|
62 |
Widget parent;
|
|
|
63 |
Widget *children;
|
|
|
64 |
Cardinal num_children;
|
|
|
65 |
Cardinal num_slots;
|
|
|
66 |
};
|
|
|
67 |
|
|
|
68 |
+TYPEDEF XmDesktopPart *XmDesktopPartPtr;
|
|
|
69 |
|
|
|
70 |
+FIELD (struct) _XmDesktopRec := {
|
|
|
71 |
|
|
|
72 |
ObjectPart object;
|
|
|
73 |
XmExtPart ext;
|
|
|
74 |
XmDesktopPart desktop;
|
|
|
75 |
};
|
|
|
76 |
|
|
|
77 |
+TYPEDEF _XmDesktopRec XmDesktopRec;
|
|
|
78 |
+TYPEDEF _XmDesktopRec *XmDesktopObject;
|
|
|
79 |
|
|
|
80 |
|
|
|
81 |
+FUNC WidgetClass _XmGetActualClass(Display *, WidgetClass);
|
|
|
82 |
+FUNC void _XmSetActualClass(Display *, WidgetClass, WidgetClass);
|
|
|
83 |
|
|
|
84 |
|