Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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) MenuShellP.h,v 1.1 1996/08/08 14:13:04 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/MenuShell.h";
36
+USE "motif/1_2", "Xm/XmP.h";
37
+USE "x5/t", "X11/ShellP.h";
38
 
39
+FIELD (struct) XmMenuShellPart := {
40
 
41
	unsigned char	focus_policy;
42
	XmFocusData	focus_data;
43
	Boolean		private_shell;
44
	XmFontList	default_font_list;
45
	XmFontList	button_font_list;
46
	XmFontList	label_font_list;
47
};
48
 
49
 
50
+FIELD (struct) _XmMenuShellRec := {
51
 
52
	CorePart		core;
53
	CompositePart		composite;
54
	ShellPart		shell;
55
	OverrideShellPart	override;
56
	XmMenuShellPart		menu_shell;
57
};
58
 
59
+TYPEDEF _XmMenuShellRec XmMenuShellRec;
60
 
61
/* OBSOLETE for combatability only */
62
+FIELD (struct) _XmMenuShellWidgetRec := {
63
 
64
	CorePart		core;
65
	CompositePart		composite;
66
	ShellPart		shell;
67
	OverrideShellPart	override;
68
	XmMenuShellPart		menu_shell;
69
};
70
 
71
+TYPEDEF _XmMenuShellWidgetRec XmMenuShellWidgetRec;
72
 
73
 
74
+FIELD (struct) XmMenuShellClassPart := { 
75
 
76
	XtActionProc		popdownOne;
77
	XtActionProc		popdownEveryone;
78
	XtActionProc		popdownDone;
79
	XmMenuPopupProc		popupSharedMenupane;
80
 
81
	XtPointer		extension;
82
};
83
 
84
 
85
+FIELD (struct) _XmMenuShellClassRec := {
86
 
87
	CoreClassPart		core_class;
88
	CompositeClassPart	composite_class;
89
	ShellClassPart		shell_class;
90
	OverrideShellClassPart	override_shell_class;
91
	XmMenuShellClassPart	menu_shell_class;
92
};
93
 
94
+TYPEDEF _XmMenuShellClassRec XmMenuShellClassRec;
95
 
96
+EXP lvalue XmMenuShellClassRec xmMenuShellClassRec;
97
 
98
+MACRO unsigned char MS_FocusPolicy(Widget);
99
 
100
+FUNC void _XmEnterRowColumn(Widget, XtPointer, XEvent *, Boolean *);
101
+FUNC void _XmClearTraversal(Widget, XEvent *, String *, Cardinal *);
102
+FUNC void _XmSetLastManagedMenuTime(Widget, Time);
103
 
104
 
105
 
106