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) ShellEP.h,v 1.1 1996/08/08 14:13:32 wendland Exp */
|
|
|
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/DesktopP.h";
|
|
|
36 |
+USE "x5/t", "X11/Shell.h";
|
|
|
37 |
+USE "x5/t", "X11/Intrinsic.h";
|
|
|
38 |
|
|
|
39 |
+DEFINE XmInheritEventHandler %% ((XtEventHandler)_XtInherit) %%;
|
|
|
40 |
|
|
|
41 |
+CONST int _XmRAW_MAP;
|
|
|
42 |
+CONST int _XmPOPUP_MAP;
|
|
|
43 |
+CONST int _XmMANAGE_MAP;
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
|
47 |
+FIELD (struct) XmShellExtClassPart := {
|
|
|
48 |
|
|
|
49 |
XtEventHandler structureNotifyHandler;
|
|
|
50 |
XtPointer extension;
|
|
|
51 |
};
|
|
|
52 |
|
|
|
53 |
+TYPEDEF XmShellExtClassPart *XmShellExtClassPartPtr;
|
|
|
54 |
|
|
|
55 |
+FIELD (struct) XmShellExtClassRec := {
|
|
|
56 |
|
|
|
57 |
ObjectClassPart object_class;
|
|
|
58 |
XmExtClassPart ext_class;
|
|
|
59 |
XmDesktopClassPart desktop_class;
|
|
|
60 |
XmShellExtClassPart shell_class;
|
|
|
61 |
};
|
|
|
62 |
|
|
|
63 |
|
|
|
64 |
+FIELD (struct) XmShellExtPart := {
|
|
|
65 |
|
|
|
66 |
unsigned long lastConfigureRequest;
|
|
|
67 |
Boolean useAsyncGeometry;
|
|
|
68 |
};
|
|
|
69 |
|
|
|
70 |
+TYPEDEF XmShellExtPart *XmShellExtPartPtr;
|
|
|
71 |
|
|
|
72 |
+EXP lvalue XmShellExtClassRec xmShellExtClassRec;
|
|
|
73 |
|
|
|
74 |
|
|
|
75 |
+FIELD (struct) XmShellExtRec := {
|
|
|
76 |
|
|
|
77 |
ObjectPart object;
|
|
|
78 |
XmExtPart ext;
|
|
|
79 |
XmDesktopPart desktop;
|
|
|
80 |
XmShellExtPart shell;
|
|
|
81 |
};
|
|
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
|
85 |
|