File: KeyWidget.h

package info (click to toggle)
xkeycaps 2.47-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,268 kB
  • sloc: ansic: 40,772; sh: 132; makefile: 11
file content (26 lines) | stat: -rw-r--r-- 839 bytes parent folder | download | duplicates (10)
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@jwz.org>
 *
 * 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_ */