curses 1.3.2 → 1.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +19 -0
- data/.github/workflows/ubuntu.yml +26 -0
- data/.github/workflows/windows.yml +25 -0
- data/History.md +27 -0
- data/README.md +14 -46
- data/Rakefile +0 -86
- data/curses.gemspec +3 -4
- data/ext/curses/curses.c +194 -38
- data/ext/curses/extconf.rb +81 -22
- data/lib/curses.rb +5 -12
- data/sample/addch.rb +16 -0
- data/sample/attr_demo.rb +32 -0
- data/sample/colors.rb +26 -0
- data/sample/mouse_move.rb +75 -0
- data/vendor/PDCurses/.gitignore +47 -0
- data/vendor/PDCurses/.travis.yml +49 -0
- data/vendor/PDCurses/CMakeLists.txt +68 -0
- data/vendor/PDCurses/HISTORY.md +2036 -0
- data/vendor/PDCurses/IMPLEMNT.md +327 -0
- data/vendor/PDCurses/Makefile +27 -0
- data/vendor/PDCurses/README.md +77 -0
- data/vendor/PDCurses/acs_defs.h +265 -0
- data/vendor/PDCurses/appveyor.yml +218 -0
- data/vendor/PDCurses/cmake/README.md +71 -0
- data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
- data/vendor/PDCurses/cmake/build_options.cmake +25 -0
- data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
- data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
- data/vendor/PDCurses/cmake/get_version.cmake +17 -0
- data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
- data/vendor/PDCurses/cmake/project_common.cmake +121 -0
- data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
- data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
- data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
- data/vendor/PDCurses/cmake/version.in.cmake +73 -0
- data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
- data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
- data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
- data/vendor/PDCurses/curses.h +1846 -0
- data/vendor/PDCurses/curspriv.h +134 -0
- data/vendor/PDCurses/demos/README.md +25 -0
- data/vendor/PDCurses/demos/firework.c +144 -0
- data/vendor/PDCurses/demos/newtest.c +581 -0
- data/vendor/PDCurses/demos/ozdemo.c +447 -0
- data/vendor/PDCurses/demos/ptest.c +283 -0
- data/vendor/PDCurses/demos/rain.c +157 -0
- data/vendor/PDCurses/demos/testcurs.c +1607 -0
- data/vendor/PDCurses/demos/tui.c +1048 -0
- data/vendor/PDCurses/demos/tui.h +65 -0
- data/vendor/PDCurses/demos/tuidemo.c +233 -0
- data/vendor/PDCurses/demos/version.c +61 -0
- data/vendor/PDCurses/demos/worm.c +432 -0
- data/vendor/PDCurses/demos/xmas.c +955 -0
- data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
- data/vendor/PDCurses/dos/Makefile +105 -0
- data/vendor/PDCurses/dos/Makefile.bcc +83 -0
- data/vendor/PDCurses/dos/Makefile.dmc +257 -0
- data/vendor/PDCurses/dos/Makefile.msc +113 -0
- data/vendor/PDCurses/dos/Makefile.wcc +107 -0
- data/vendor/PDCurses/dos/README.md +51 -0
- data/vendor/PDCurses/dos/bccdos.lrf +9 -0
- data/vendor/PDCurses/dos/mscdos.lrf +50 -0
- data/vendor/PDCurses/dos/pdcclip.c +132 -0
- data/vendor/PDCurses/dos/pdcdisp.c +135 -0
- data/vendor/PDCurses/dos/pdcdos.h +194 -0
- data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
- data/vendor/PDCurses/dos/pdckbd.c +513 -0
- data/vendor/PDCurses/dos/pdcscrn.c +785 -0
- data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
- data/vendor/PDCurses/dos/pdcutil.c +212 -0
- data/vendor/PDCurses/libobjs.mif +26 -0
- data/vendor/PDCurses/makedist.mif +20 -0
- data/vendor/PDCurses/man/Makefile +37 -0
- data/vendor/PDCurses/man/README.md +21 -0
- data/vendor/PDCurses/man/intro.md +361 -0
- data/vendor/PDCurses/man/manext.c +119 -0
- data/vendor/PDCurses/man/sdl.md +152 -0
- data/vendor/PDCurses/man/sdl2.md +58 -0
- data/vendor/PDCurses/man/x11.md +407 -0
- data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
- data/vendor/PDCurses/ncurses/README.md +26 -0
- data/vendor/PDCurses/ncurses/makefile +29 -0
- data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
- data/vendor/PDCurses/os2/Makefile +132 -0
- data/vendor/PDCurses/os2/Makefile.bcc +90 -0
- data/vendor/PDCurses/os2/Makefile.wcc +43 -0
- data/vendor/PDCurses/os2/README.md +43 -0
- data/vendor/PDCurses/os2/iccos2.lrf +50 -0
- data/vendor/PDCurses/os2/iccos2.mak +256 -0
- data/vendor/PDCurses/os2/pdcclip.c +188 -0
- data/vendor/PDCurses/os2/pdcdisp.c +93 -0
- data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
- data/vendor/PDCurses/os2/pdckbd.c +521 -0
- data/vendor/PDCurses/os2/pdcos2.h +55 -0
- data/vendor/PDCurses/os2/pdcscrn.c +449 -0
- data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
- data/vendor/PDCurses/os2/pdcutil.c +52 -0
- data/vendor/PDCurses/panel.h +56 -0
- data/vendor/PDCurses/pdcurses/README.md +25 -0
- data/vendor/PDCurses/pdcurses/addch.c +693 -0
- data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
- data/vendor/PDCurses/pdcurses/addstr.c +240 -0
- data/vendor/PDCurses/pdcurses/attr.c +359 -0
- data/vendor/PDCurses/pdcurses/beep.c +68 -0
- data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
- data/vendor/PDCurses/pdcurses/border.c +411 -0
- data/vendor/PDCurses/pdcurses/clear.c +159 -0
- data/vendor/PDCurses/pdcurses/color.c +298 -0
- data/vendor/PDCurses/pdcurses/debug.c +109 -0
- data/vendor/PDCurses/pdcurses/delch.c +96 -0
- data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
- data/vendor/PDCurses/pdcurses/deprec.c +27 -0
- data/vendor/PDCurses/pdcurses/getch.c +417 -0
- data/vendor/PDCurses/pdcurses/getstr.c +474 -0
- data/vendor/PDCurses/pdcurses/getyx.c +139 -0
- data/vendor/PDCurses/pdcurses/inch.c +127 -0
- data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
- data/vendor/PDCurses/pdcurses/initscr.c +367 -0
- data/vendor/PDCurses/pdcurses/inopts.c +324 -0
- data/vendor/PDCurses/pdcurses/insch.c +271 -0
- data/vendor/PDCurses/pdcurses/insstr.c +264 -0
- data/vendor/PDCurses/pdcurses/instr.c +246 -0
- data/vendor/PDCurses/pdcurses/kernel.c +259 -0
- data/vendor/PDCurses/pdcurses/keyname.c +157 -0
- data/vendor/PDCurses/pdcurses/mouse.c +438 -0
- data/vendor/PDCurses/pdcurses/move.c +57 -0
- data/vendor/PDCurses/pdcurses/outopts.c +159 -0
- data/vendor/PDCurses/pdcurses/overlay.c +214 -0
- data/vendor/PDCurses/pdcurses/pad.c +260 -0
- data/vendor/PDCurses/pdcurses/panel.c +633 -0
- data/vendor/PDCurses/pdcurses/printw.c +126 -0
- data/vendor/PDCurses/pdcurses/refresh.c +279 -0
- data/vendor/PDCurses/pdcurses/scanw.c +578 -0
- data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
- data/vendor/PDCurses/pdcurses/scroll.c +101 -0
- data/vendor/PDCurses/pdcurses/slk.c +591 -0
- data/vendor/PDCurses/pdcurses/termattr.c +182 -0
- data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
- data/vendor/PDCurses/pdcurses/touch.c +163 -0
- data/vendor/PDCurses/pdcurses/util.c +312 -0
- data/vendor/PDCurses/pdcurses/window.c +569 -0
- data/vendor/PDCurses/sdl1/Makefile +129 -0
- data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
- data/vendor/PDCurses/sdl1/README.md +31 -0
- data/vendor/PDCurses/sdl1/deffont.h +385 -0
- data/vendor/PDCurses/sdl1/deficon.h +23 -0
- data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
- data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
- data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
- data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
- data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
- data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
- data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
- data/vendor/PDCurses/sdl1/sdltest.c +79 -0
- data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
- data/vendor/PDCurses/sdl2/Makefile +135 -0
- data/vendor/PDCurses/sdl2/Makefile.vc +164 -0
- data/vendor/PDCurses/sdl2/README.md +34 -0
- data/vendor/PDCurses/sdl2/deffont.h +385 -0
- data/vendor/PDCurses/sdl2/deficon.h +23 -0
- data/vendor/PDCurses/sdl2/pdcclip.c +93 -0
- data/vendor/PDCurses/sdl2/pdcdisp.c +534 -0
- data/vendor/PDCurses/sdl2/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl2/pdckbd.c +480 -0
- data/vendor/PDCurses/sdl2/pdcscrn.c +443 -0
- data/vendor/PDCurses/sdl2/pdcsdl.h +33 -0
- data/vendor/PDCurses/sdl2/pdcsetsc.c +67 -0
- data/vendor/PDCurses/sdl2/pdcutil.c +39 -0
- data/vendor/PDCurses/sdl2/sdltest.c +81 -0
- data/vendor/PDCurses/term.h +48 -0
- data/vendor/PDCurses/version.mif +7 -0
- data/vendor/PDCurses/vt/CMakeLists.txt +28 -0
- data/vendor/PDCurses/vt/Makefile +135 -0
- data/vendor/PDCurses/vt/Makefile.bcc +111 -0
- data/vendor/PDCurses/vt/Makefile.dmc +258 -0
- data/vendor/PDCurses/vt/Makefile.vc +144 -0
- data/vendor/PDCurses/vt/Makefile.wcc +107 -0
- data/vendor/PDCurses/vt/README.md +64 -0
- data/vendor/PDCurses/vt/pdcclip.c +20 -0
- data/vendor/PDCurses/vt/pdcdisp.c +284 -0
- data/vendor/PDCurses/vt/pdcgetsc.c +27 -0
- data/vendor/PDCurses/vt/pdckbd.c +394 -0
- data/vendor/PDCurses/vt/pdcscrn.c +434 -0
- data/vendor/PDCurses/vt/pdcsetsc.c +45 -0
- data/vendor/PDCurses/vt/pdcutil.c +43 -0
- data/vendor/PDCurses/vt/pdcvt.h +16 -0
- data/vendor/PDCurses/watcom.mif +68 -0
- data/vendor/PDCurses/wincon/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wincon/Makefile.bcc +88 -0
- data/vendor/PDCurses/wincon/Makefile.dmc +256 -0
- data/vendor/PDCurses/wincon/Makefile.lcc +273 -0
- data/vendor/PDCurses/wincon/Makefile.mng +176 -0
- data/vendor/PDCurses/wincon/Makefile.vc +144 -0
- data/vendor/PDCurses/wincon/Makefile.wcc +51 -0
- data/vendor/PDCurses/wincon/README.md +85 -0
- data/vendor/PDCurses/wincon/pdcclip.c +174 -0
- data/vendor/PDCurses/wincon/pdcdisp.c +143 -0
- data/vendor/PDCurses/wincon/pdcgetsc.c +55 -0
- data/vendor/PDCurses/wincon/pdckbd.c +786 -0
- data/vendor/PDCurses/wincon/pdcscrn.c +717 -0
- data/vendor/PDCurses/wincon/pdcsetsc.c +91 -0
- data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
- data/vendor/PDCurses/wincon/pdcurses.rc +28 -0
- data/vendor/PDCurses/wincon/pdcutil.c +41 -0
- data/vendor/PDCurses/wincon/pdcwin.h +31 -0
- data/vendor/PDCurses/wingui/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wingui/Makefile.bcc +85 -0
- data/vendor/PDCurses/wingui/Makefile.dmc +259 -0
- data/vendor/PDCurses/wingui/Makefile.lcc +273 -0
- data/vendor/PDCurses/wingui/Makefile.mng +171 -0
- data/vendor/PDCurses/wingui/Makefile.vc +144 -0
- data/vendor/PDCurses/wingui/Makefile.wcc +51 -0
- data/vendor/PDCurses/wingui/README.md +93 -0
- data/vendor/PDCurses/wingui/pdcclip.c +174 -0
- data/vendor/PDCurses/wingui/pdcdisp.c +718 -0
- data/vendor/PDCurses/wingui/pdcgetsc.c +30 -0
- data/vendor/PDCurses/wingui/pdckbd.c +143 -0
- data/vendor/PDCurses/wingui/pdcscrn.c +2797 -0
- data/vendor/PDCurses/wingui/pdcsetsc.c +89 -0
- data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
- data/vendor/PDCurses/wingui/pdcurses.rc +28 -0
- data/vendor/PDCurses/wingui/pdcutil.c +61 -0
- data/vendor/PDCurses/wingui/pdcwin.h +122 -0
- data/vendor/PDCurses/x11/Makefile.in +754 -0
- data/vendor/PDCurses/x11/PDCurses.spec +82 -0
- data/vendor/PDCurses/x11/README.md +62 -0
- data/vendor/PDCurses/x11/ScrollBox.c +319 -0
- data/vendor/PDCurses/x11/ScrollBox.h +51 -0
- data/vendor/PDCurses/x11/ScrollBoxP.h +70 -0
- data/vendor/PDCurses/x11/aclocal.m4 +994 -0
- data/vendor/PDCurses/x11/big_icon.xbm +46 -0
- data/vendor/PDCurses/x11/compose.h +201 -0
- data/vendor/PDCurses/x11/config.guess +1500 -0
- data/vendor/PDCurses/x11/config.h.in +100 -0
- data/vendor/PDCurses/x11/config.sub +1616 -0
- data/vendor/PDCurses/x11/configure +6700 -0
- data/vendor/PDCurses/x11/configure.ac +295 -0
- data/vendor/PDCurses/x11/debian/changelog +6 -0
- data/vendor/PDCurses/x11/debian/compat +1 -0
- data/vendor/PDCurses/x11/debian/control +11 -0
- data/vendor/PDCurses/x11/debian/copyright +27 -0
- data/vendor/PDCurses/x11/debian/rules +98 -0
- data/vendor/PDCurses/x11/install-sh +253 -0
- data/vendor/PDCurses/x11/little_icon.xbm +14 -0
- data/vendor/PDCurses/x11/ncurses_cfg.h +45 -0
- data/vendor/PDCurses/x11/pdcclip.c +173 -0
- data/vendor/PDCurses/x11/pdcdisp.c +85 -0
- data/vendor/PDCurses/x11/pdcgetsc.c +28 -0
- data/vendor/PDCurses/x11/pdckbd.c +104 -0
- data/vendor/PDCurses/x11/pdcscrn.c +258 -0
- data/vendor/PDCurses/x11/pdcsetsc.c +95 -0
- data/vendor/PDCurses/x11/pdcutil.c +52 -0
- data/vendor/PDCurses/x11/pdcx11.c +316 -0
- data/vendor/PDCurses/x11/pdcx11.h +191 -0
- data/vendor/PDCurses/x11/sb.c +155 -0
- data/vendor/PDCurses/x11/x11.c +3686 -0
- data/vendor/PDCurses/x11/xcurses-config.in +81 -0
- metadata +259 -25
- data/.travis.yml +0 -16
- data/appveyor.yml +0 -16
@@ -0,0 +1,259 @@
|
|
1
|
+
/* Public Domain Curses */
|
2
|
+
|
3
|
+
#include <curspriv.h>
|
4
|
+
|
5
|
+
/*man-start**************************************************************
|
6
|
+
|
7
|
+
kernel
|
8
|
+
------
|
9
|
+
|
10
|
+
### Synopsis
|
11
|
+
|
12
|
+
int def_prog_mode(void);
|
13
|
+
int def_shell_mode(void);
|
14
|
+
int reset_prog_mode(void);
|
15
|
+
int reset_shell_mode(void);
|
16
|
+
int resetty(void);
|
17
|
+
int savetty(void);
|
18
|
+
int ripoffline(int line, int (*init)(WINDOW *, int));
|
19
|
+
int curs_set(int visibility);
|
20
|
+
int napms(int ms);
|
21
|
+
|
22
|
+
int draino(int ms);
|
23
|
+
int resetterm(void);
|
24
|
+
int fixterm(void);
|
25
|
+
int saveterm(void);
|
26
|
+
|
27
|
+
### Description
|
28
|
+
|
29
|
+
def_prog_mode() and def_shell_mode() save the current terminal
|
30
|
+
modes as the "program" (in curses) or "shell" (not in curses)
|
31
|
+
state for use by the reset_prog_mode() and reset_shell_mode()
|
32
|
+
functions. This is done automatically by initscr().
|
33
|
+
|
34
|
+
reset_prog_mode() and reset_shell_mode() restore the terminal to
|
35
|
+
"program" (in curses) or "shell" (not in curses) state. These
|
36
|
+
are done automatically by endwin() and doupdate() after an
|
37
|
+
endwin(), so they would normally not be called before these
|
38
|
+
functions.
|
39
|
+
|
40
|
+
savetty() and resetty() save and restore the state of the
|
41
|
+
terminal modes. savetty() saves the current state in a buffer,
|
42
|
+
and resetty() restores the state to what it was at the last call
|
43
|
+
to savetty().
|
44
|
+
|
45
|
+
curs_set() alters the appearance of the cursor. A visibility of
|
46
|
+
0 makes it disappear; 1 makes it appear "normal" (usually an
|
47
|
+
underline) and 2 makes it "highly visible" (usually a block).
|
48
|
+
|
49
|
+
ripoffline() reduces the size of stdscr by one line. If the
|
50
|
+
"line" parameter is positive, the line is removed from the top
|
51
|
+
of the screen; if negative, from the bottom. Up to 5 lines can
|
52
|
+
be ripped off stdscr by calling ripoffline() repeatedly. The
|
53
|
+
function argument, init, is called from within initscr() or
|
54
|
+
newterm(), so ripoffline() must be called before either of these
|
55
|
+
functions. The init function receives a pointer to a one-line
|
56
|
+
WINDOW, and the width of the window. Calling ripoffline() with a
|
57
|
+
NULL init function pointer is an error.
|
58
|
+
|
59
|
+
napms() suspends the program for the specified number of
|
60
|
+
milliseconds. draino() is an archaic equivalent.
|
61
|
+
|
62
|
+
resetterm(), fixterm() and saveterm() are archaic equivalents
|
63
|
+
for reset_shell_mode(), reset_prog_mode() and def_prog_mode(),
|
64
|
+
respectively.
|
65
|
+
|
66
|
+
### Return Value
|
67
|
+
|
68
|
+
All functions return OK on success and ERR on error, except
|
69
|
+
curs_set(), which returns the previous visibility.
|
70
|
+
|
71
|
+
### Portability
|
72
|
+
X/Open BSD SYS V
|
73
|
+
def_prog_mode Y Y Y
|
74
|
+
def_shell_mode Y Y Y
|
75
|
+
reset_prog_mode Y Y Y
|
76
|
+
reset_shell_mode Y Y Y
|
77
|
+
resetty Y Y Y
|
78
|
+
savetty Y Y Y
|
79
|
+
ripoffline Y - 3.0
|
80
|
+
curs_set Y - 3.0
|
81
|
+
napms Y Y Y
|
82
|
+
draino -
|
83
|
+
resetterm -
|
84
|
+
fixterm -
|
85
|
+
saveterm -
|
86
|
+
|
87
|
+
**man-end****************************************************************/
|
88
|
+
|
89
|
+
#include <string.h>
|
90
|
+
|
91
|
+
RIPPEDOFFLINE linesripped[5];
|
92
|
+
char linesrippedoff = 0;
|
93
|
+
|
94
|
+
static struct cttyset
|
95
|
+
{
|
96
|
+
bool been_set;
|
97
|
+
SCREEN saved;
|
98
|
+
} ctty[3];
|
99
|
+
|
100
|
+
enum { PDC_SH_TTY, PDC_PR_TTY, PDC_SAVE_TTY };
|
101
|
+
|
102
|
+
static void _save_mode(int i)
|
103
|
+
{
|
104
|
+
ctty[i].been_set = TRUE;
|
105
|
+
|
106
|
+
memcpy(&(ctty[i].saved), SP, sizeof(SCREEN));
|
107
|
+
|
108
|
+
PDC_save_screen_mode(i);
|
109
|
+
}
|
110
|
+
|
111
|
+
static int _restore_mode(int i)
|
112
|
+
{
|
113
|
+
if (ctty[i].been_set == TRUE)
|
114
|
+
{
|
115
|
+
memcpy(SP, &(ctty[i].saved), sizeof(SCREEN));
|
116
|
+
|
117
|
+
if (ctty[i].saved.raw_out)
|
118
|
+
raw();
|
119
|
+
|
120
|
+
PDC_restore_screen_mode(i);
|
121
|
+
|
122
|
+
if ((LINES != ctty[i].saved.lines) ||
|
123
|
+
(COLS != ctty[i].saved.cols))
|
124
|
+
resize_term(ctty[i].saved.lines, ctty[i].saved.cols);
|
125
|
+
|
126
|
+
PDC_curs_set(ctty[i].saved.visibility);
|
127
|
+
|
128
|
+
PDC_gotoyx(ctty[i].saved.cursrow, ctty[i].saved.curscol);
|
129
|
+
}
|
130
|
+
|
131
|
+
return ctty[i].been_set ? OK : ERR;
|
132
|
+
}
|
133
|
+
|
134
|
+
int def_prog_mode(void)
|
135
|
+
{
|
136
|
+
PDC_LOG(("def_prog_mode() - called\n"));
|
137
|
+
|
138
|
+
_save_mode(PDC_PR_TTY);
|
139
|
+
|
140
|
+
return OK;
|
141
|
+
}
|
142
|
+
|
143
|
+
int def_shell_mode(void)
|
144
|
+
{
|
145
|
+
PDC_LOG(("def_shell_mode() - called\n"));
|
146
|
+
|
147
|
+
_save_mode(PDC_SH_TTY);
|
148
|
+
|
149
|
+
return OK;
|
150
|
+
}
|
151
|
+
|
152
|
+
int reset_prog_mode(void)
|
153
|
+
{
|
154
|
+
PDC_LOG(("reset_prog_mode() - called\n"));
|
155
|
+
|
156
|
+
_restore_mode(PDC_PR_TTY);
|
157
|
+
PDC_reset_prog_mode();
|
158
|
+
|
159
|
+
return OK;
|
160
|
+
}
|
161
|
+
|
162
|
+
int reset_shell_mode(void)
|
163
|
+
{
|
164
|
+
PDC_LOG(("reset_shell_mode() - called\n"));
|
165
|
+
|
166
|
+
_restore_mode(PDC_SH_TTY);
|
167
|
+
PDC_reset_shell_mode();
|
168
|
+
|
169
|
+
return OK;
|
170
|
+
}
|
171
|
+
|
172
|
+
int resetty(void)
|
173
|
+
{
|
174
|
+
PDC_LOG(("resetty() - called\n"));
|
175
|
+
|
176
|
+
return _restore_mode(PDC_SAVE_TTY);
|
177
|
+
}
|
178
|
+
|
179
|
+
int savetty(void)
|
180
|
+
{
|
181
|
+
PDC_LOG(("savetty() - called\n"));
|
182
|
+
|
183
|
+
_save_mode(PDC_SAVE_TTY);
|
184
|
+
|
185
|
+
return OK;
|
186
|
+
}
|
187
|
+
|
188
|
+
int curs_set(int visibility)
|
189
|
+
{
|
190
|
+
int ret_vis;
|
191
|
+
|
192
|
+
PDC_LOG(("curs_set() - called: visibility=%d\n", visibility));
|
193
|
+
|
194
|
+
if ((visibility < 0) || (visibility > 0x10000))
|
195
|
+
return ERR;
|
196
|
+
|
197
|
+
ret_vis = PDC_curs_set(visibility);
|
198
|
+
|
199
|
+
/* If the cursor is changing from invisible to visible, update
|
200
|
+
its position */
|
201
|
+
|
202
|
+
if (visibility && !ret_vis)
|
203
|
+
PDC_gotoyx(SP->cursrow, SP->curscol);
|
204
|
+
|
205
|
+
return ret_vis;
|
206
|
+
}
|
207
|
+
|
208
|
+
int napms(int ms)
|
209
|
+
{
|
210
|
+
PDC_LOG(("napms() - called: ms=%d\n", ms));
|
211
|
+
|
212
|
+
if (ms)
|
213
|
+
PDC_napms(ms);
|
214
|
+
|
215
|
+
return OK;
|
216
|
+
}
|
217
|
+
|
218
|
+
int ripoffline(int line, int (*init)(WINDOW *, int))
|
219
|
+
{
|
220
|
+
PDC_LOG(("ripoffline() - called: line=%d\n", line));
|
221
|
+
|
222
|
+
if (linesrippedoff < 5 && line && init)
|
223
|
+
{
|
224
|
+
linesripped[(int)linesrippedoff].line = line;
|
225
|
+
linesripped[(int)linesrippedoff++].init = init;
|
226
|
+
|
227
|
+
return OK;
|
228
|
+
}
|
229
|
+
|
230
|
+
return ERR;
|
231
|
+
}
|
232
|
+
|
233
|
+
int draino(int ms)
|
234
|
+
{
|
235
|
+
PDC_LOG(("draino() - called\n"));
|
236
|
+
|
237
|
+
return napms(ms);
|
238
|
+
}
|
239
|
+
|
240
|
+
int resetterm(void)
|
241
|
+
{
|
242
|
+
PDC_LOG(("resetterm() - called\n"));
|
243
|
+
|
244
|
+
return reset_shell_mode();
|
245
|
+
}
|
246
|
+
|
247
|
+
int fixterm(void)
|
248
|
+
{
|
249
|
+
PDC_LOG(("fixterm() - called\n"));
|
250
|
+
|
251
|
+
return reset_prog_mode();
|
252
|
+
}
|
253
|
+
|
254
|
+
int saveterm(void)
|
255
|
+
{
|
256
|
+
PDC_LOG(("saveterm() - called\n"));
|
257
|
+
|
258
|
+
return def_prog_mode();
|
259
|
+
}
|
@@ -0,0 +1,157 @@
|
|
1
|
+
/* Public Domain Curses */
|
2
|
+
|
3
|
+
#include <curspriv.h>
|
4
|
+
|
5
|
+
/*man-start**************************************************************
|
6
|
+
|
7
|
+
keyname
|
8
|
+
-------
|
9
|
+
|
10
|
+
### Synopsis
|
11
|
+
|
12
|
+
char *keyname(int key);
|
13
|
+
|
14
|
+
char *key_name(wchar_t c);
|
15
|
+
|
16
|
+
bool has_key(int key);
|
17
|
+
|
18
|
+
### Description
|
19
|
+
|
20
|
+
keyname() returns a string corresponding to the argument key.
|
21
|
+
key may be any key returned by wgetch().
|
22
|
+
|
23
|
+
key_name() is the wide-character version. It takes a wchar_t
|
24
|
+
parameter, but still returns a char *.
|
25
|
+
|
26
|
+
has_key() returns TRUE for recognized keys, FALSE otherwise.
|
27
|
+
This function is an ncurses extension.
|
28
|
+
|
29
|
+
### Portability
|
30
|
+
X/Open BSD SYS V
|
31
|
+
keyname Y - 3.0
|
32
|
+
key_name Y
|
33
|
+
has_key - - -
|
34
|
+
|
35
|
+
**man-end****************************************************************/
|
36
|
+
|
37
|
+
#include <string.h>
|
38
|
+
|
39
|
+
char *keyname(int key)
|
40
|
+
{
|
41
|
+
static char _keyname[14];
|
42
|
+
|
43
|
+
/* Key names must be in exactly the same order as in curses.h */
|
44
|
+
|
45
|
+
static char *key_names[] =
|
46
|
+
{
|
47
|
+
"KEY_BREAK", "KEY_DOWN", "KEY_UP", "KEY_LEFT", "KEY_RIGHT",
|
48
|
+
"KEY_HOME", "KEY_BACKSPACE", "KEY_F0", "KEY_F(1)", "KEY_F(2)",
|
49
|
+
"KEY_F(3)", "KEY_F(4)", "KEY_F(5)", "KEY_F(6)", "KEY_F(7)",
|
50
|
+
"KEY_F(8)", "KEY_F(9)", "KEY_F(10)", "KEY_F(11)", "KEY_F(12)",
|
51
|
+
"KEY_F(13)", "KEY_F(14)", "KEY_F(15)", "KEY_F(16)", "KEY_F(17)",
|
52
|
+
"KEY_F(18)", "KEY_F(19)", "KEY_F(20)", "KEY_F(21)", "KEY_F(22)",
|
53
|
+
"KEY_F(23)", "KEY_F(24)", "KEY_F(25)", "KEY_F(26)", "KEY_F(27)",
|
54
|
+
"KEY_F(28)", "KEY_F(29)", "KEY_F(30)", "KEY_F(31)", "KEY_F(32)",
|
55
|
+
"KEY_F(33)", "KEY_F(34)", "KEY_F(35)", "KEY_F(36)", "KEY_F(37)",
|
56
|
+
"KEY_F(38)", "KEY_F(39)", "KEY_F(40)", "KEY_F(41)", "KEY_F(42)",
|
57
|
+
"KEY_F(43)", "KEY_F(44)", "KEY_F(45)", "KEY_F(46)", "KEY_F(47)",
|
58
|
+
"KEY_F(48)", "KEY_F(49)", "KEY_F(50)", "KEY_F(51)", "KEY_F(52)",
|
59
|
+
"KEY_F(53)", "KEY_F(54)", "KEY_F(55)", "KEY_F(56)", "KEY_F(57)",
|
60
|
+
"KEY_F(58)", "KEY_F(59)", "KEY_F(60)", "KEY_F(61)", "KEY_F(62)",
|
61
|
+
"KEY_F(63)", "KEY_DL", "KEY_IL", "KEY_DC", "KEY_IC", "KEY_EIC",
|
62
|
+
"KEY_CLEAR", "KEY_EOS", "KEY_EOL", "KEY_SF", "KEY_SR",
|
63
|
+
"KEY_NPAGE", "KEY_PPAGE", "KEY_STAB", "KEY_CTAB", "KEY_CATAB",
|
64
|
+
"KEY_ENTER", "KEY_SRESET", "KEY_RESET", "KEY_PRINT", "KEY_LL",
|
65
|
+
"KEY_ABORT", "KEY_SHELP", "KEY_LHELP", "KEY_BTAB", "KEY_BEG",
|
66
|
+
"KEY_CANCEL", "KEY_CLOSE", "KEY_COMMAND", "KEY_COPY",
|
67
|
+
"KEY_CREATE", "KEY_END", "KEY_EXIT", "KEY_FIND", "KEY_HELP",
|
68
|
+
"KEY_MARK", "KEY_MESSAGE", "KEY_MOVE", "KEY_NEXT", "KEY_OPEN",
|
69
|
+
"KEY_OPTIONS", "KEY_PREVIOUS", "KEY_REDO", "KEY_REFERENCE",
|
70
|
+
"KEY_REFRESH", "KEY_REPLACE", "KEY_RESTART", "KEY_RESUME",
|
71
|
+
"KEY_SAVE", "KEY_SBEG", "KEY_SCANCEL", "KEY_SCOMMAND",
|
72
|
+
"KEY_SCOPY", "KEY_SCREATE", "KEY_SDC", "KEY_SDL", "KEY_SELECT",
|
73
|
+
"KEY_SEND", "KEY_SEOL", "KEY_SEXIT", "KEY_SFIND", "KEY_SHOME",
|
74
|
+
"KEY_SIC", "UNKNOWN KEY", "KEY_SLEFT", "KEY_SMESSAGE",
|
75
|
+
"KEY_SMOVE", "KEY_SNEXT", "KEY_SOPTIONS", "KEY_SPREVIOUS",
|
76
|
+
"KEY_SPRINT", "KEY_SREDO", "KEY_SREPLACE", "KEY_SRIGHT",
|
77
|
+
"KEY_SRSUME", "KEY_SSAVE", "KEY_SSUSPEND", "KEY_SUNDO",
|
78
|
+
"KEY_SUSPEND", "KEY_UNDO", "ALT_0", "ALT_1", "ALT_2", "ALT_3",
|
79
|
+
"ALT_4", "ALT_5", "ALT_6", "ALT_7", "ALT_8", "ALT_9", "ALT_A",
|
80
|
+
"ALT_B", "ALT_C", "ALT_D", "ALT_E", "ALT_F", "ALT_G", "ALT_H",
|
81
|
+
"ALT_I", "ALT_J", "ALT_K", "ALT_L", "ALT_M", "ALT_N", "ALT_O",
|
82
|
+
"ALT_P", "ALT_Q", "ALT_R", "ALT_S", "ALT_T", "ALT_U", "ALT_V",
|
83
|
+
"ALT_W", "ALT_X", "ALT_Y", "ALT_Z", "CTL_LEFT", "CTL_RIGHT",
|
84
|
+
"CTL_PGUP", "CTL_PGDN", "CTL_HOME", "CTL_END", "KEY_A1",
|
85
|
+
"KEY_A2", "KEY_A3", "KEY_B1", "KEY_B2", "KEY_B3", "KEY_C1",
|
86
|
+
"KEY_C2", "KEY_C3", "PADSLASH", "PADENTER", "CTL_PADENTER",
|
87
|
+
"ALT_PADENTER", "PADSTOP", "PADSTAR", "PADMINUS", "PADPLUS",
|
88
|
+
"CTL_PADSTOP", "CTL_PADCENTER", "CTL_PADPLUS", "CTL_PADMINUS",
|
89
|
+
"CTL_PADSLASH", "CTL_PADSTAR", "ALT_PADPLUS", "ALT_PADMINUS",
|
90
|
+
"ALT_PADSLASH", "ALT_PADSTAR", "ALT_PADSTOP", "CTL_INS",
|
91
|
+
"ALT_DEL", "ALT_INS", "CTL_UP", "CTL_DOWN", "CTL_TAB",
|
92
|
+
"ALT_TAB", "ALT_MINUS", "ALT_EQUAL", "ALT_HOME", "ALT_PGUP",
|
93
|
+
"ALT_PGDN", "ALT_END", "ALT_UP", "ALT_DOWN", "ALT_RIGHT",
|
94
|
+
"ALT_LEFT", "ALT_ENTER", "ALT_ESC", "ALT_BQUOTE",
|
95
|
+
"ALT_LBRACKET", "ALT_RBRACKET", "ALT_SEMICOLON", "ALT_FQUOTE",
|
96
|
+
"ALT_COMMA", "ALT_STOP", "ALT_FSLASH", "ALT_BKSP", "CTL_BKSP",
|
97
|
+
"PAD0", "CTL_PAD0", "CTL_PAD1", "CTL_PAD2", "CTL_PAD3",
|
98
|
+
"CTL_PAD4", "CTL_PAD5", "CTL_PAD6", "CTL_PAD7","CTL_PAD8",
|
99
|
+
"CTL_PAD9", "ALT_PAD0", "ALT_PAD1", "ALT_PAD2", "ALT_PAD3",
|
100
|
+
"ALT_PAD4", "ALT_PAD5", "ALT_PAD6", "ALT_PAD7", "ALT_PAD8",
|
101
|
+
"ALT_PAD9", "CTL_DEL", "ALT_BSLASH", "CTL_ENTER",
|
102
|
+
"SHF_PADENTER", "SHF_PADSLASH", "SHF_PADSTAR", "SHF_PADPLUS",
|
103
|
+
"SHF_PADMINUS", "SHF_UP", "SHF_DOWN", "SHF_IC", "SHF_DC",
|
104
|
+
"KEY_MOUSE", "KEY_SHIFT_L", "KEY_SHIFT_R", "KEY_CONTROL_L",
|
105
|
+
"KEY_CONTROL_R", "KEY_ALT_L", "KEY_ALT_R", "KEY_RESIZE",
|
106
|
+
"KEY_SUP", "KEY_SDOWN",
|
107
|
+
/* Win32a extras: */
|
108
|
+
"CTL_SEMICOLON", "CTL_EQUAL", "CTL_COMMA",
|
109
|
+
"CTL_MINUS", "CTL_STOP", "CTL_FSLASH",
|
110
|
+
"CTL_BQUOTE", "KEY_APPS", "KEY_SAPPS", "CTL_APPS",
|
111
|
+
"ALT_APPS", "KEY_PAUSE", "KEY_SPAUSE",
|
112
|
+
"CTL_PAUSE", "KEY_PRINTSCREEN", "ALT_PRINTSCREEN",
|
113
|
+
"KEY_SCROLLLOCK", "ALT_SCROLLLOCK",
|
114
|
+
"CTL_0", "CTL_1", "CTL_2", "CTL_3", "CTL_4",
|
115
|
+
"CTL_5", "CTL_6", "CTL_7", "CTL_8", "CTL_9",
|
116
|
+
"BROWSER_BACK", "SBROWSER_BACK", "CBROWSER_BACK", "ABROWSER_BACK",
|
117
|
+
"BROWSER_FWD", "SBROWSER_FWD", "CBROWSER_FWD", "ABROWSER_FWD",
|
118
|
+
"BROWSER_REF", "SBROWSER_REF", "CBROWSER_REF", "ABROWSER_REF",
|
119
|
+
"BROWSER_STOP", "SBROWSER_STOP", "CBROWSER_STOP", "ABROWSER_STOP",
|
120
|
+
"SEARCH", "SSEARCH", "CSEARCH", "ASEARCH",
|
121
|
+
"FAVORITES", "SFAVORITES", "CFAVORITES", "AFAVORITES",
|
122
|
+
"BROWSER_HOME", "SBROWSER_HOME", "CBROWSER_HOME", "ABROWSER_HOME",
|
123
|
+
"VOLUME_MUTE", "SVOLUME_MUTE", "CVOLUME_MUTE", "AVOLUME_MUTE",
|
124
|
+
"VOLUME_DOWN", "SVOLUME_DOWN", "CVOLUME_DOWN", "AVOLUME_DOWN",
|
125
|
+
"VOLUME_UP", "SVOLUME_UP", "CVOLUME_UP", "AVOLUME_UP",
|
126
|
+
"NEXT_TRACK", "SNEXT_TRACK", "CNEXT_TRACK", "ANEXT_TRACK",
|
127
|
+
"PREV_TRACK", "SPREV_TRACK", "CPREV_TRACK", "APREV_TRACK",
|
128
|
+
"MEDIA_STOP", "SMEDIA_STOP", "CMEDIA_STOP", "AMEDIA_STOP",
|
129
|
+
"PLAY_PAUSE", "SPLAY_PAUSE", "CPLAY_PAUSE", "APLAY_PAUSE",
|
130
|
+
"LAUNCH_MAIL", "SLAUNCH_MAIL", "CLAUNCH_MAIL", "ALAUNCH_MAIL",
|
131
|
+
"MEDIA_SELECT", "SMEDIA_SELECT", "CMEDIA_SELECT", "AMEDIA_SELECT",
|
132
|
+
"LAUNCH_APP1", "SLAUNCH_APP1", "CLAUNCH_APP1", "ALAUNCH_APP1",
|
133
|
+
"LAUNCH_APP2", "SLAUNCH_APP2", "CLAUNCH_APP2", "ALAUNCH_APP2" };
|
134
|
+
|
135
|
+
PDC_LOG(("keyname() - called: key %d\n", key));
|
136
|
+
|
137
|
+
strcpy(_keyname, ((key >= 0) && (key < 0x80)) ? unctrl((chtype)key) :
|
138
|
+
has_key(key) ? key_names[key - KEY_MIN] : "UNKNOWN KEY");
|
139
|
+
|
140
|
+
return _keyname;
|
141
|
+
}
|
142
|
+
|
143
|
+
bool has_key(int key)
|
144
|
+
{
|
145
|
+
PDC_LOG(("has_key() - called: key %d\n", key));
|
146
|
+
|
147
|
+
return (key >= KEY_MIN && key <= KEY_MAX);
|
148
|
+
}
|
149
|
+
|
150
|
+
#ifdef PDC_WIDE
|
151
|
+
char *key_name(wchar_t c)
|
152
|
+
{
|
153
|
+
PDC_LOG(("key_name() - called\n"));
|
154
|
+
|
155
|
+
return keyname((int)c);
|
156
|
+
}
|
157
|
+
#endif
|