/usr/include/Xm/ToolTipCT.h is in libmotif-dev 2.3.4-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | /**
*
* $Id: ToolTipCT.h,v 1.1 2004/11/18 08:54:33 yura Exp $
*
**/
#ifndef _XmToolTipCT_H
#define _XmToolTipCT_H
#ifdef __cplusplus
extern "C" {
#endif
#include <Xm/Xm.h>
externalref XrmQuark XmQTtoolTipConfig;
/* Trait structures and typedefs, place typedefs first */
typedef struct _XmToolTipConfigTraitRec
{
int version;
Widget label; /* XmLabel for the tips */
int post_delay; /* delay before posting XmNtoolTipPostDelay */
int post_duration; /* duration XmNtoolTipPostDuration */
XtIntervalId timer; /* timer for post delay */
XtIntervalId duration_timer; /* timer for duration */
Time leave_time; /* time of the last leave event */
Widget slider; /* the XmSlideContext used to slide in the tip */
Boolean enable; /* flag to disable all this stuff */
} XmToolTipConfigTraitRec, *XmToolTipConfigTrait;
#ifdef __cplusplus
} /* Close scope of 'extern "C"' declaration which encloses file. */
#endif
#endif /* _XmToolTipCT_H */
|