-
Notifications
You must be signed in to change notification settings - Fork 6
/
LiteClue.h
78 lines (65 loc) · 2.57 KB
/
LiteClue.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
LiteClue.h - Public definitions for LiteClue widget
See LiteClue documentation
Copyright 1996 COMPUTER GENERATION, INC.,
The software is provided "as is", without warranty of any kind, express
or implied, including but not limited to the warranties of
merchantability, fitness for a particular purpose and noninfringement.
In no event shall Computer Generation, inc. nor the author be liable for
any claim, damages or other liability, whether in an action of contract,
tort or otherwise, arising from, out of or in connection with the
software or the use or other dealings in the software.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation.
Author:
Gary Aviv
Computer Generation, Inc.,
*/
/*************************************************************************\
* Copyright (c) 1994-2004 The University of Chicago, as Operator of Argonne
* National Laboratory.
* Copyright (c) 1997-2003 Southeastern Universities Research Association,
* as Operator of Thomas Jefferson National Accelerator Facility.
* Copyright (c) 1997-2002 Deutches Elektronen-Synchrotron in der Helmholtz-
* Gemelnschaft (DESY).
* This file is distributed subject to a Software License Agreement found
* in the file LICENSE that is included with this distribution.
\*************************************************************************/
/* Revision History:
LiteClue.h,v
* Revision 1.1 1997/08/22 15:21:50 larrieu
* added new buttons for graph panel & freeware hints
*
Revision 1.2 1996/10/20 13:39:25 gary
Version 1.2 freeze
Revision 1.1 1996/10/19 16:08:04 gary
Initial
$log
Version 1.3 freeze
$log
*/
#ifndef _DEF_LiteClue_h
#define _DEF_LiteClue_h
#include <X11/StringDefs.h>
/*
* New resource names
*/
#define XgcNcancelWaitPeriod "cancelWaitPeriod"
#define XgcNwaitPeriod "waitPeriod"
/*
* New resource classes
*/
#define XgcCCancelWaitPeriod "cancelWaitPeriod"
#define XgcCWaitPeriod "WaitPeriod"
extern WidgetClass xcgLiteClueWidgetClass;
typedef struct _LiteClueClassRec *XcgLiteClueWidgetClass;
typedef struct _LiteClueRec *XcgLiteClueWidget;
void XcgLiteClueAddWidget(Widget w, Widget watch, char * text, int size, int option );
void XcgLiteClueDeleteWidget(Widget w, Widget watch);
void XcgLiteClueSetSensitive(Widget w, Widget watch, Boolean sensitive);
Boolean XcgLiteClueGetSensitive(Widget w, Widget watch);
#endif