Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/tendra4/src/lib/apis/motif/1_2/Xm/PushBP.h – Rev 2

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | 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) PushBP.h,v 1.1 1996/08/08 14:13:15 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/PushB.h";
35
+USE "motif/1_2", "Xm/LabelP.h";
36
 
37
+FIELD (struct) _XmPushButtonClassPart := {
38
 
39
   	XtPointer	extension;
40
};
41
 
42
+TYPEDEF _XmPushButtonClassPart XmPushButtonClassPart;
43
 
44
+FIELD (struct) _XmPushButtonClassRec := {
45
 
46
    CoreClassPart	  core_class;
47
    XmPrimitiveClassPart  primitive_class;
48
    XmLabelClassPart      label_class;
49
    XmPushButtonClassPart pushbutton_class;
50
};
51
 
52
+TYPEDEF _XmPushButtonClassRec XmPushButtonClassRec;
53
 
54
 
55
+EXP lvalue XmPushButtonClassRec xmPushButtonClassRec;
56
 
57
+FIELD (struct) _XmPushButtonPart := {
58
 
59
   Boolean 	    	fill_on_arm;
60
   Dimension        	show_as_default;
61
   Pixel	    	arm_color;
62
   Pixmap	    	arm_pixmap;
63
   XtCallbackList   	activate_callback;
64
   XtCallbackList   	arm_callback;
65
   XtCallbackList   	disarm_callback;
66
 
67
   Boolean 	    	armed;
68
   Pixmap	    	unarm_pixmap;
69
   GC               	fill_gc;
70
   GC               	background_gc;
71
   XtIntervalId     	timer;	
72
   unsigned char    	multiClick;
73
   int		   	click_count;
74
   Time		    	armTimeStamp;
75
   Boolean      	compatible;
76
   Dimension    	default_button_shadow_thickness;  
77
};
78
 
79
+TYPEDEF _XmPushButtonPart XmPushButtonPart;
80
 
81
 
82
+FIELD (struct) _XmPushButtonRec := {
83
 
84
    CorePart	     core;
85
    XmPrimitivePart  primitive;
86
    XmLabelPart      label;
87
    XmPushButtonPart pushbutton;
88
};
89
 
90
+TYPEDEF _XmPushButtonRec XmPushButtonRec;
91
 
92
+FUNC void _XmClearBCompatibility(Widget pb) ;
93