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,327 @@
|
|
1
|
+
PDCurses Implementor's Guide
|
2
|
+
============================
|
3
|
+
|
4
|
+
- Version 1.3 - 20??/??/?? - notes about official ports, new indentation
|
5
|
+
style; markdown
|
6
|
+
- Version 1.2 - 2007/07/11 - added PDC_init_pair(), PDC_pair_content(),
|
7
|
+
version history; removed pdc_atrtab
|
8
|
+
- Version 1.1 - 2007/06/06 - minor cosmetic change
|
9
|
+
- Version 1.0 - 2007/04/01 - initial revision
|
10
|
+
|
11
|
+
This document is for those wishing to port PDCurses to a new platform,
|
12
|
+
or just wanting to better understand how it works. Nothing here should
|
13
|
+
be needed for application programming; for that, refer to PDCurses.md,
|
14
|
+
as built in doc/, or distributed as a file separate from this source
|
15
|
+
package. This document assumes that you've read the user-level
|
16
|
+
documentation and are very familiar with application-level curses
|
17
|
+
programming.
|
18
|
+
|
19
|
+
If you want to submit your port for possible inclusion into the main
|
20
|
+
PDCurses distribution, please follow these guidelines:
|
21
|
+
|
22
|
+
- Don't modify anything in the pdcurses directory or in other port
|
23
|
+
directories. Don't modify curses.h or curspriv.h unless absolutely
|
24
|
+
necessary. (And prefer modifying curspriv.h over curses.h.)
|
25
|
+
|
26
|
+
- Use the same indentation style, naming and scope conventions as the
|
27
|
+
existing code.
|
28
|
+
|
29
|
+
- Release all your code to the public domain -- no copyright. Code
|
30
|
+
under GPL, BSD, etc. will not be accepted.
|
31
|
+
|
32
|
+
|
33
|
+
Data Structures
|
34
|
+
===============
|
35
|
+
|
36
|
+
A port of PDCurses must provide acs_map[], a 128-element array of
|
37
|
+
chtypes, with values laid out based on the Alternate Character Set of
|
38
|
+
the VT100 (see curses.h). PDC_transform_line() must use this table; when
|
39
|
+
it encounters a chtype with the A_ALTCHARSET flag set, and an A_CHARTEXT
|
40
|
+
value in the range 0-127, it must render it using the A_CHARTEXT portion
|
41
|
+
of the corresponding value from this table, instead of the original
|
42
|
+
value. Also, values may be read from this table by apps, and passed
|
43
|
+
through functions such as waddch(), which does no special processing on
|
44
|
+
control characters (0-31 and 127) when the A_ALTCHARSET flag is set.
|
45
|
+
Thus, any control characters used in acs_map[] should also have the
|
46
|
+
A_ALTCHARSET flag set. Implementations should provide suitable values
|
47
|
+
for all the ACS_ macros defined in curses.h; other values in the table
|
48
|
+
should be filled with their own indices (e.g., acs_map['E'] == 'E'). The
|
49
|
+
table can be either hardwired, or filled by PDC_scr_open(). Existing
|
50
|
+
ports define it in pdcdisp.c, but this is not required.
|
51
|
+
|
52
|
+
|
53
|
+
Functions
|
54
|
+
=========
|
55
|
+
|
56
|
+
A port of PDCurses must implement the following functions, with extern
|
57
|
+
scope. These functions are traditionally divided into several modules,
|
58
|
+
as indicated below; this division is not required (only the functions
|
59
|
+
are), but may make it easier to follow for someone familiar with the
|
60
|
+
existing ports.
|
61
|
+
|
62
|
+
Any other functions you create as part of your implementation should
|
63
|
+
have static scope, if possible. If they can't be static, they should be
|
64
|
+
named with the "PDC_" prefix. This minimizes the risk of collision with
|
65
|
+
an application's choices.
|
66
|
+
|
67
|
+
Current PDCurses style also uses a single leading underscore with the
|
68
|
+
name of any static function; and modified BSD/Allman-style indentation,
|
69
|
+
approximately equivalent to "indent -kr -nut -bl -bli0", with
|
70
|
+
adjustments to keep every line under 80 columns.
|
71
|
+
|
72
|
+
|
73
|
+
pdcdisp.c:
|
74
|
+
----------
|
75
|
+
|
76
|
+
### void PDC_gotoyx(int y, int x);
|
77
|
+
|
78
|
+
Move the physical cursor (as opposed to the logical cursor affected by
|
79
|
+
wmove()) to the given location. This is called mainly from doupdate().
|
80
|
+
In general, this function need not compare the old location with the new
|
81
|
+
one, and should just move the cursor unconditionally.
|
82
|
+
|
83
|
+
### void PDC_transform_line(int lineno, int x, int len, const chtype *srcp);
|
84
|
+
|
85
|
+
The core output routine. It takes len chtype entities from srcp (a
|
86
|
+
pointer into curscr) and renders them to the physical screen at line
|
87
|
+
lineno, column x. It must also translate characters 0-127 via acs_map[],
|
88
|
+
if they're flagged with A_ALTCHARSET in the attribute portion of the
|
89
|
+
chtype.
|
90
|
+
|
91
|
+
|
92
|
+
pdcgetsc.c:
|
93
|
+
-----------
|
94
|
+
|
95
|
+
### int PDC_get_columns(void);
|
96
|
+
|
97
|
+
Returns the size of the screen in columns. It's used in resize_term() to
|
98
|
+
set the new value of COLS. (Some existing implementations also call it
|
99
|
+
internally from PDC_scr_open(), but this is not required.)
|
100
|
+
|
101
|
+
### int PDC_get_cursor_mode(void);
|
102
|
+
|
103
|
+
Returns the size/shape of the cursor. The format of the result is
|
104
|
+
unspecified, except that it must be returned as an int. This function is
|
105
|
+
called from initscr(), and the result is stored in SP->orig_cursor,
|
106
|
+
which is used by PDC_curs_set() to determine the size/shape of the
|
107
|
+
cursor in normal visibility mode (curs_set(1)).
|
108
|
+
|
109
|
+
### int PDC_get_rows(void);
|
110
|
+
|
111
|
+
Returns the size of the screen in rows. It's used in resize_term() to
|
112
|
+
set the new value of LINES. (Some existing implementations also call it
|
113
|
+
internally from PDC_scr_open(), but this is not required.)
|
114
|
+
|
115
|
+
|
116
|
+
pdckbd.c:
|
117
|
+
---------
|
118
|
+
|
119
|
+
### bool PDC_check_key(void);
|
120
|
+
|
121
|
+
Keyboard/mouse event check, called from wgetch(). Returns TRUE if
|
122
|
+
there's an event ready to process. This function must be non-blocking.
|
123
|
+
|
124
|
+
### void PDC_flushinp(void);
|
125
|
+
|
126
|
+
This is the core of flushinp(). It discards any pending key or mouse
|
127
|
+
events, removing them from any internal queue and from the OS queue, if
|
128
|
+
applicable.
|
129
|
+
|
130
|
+
### int PDC_get_key(void);
|
131
|
+
|
132
|
+
Get the next available key, or mouse event (indicated by a return of
|
133
|
+
KEY_MOUSE), and remove it from the OS' input queue, if applicable. This
|
134
|
+
function is called from wgetch(). This function may be blocking, and
|
135
|
+
traditionally is; but it need not be. If a valid key or mouse event
|
136
|
+
cannot be returned, for any reason, this function returns -1. Valid keys
|
137
|
+
are those that fall within the appropriate character set, or are in the
|
138
|
+
list of special keys found in curses.h (KEY_MIN through KEY_MAX). When
|
139
|
+
returning a special key code, this routine must also set SP->key_code to
|
140
|
+
TRUE; otherwise it must set it to FALSE. If SP->return_key_modifiers is
|
141
|
+
TRUE, this function may return modifier keys (shift, control, alt),
|
142
|
+
pressed alone, as special key codes; if SP->return_key_modifiers is
|
143
|
+
FALSE, it must not. If modifier keys are returned, it should only happen
|
144
|
+
if no other keys were pressed in the meantime; i.e., the return should
|
145
|
+
happen on key up. But if this is not possible, it may return the
|
146
|
+
modifier keys on key down (if and only if SP->return_key_modifiers is
|
147
|
+
TRUE).
|
148
|
+
|
149
|
+
### int PDC_modifiers_set(void);
|
150
|
+
|
151
|
+
Called from PDC_return_key_modifiers(). If your platform needs to do
|
152
|
+
anything in response to a change in SP->return_key_modifiers, do it
|
153
|
+
here. Returns OK or ERR, which is passed on by the caller.
|
154
|
+
|
155
|
+
### int PDC_mouse_set(void);
|
156
|
+
|
157
|
+
Called by mouse_set(), mouse_on(), and mouse_off() -- all the functions
|
158
|
+
that modify SP->_trap_mbe. If your platform needs to do anything in
|
159
|
+
response to a change in SP->_trap_mbe (for example, turning the mouse
|
160
|
+
cursor on or off), do it here. Returns OK or ERR, which is passed on by
|
161
|
+
the caller.
|
162
|
+
|
163
|
+
### void PDC_set_keyboard_binary(bool on);
|
164
|
+
|
165
|
+
Set keyboard input to "binary" mode. If you need to do something to keep
|
166
|
+
the OS from processing ^C, etc. on your platform, do it here. TRUE turns
|
167
|
+
the mode on; FALSE reverts it. This function is called from raw() and
|
168
|
+
noraw().
|
169
|
+
|
170
|
+
|
171
|
+
pdcscrn.c:
|
172
|
+
----------
|
173
|
+
|
174
|
+
### bool PDC_can_change_color(void);
|
175
|
+
|
176
|
+
Returns TRUE if init_color() and color_content() give meaningful
|
177
|
+
results, FALSE otherwise. Called from can_change_color().
|
178
|
+
|
179
|
+
### int PDC_color_content(short color, short *red, short *green, short *blue);
|
180
|
+
|
181
|
+
The core of color_content(). This does all the work of that function,
|
182
|
+
except checking for values out of range and null pointers.
|
183
|
+
|
184
|
+
### int PDC_init_color(short color, short red, short green, short blue);
|
185
|
+
|
186
|
+
The core of init_color(). This does all the work of that function,
|
187
|
+
except checking for values out of range.
|
188
|
+
|
189
|
+
### void PDC_init_pair(short pair, short fg, short bg);
|
190
|
+
|
191
|
+
The core of init_pair(). This does all the work of that function, except
|
192
|
+
checking for values out of range. The values passed to this function
|
193
|
+
should be returned by a call to PDC_pair_content() with the same pair
|
194
|
+
number. PDC_transform_line() should use the specified colors when
|
195
|
+
rendering a chtype with the given pair number.
|
196
|
+
|
197
|
+
### int PDC_pair_content(short pair, short *fg, short *bg);
|
198
|
+
|
199
|
+
The core of pair_content(). This does all the work of that function,
|
200
|
+
except checking for values out of range and null pointers.
|
201
|
+
|
202
|
+
### void PDC_reset_prog_mode(void);
|
203
|
+
|
204
|
+
The non-portable functionality of reset_prog_mode() is handled here --
|
205
|
+
whatever's not done in _restore_mode(). In current ports: In OS/2, this
|
206
|
+
sets the keyboard to binary mode; in Win32, it enables or disables the
|
207
|
+
mouse pointer to match the saved mode; in others it does nothing.
|
208
|
+
|
209
|
+
### void PDC_reset_shell_mode(void);
|
210
|
+
|
211
|
+
The same thing, for reset_shell_mode(). In OS/2 and Win32, it restores
|
212
|
+
the default console mode; in others it does nothing.
|
213
|
+
|
214
|
+
### int PDC_resize_screen(int nlines, int ncols);
|
215
|
+
|
216
|
+
This does the main work of resize_term(). It may respond to non-zero
|
217
|
+
parameters, by setting the screen to the specified size; to zero
|
218
|
+
parameters, by setting the screen to a size chosen by the user at
|
219
|
+
runtime, in an unspecified way (e.g., by dragging the edges of the
|
220
|
+
window); or both. It may also do nothing, if there's no appropriate
|
221
|
+
action for the platform.
|
222
|
+
|
223
|
+
### void PDC_restore_screen_mode(int i);
|
224
|
+
|
225
|
+
Called from _restore_mode() in kernel.c, this function does the actual
|
226
|
+
mode changing, if applicable. Currently used only in DOS and OS/2.
|
227
|
+
|
228
|
+
### void PDC_save_screen_mode(int i);
|
229
|
+
|
230
|
+
Called from _save_mode() in kernel.c, this function saves the actual
|
231
|
+
screen mode, if applicable. Currently used only in DOS and OS/2.
|
232
|
+
|
233
|
+
### void PDC_scr_close(void);
|
234
|
+
|
235
|
+
The platform-specific part of endwin(). It may restore the image of the
|
236
|
+
original screen saved by PDC_scr_open(), if the PDC_RESTORE_SCREEN
|
237
|
+
environment variable is set; either way, if using an existing terminal,
|
238
|
+
this function should restore it to the mode it had at startup, and move
|
239
|
+
the cursor to the lower left corner. (The X11 port does nothing.)
|
240
|
+
|
241
|
+
### void PDC_scr_free(void);
|
242
|
+
|
243
|
+
Frees the memory for SP allocated by PDC_scr_open(). Called by
|
244
|
+
delscreen().
|
245
|
+
|
246
|
+
### int PDC_scr_open(int argc, char **argv);
|
247
|
+
|
248
|
+
The platform-specific part of initscr(). It's actually called from
|
249
|
+
Xinitscr(); the arguments, if present, correspond to those used with
|
250
|
+
main(), and may be used to set the title of the terminal window, or for
|
251
|
+
other, platform-specific purposes. (The arguments are currently used
|
252
|
+
only in X11.) PDC_scr_open() must allocate memory for SP, and must
|
253
|
+
initialize acs_map[] (unless it's preset) and several members of SP,
|
254
|
+
including lines, cols, mouse_wait, orig_attr (and if orig_attr is TRUE,
|
255
|
+
orig_fore and orig_back), mono, _restore and _preserve. (Although SP is
|
256
|
+
used the same way in all ports, it's allocated here in order to allow
|
257
|
+
the X11 port to map it to a block of shared memory.) If using an
|
258
|
+
existing terminal, and the environment variable PDC_RESTORE_SCREEN is
|
259
|
+
set, this function may also store the existing screen image for later
|
260
|
+
restoration by PDC_scr_close().
|
261
|
+
|
262
|
+
|
263
|
+
pdcsetsc.c:
|
264
|
+
-----------
|
265
|
+
|
266
|
+
### int PDC_curs_set(int visibility);
|
267
|
+
|
268
|
+
Called from curs_set(). Changes the appearance of the cursor -- 0 turns
|
269
|
+
it off, 1 is normal (the terminal's default, if applicable, as
|
270
|
+
determined by SP->orig_cursor), and 2 is high visibility. The exact
|
271
|
+
appearance of these modes is not specified.
|
272
|
+
|
273
|
+
|
274
|
+
pdcutil.c:
|
275
|
+
----------
|
276
|
+
|
277
|
+
### void PDC_beep(void);
|
278
|
+
|
279
|
+
Emits a short audible beep. If this is not possible on your platform,
|
280
|
+
you must set SP->audible to FALSE during initialization (i.e., from
|
281
|
+
PDC_scr_open() -- not here); otherwise, set it to TRUE. This function is
|
282
|
+
called from beep().
|
283
|
+
|
284
|
+
### void PDC_napms(int ms);
|
285
|
+
|
286
|
+
This is the core delay routine, called by napms(). It pauses for about
|
287
|
+
(the X/Open spec says "at least") ms milliseconds, then returns. High
|
288
|
+
degrees of accuracy and precision are not expected (though desirable, if
|
289
|
+
you can achieve them). More important is that this function gives back
|
290
|
+
the process' time slice to the OS, so that PDCurses idles at low CPU
|
291
|
+
usage.
|
292
|
+
|
293
|
+
### const char *PDC_sysname(void);
|
294
|
+
|
295
|
+
Returns a short string describing the platform, such as "DOS" or "X11".
|
296
|
+
This is used by longname(). It must be no more than 100 characters; it
|
297
|
+
should be much, much shorter (existing platforms use no more than 5).
|
298
|
+
|
299
|
+
|
300
|
+
More functions
|
301
|
+
==============
|
302
|
+
|
303
|
+
The following functions are implemented in the platform directories, but
|
304
|
+
are accessed directly by apps. Refer to the user documentation for their
|
305
|
+
descriptions:
|
306
|
+
|
307
|
+
|
308
|
+
pdcclip.c:
|
309
|
+
----------
|
310
|
+
|
311
|
+
### int PDC_clearclipboard(void);
|
312
|
+
### int PDC_freeclipboard(char *contents);
|
313
|
+
### int PDC_getclipboard(char **contents, long *length);
|
314
|
+
### int PDC_setclipboard(const char *contents, long length);
|
315
|
+
|
316
|
+
|
317
|
+
pdckbd.c:
|
318
|
+
---------
|
319
|
+
|
320
|
+
### unsigned long PDC_get_input_fd(void);
|
321
|
+
|
322
|
+
|
323
|
+
pdcsetsc.c:
|
324
|
+
-----------
|
325
|
+
|
326
|
+
### int PDC_set_blink(bool blinkon);
|
327
|
+
### void PDC_set_title(const char *title);
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Make archives for distribution
|
2
|
+
|
3
|
+
include version.mif
|
4
|
+
|
5
|
+
PDC_DIR=PDCurses-$(VERDOT)
|
6
|
+
|
7
|
+
ZIPFILE = pdcurs$(VER).zip
|
8
|
+
TARBALL = $(PDC_DIR).tar.gz
|
9
|
+
|
10
|
+
all:
|
11
|
+
@echo Look in folders for platform-specific build instructions.
|
12
|
+
|
13
|
+
manual:
|
14
|
+
cd man; $(MAKE) $(MFLAGS) $@
|
15
|
+
|
16
|
+
$(ZIPFILE):
|
17
|
+
zip -9ory $(ZIPFILE) *
|
18
|
+
|
19
|
+
zip: $(ZIPFILE)
|
20
|
+
|
21
|
+
../$(TARBALL):
|
22
|
+
(cd ..; tar cvf - $(PDC_DIR)/* | gzip -9 > $(TARBALL))
|
23
|
+
|
24
|
+
dist: ../$(TARBALL)
|
25
|
+
|
26
|
+
rpm: ../$(TARBALL)
|
27
|
+
rpmbuild -ba x11/PDCurses.spec
|
@@ -0,0 +1,77 @@
|
|
1
|
+
Welcome to PDCurses!
|
2
|
+
====================
|
3
|
+
|
4
|
+
Public Domain Curses, aka PDCurses, is an implementation of X/Open
|
5
|
+
curses for multiple platforms. Relative to the 'official' PDCurses
|
6
|
+
project, this has a variety of improvements, adding a Windows GUI
|
7
|
+
and a VT-like console "flavor" of Curses and expanding the
|
8
|
+
capabilities of the other flavors (SDL1, SDL2, X11, Win32 console,
|
9
|
+
OS/2, and DOS). Some details and screen shots at
|
10
|
+
|
11
|
+
https://www.projectpluto.com/win32a.htm
|
12
|
+
|
13
|
+
Much of this was done during a long period in which 'official'
|
14
|
+
PDCurses was inactive. It is hoped that the changes in this fork
|
15
|
+
can be merged into the 'official' PDCurses, and a pull request has
|
16
|
+
been made. But the split is looking increasingly permanent.
|
17
|
+
|
18
|
+
Legal Stuff
|
19
|
+
-----------
|
20
|
+
|
21
|
+
The core package is in the public domain, but small portions of PDCurses
|
22
|
+
are subject to copyright under various licenses. Each directory
|
23
|
+
contains a README file, with a section titled "Distribution Status"
|
24
|
+
which describes the status of the files in that directory.
|
25
|
+
|
26
|
+
If you use PDCurses in an application, an acknowledgement would be
|
27
|
+
appreciated, but is not mandatory. If you make corrections or
|
28
|
+
enhancements to PDCurses, please forward them to the current maintainer
|
29
|
+
for the benefit of other users.
|
30
|
+
|
31
|
+
This software is provided AS IS with NO WARRANTY whatsoever.
|
32
|
+
|
33
|
+
|
34
|
+
Ports
|
35
|
+
-----
|
36
|
+
|
37
|
+
PDCurses has been ported to DOS, OS/2, Win32, X11 and SDL1 and SDL2,
|
38
|
+
and this version adds a Windows graphical and VT-like console
|
39
|
+
flavor. A directory containing the port-specific source files exists
|
40
|
+
for each of these platforms.
|
41
|
+
|
42
|
+
Build instructions are in the README file for each platform:
|
43
|
+
|
44
|
+
- [DOS](dos/README.md) for use on DOS
|
45
|
+
- [OS/2](os2/README.md) for use on OS/2
|
46
|
+
- [SDL 1.x](sdl1/README.md) for use as separate SDL version 1 window
|
47
|
+
- [SDL 2.x](sdl2/README.md) for use as separate SDL version 2 window
|
48
|
+
- [wincon](wincon/README.md) (formerly win32) for use on Windows Console
|
49
|
+
- [WinGUI](wingui/README.md) for use on Windows Graphics Mode
|
50
|
+
- [X11](x11/README.md) (also called XCurses) for use as separate X11 window
|
51
|
+
- [VT](vt/README.md) for use on terminal
|
52
|
+
|
53
|
+
Distribution Status
|
54
|
+
-------------------
|
55
|
+
|
56
|
+
All files in this directory except configure, config.guess and
|
57
|
+
config.sub are released to the Public Domain. config.guess and
|
58
|
+
config.sub are under the GPL; configure is under a free license
|
59
|
+
described within it.
|
60
|
+
|
61
|
+
Build Status
|
62
|
+
-------------------
|
63
|
+
|
64
|
+
PDCurses is automatically build in multiple environments:
|
65
|
+
|
66
|
+
[![Build status Travis-CI](https://api.travis-ci.com/Bill-Gray/PDCurses.svg?branch=master)](https://travis-ci.com/Bill-Gray/PDCurses)
|
67
|
+
, also providing artifacts: [![Build status Appveyor](https://ci.appveyor.com/api/projects/status/github/Bill-Gray/PDCurses?branch=master&svg=true)](https://ci.appveyor.com/project/Bill-Gray/PDCurses)
|
68
|
+
|
69
|
+
|
70
|
+
Maintainer
|
71
|
+
----------
|
72
|
+
|
73
|
+
William McBrine <wmcbrine@gmail.com> ("official" PDCurses)
|
74
|
+
|
75
|
+
Bill Gray
|
76
|
+
p‮ôç.ötulpťcéjôřp@otúl‬m
|
77
|
+
(this fork)
|