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
/* SCO CID (IXI) CommandP.h,v 1.1 1996/08/08 14:12:25 wendland Exp */
27
 
28
%%
29
#ifndef __MOTIF_P_HEADERS
30
#error Unexpected access to Motif P headers
31
#endif
32
%%
33
 
34
+USE "motif/1_2", "Xm/SelectioBP.h";
35
+USE "motif/1_2", "Xm/Command.h";
36
 
37
 
38
+FIELD (struct) _XmCommandConstraintPart := { 
39
 
40
	char	unused;
41
};
42
 
43
+TYPEDEF _XmCommandConstraintPart XmCommandConstraintPart;
44
+TYPEDEF _XmCommandConstraintPart * XmCommandConstraint;
45
 
46
+FIELD (struct) XmCommandClassPart := { 
47
 
48
	XtPointer	extension;
49
};
50
 
51
 
52
+FIELD (struct) _XmCommandClassRec := { 
53
 
54
	CoreClassPart			core_class;
55
	CompositeClassPart		composite_class;
56
	ConstraintClassPart		constraint_class;
57
	XmManagerClassPart		manager_class;
58
	XmBulletinBoardClassPart	bulletin_board_class;
59
	XmSelectionBoxClassPart		selection_box_class;
60
	XmCommandClassPart		command_class;
61
};
62
 
63
+TYPEDEF _XmCommandClassRec XmCommandClassRec;
64
 
65
+EXP lvalue XmCommandClassRec xmCommandClassRec;
66
 
67
+FIELD (struct) XmCommandPart := {
68
 
69
	XtCallbackList		callback;
70
	XtCallbackList		value_changed_callback;
71
	int			history_max_items;
72
	Boolean			error;
73
}; 
74
 
75
+FIELD (struct) _XmCommandRec := { 
76
 
77
	CorePart		core;
78
	CompositePart		composite;
79
	ConstraintPart		constraint;
80
	XmManagerPart       	manager;
81
	XmBulletinBoardPart 	bulletin_board;
82
	XmSelectionBoxPart  	selection_box;
83
	XmCommandPart       	command;
84
};
85
 
86
+TYPEDEF _XmCommandRec XmCommandRec;
87
 
88
+FUNC void _XmCommandReturn(Widget, XEvent *, String *, Cardinal *);
89
+FUNC void _XmCommandUpOrDown(Widget, XEvent *, String *, Cardinal *);
90
 
91