File: KeyWidget.h

package info (click to toggle)
xkeycaps 2.42-3
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 2,504 kB
  • ctags: 2,272
  • sloc: ansic: 35,719; makefile: 523; sh: 125
file content (26 lines) | stat: -rw-r--r-- 844 bytes parent folder | download
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
/* xkeycaps, Copyright (c) 1991, 1992, 1993 Jamie Zawinski <jwz@netscape.com>
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation.  No representations are made about the suitability of this
 * software for any purpose.  It is provided "as is" without express or 
 * implied warranty.
 */


#ifndef _KeyWidget_H_
#define _KeyWidget_H_

typedef struct _KeyRec *KeyWidget;
typedef struct _KeyClassRec *KeyWidgetClass;

extern WidgetClass keyWidgetClass;

#ifdef __STDC__
extern void KeyHighlight (KeyWidget);
extern void KeyDehighlight (KeyWidget);
#endif

#endif /* _KeyWidget_H_ */