diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-12-14 23:15:49 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-12-14 23:15:49 +0000 |
commit | 85875eb16f014a38c312cea35747914999fc8a9c (patch) | |
tree | 95a0b7c1fa6d208d9488103bc3daae261834e3f6 /lib/libcurses/keyok.3 | |
parent | e5757431ced4619d88d5113d93ab180c85c880c5 (diff) |
ncurses-4.1-971213
Diffstat (limited to 'lib/libcurses/keyok.3')
-rw-r--r-- | lib/libcurses/keyok.3 | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/lib/libcurses/keyok.3 b/lib/libcurses/keyok.3 new file mode 100644 index 00000000000..355ccd781ab --- /dev/null +++ b/lib/libcurses/keyok.3 @@ -0,0 +1,60 @@ +.\" $OpenBSD: keyok.3,v 1.1 1997/12/14 23:15:45 millert Exp $ +.\"***************************************************************************** +.\" Copyright 1997 by Thomas E. Dickey <dickey@clark.net> * +.\" All Rights Reserved. * +.\" * +.\" 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, and that the name of the above listed copyright holder(s) * +.\" not be used in advertising or publicity pertaining to distribution of the * +.\" software without specific, written prior permission. THE ABOVE LISTED * +.\" COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * +.\" INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO * +.\" EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY * +.\" SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER * +.\" RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF * +.\" CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * +.\" CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * +.\"***************************************************************************** +.\" Id: keyok.3x,v 1.3 1997/12/14 01:17:02 tom Exp $ +.TH keyok 3 "" +. +.SH NAME +\fBkeyok\fP \- enable or disable a keycode +. +.SH SYNOPSIS +\fB#include <curses.h>\fP + +\fBint keyok(int keycode, bool enable);\fP +. +.SH DESCRIPTION +This is an extension to the curses library. +It permits an application to disable specific keycodes, rather than +use the \fIkeypad\fP function to disable all keycodes. +Keys that have been disabled can be reenabled. +. +.SH RETURN VALUE +The keycode must be greater than zero, else ERR is returned. +If it does not correspond to a defined key, then ERR is returned. +If the \fIenable\fP parameter is true, then the key must have been disabled, +and vice versa. +Otherwise, the function returns OK. +. +.SH PORTABILITY +These routines are specific to ncurses. They were not supported on +Version 7, BSD or System V implementations. It is recommended that +any code depending on them be conditioned using NCURSES_VERSION. +. +.SH SEE ALSO +\fBdefine_key\fR(3). +. +.SH AUTHOR +Thomas Dickey. +.\"# +.\"# The following sets edit modes for GNU EMACS +.\"# Local Variables: +.\"# mode:nroff +.\"# fill-column:79 +.\"# End: |