curses 1.2.6 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (253) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/macos.yml +19 -0
  3. data/.github/workflows/ubuntu.yml +26 -0
  4. data/.github/workflows/windows.yml +28 -0
  5. data/.gitmodules +1 -1
  6. data/.travis.yml +6 -3
  7. data/History.md +40 -0
  8. data/README.md +4 -1
  9. data/Rakefile +0 -83
  10. data/curses.gemspec +2 -3
  11. data/ext/curses/curses.c +1271 -151
  12. data/ext/curses/extconf.rb +140 -17
  13. data/lib/curses.rb +5 -12
  14. data/sample/form.rb +52 -0
  15. data/sample/menu.rb +1 -1
  16. data/vendor/PDCurses/.gitignore +47 -0
  17. data/vendor/PDCurses/.travis.yml +49 -0
  18. data/vendor/PDCurses/CMakeLists.txt +68 -0
  19. data/vendor/PDCurses/HISTORY.md +2036 -0
  20. data/vendor/PDCurses/IMPLEMNT.md +327 -0
  21. data/vendor/PDCurses/README.md +77 -0
  22. data/vendor/PDCurses/acs_defs.h +265 -0
  23. data/vendor/PDCurses/appveyor.yml +218 -0
  24. data/vendor/PDCurses/cmake/README.md +71 -0
  25. data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
  26. data/vendor/PDCurses/cmake/build_options.cmake +25 -0
  27. data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
  28. data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
  29. data/vendor/PDCurses/cmake/get_version.cmake +17 -0
  30. data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
  31. data/vendor/PDCurses/cmake/project_common.cmake +121 -0
  32. data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
  33. data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
  34. data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
  35. data/vendor/PDCurses/cmake/version.in.cmake +73 -0
  36. data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
  37. data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
  38. data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
  39. data/vendor/PDCurses/curses.h +1846 -0
  40. data/vendor/PDCurses/curspriv.h +134 -0
  41. data/vendor/PDCurses/demos/README.md +25 -0
  42. data/vendor/PDCurses/demos/firework.c +144 -0
  43. data/vendor/PDCurses/demos/newtest.c +581 -0
  44. data/vendor/PDCurses/demos/ozdemo.c +447 -0
  45. data/vendor/PDCurses/demos/ptest.c +283 -0
  46. data/vendor/PDCurses/demos/rain.c +157 -0
  47. data/vendor/PDCurses/demos/testcurs.c +1607 -0
  48. data/vendor/PDCurses/demos/tui.c +1048 -0
  49. data/vendor/PDCurses/demos/tui.h +65 -0
  50. data/vendor/PDCurses/demos/tuidemo.c +233 -0
  51. data/vendor/PDCurses/demos/version.c +61 -0
  52. data/vendor/PDCurses/demos/worm.c +432 -0
  53. data/vendor/PDCurses/demos/xmas.c +955 -0
  54. data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
  55. data/vendor/PDCurses/dos/Makefile.bcc +83 -0
  56. data/vendor/PDCurses/dos/Makefile.dmc +257 -0
  57. data/vendor/PDCurses/dos/Makefile.msc +113 -0
  58. data/vendor/PDCurses/dos/Makefile.wcc +107 -0
  59. data/vendor/PDCurses/dos/README.md +51 -0
  60. data/vendor/PDCurses/dos/bccdos.lrf +9 -0
  61. data/vendor/PDCurses/dos/mscdos.lrf +50 -0
  62. data/vendor/PDCurses/dos/pdcclip.c +132 -0
  63. data/vendor/PDCurses/dos/pdcdisp.c +135 -0
  64. data/vendor/PDCurses/dos/pdcdos.h +194 -0
  65. data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
  66. data/vendor/PDCurses/dos/pdckbd.c +513 -0
  67. data/vendor/PDCurses/dos/pdcscrn.c +785 -0
  68. data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
  69. data/vendor/PDCurses/dos/pdcutil.c +212 -0
  70. data/vendor/PDCurses/libobjs.mif +26 -0
  71. data/vendor/PDCurses/makedist.mif +20 -0
  72. data/vendor/PDCurses/man/README.md +21 -0
  73. data/vendor/PDCurses/man/intro.md +361 -0
  74. data/vendor/PDCurses/man/manext.c +119 -0
  75. data/vendor/PDCurses/man/sdl.md +152 -0
  76. data/vendor/PDCurses/man/sdl2.md +58 -0
  77. data/vendor/PDCurses/man/x11.md +407 -0
  78. data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
  79. data/vendor/PDCurses/ncurses/README.md +26 -0
  80. data/vendor/PDCurses/ncurses/makefile +29 -0
  81. data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
  82. data/vendor/PDCurses/os2/Makefile.bcc +90 -0
  83. data/vendor/PDCurses/os2/Makefile.wcc +43 -0
  84. data/vendor/PDCurses/os2/README.md +43 -0
  85. data/vendor/PDCurses/os2/iccos2.lrf +50 -0
  86. data/vendor/PDCurses/os2/iccos2.mak +256 -0
  87. data/vendor/PDCurses/os2/pdcclip.c +188 -0
  88. data/vendor/PDCurses/os2/pdcdisp.c +93 -0
  89. data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
  90. data/vendor/PDCurses/os2/pdckbd.c +521 -0
  91. data/vendor/PDCurses/os2/pdcos2.h +55 -0
  92. data/vendor/PDCurses/os2/pdcscrn.c +449 -0
  93. data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
  94. data/vendor/PDCurses/os2/pdcutil.c +52 -0
  95. data/vendor/PDCurses/panel.h +56 -0
  96. data/vendor/PDCurses/pdcurses/README.md +25 -0
  97. data/vendor/PDCurses/pdcurses/addch.c +693 -0
  98. data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
  99. data/vendor/PDCurses/pdcurses/addstr.c +240 -0
  100. data/vendor/PDCurses/pdcurses/attr.c +359 -0
  101. data/vendor/PDCurses/pdcurses/beep.c +68 -0
  102. data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
  103. data/vendor/PDCurses/pdcurses/border.c +411 -0
  104. data/vendor/PDCurses/pdcurses/clear.c +159 -0
  105. data/vendor/PDCurses/pdcurses/color.c +298 -0
  106. data/vendor/PDCurses/pdcurses/debug.c +109 -0
  107. data/vendor/PDCurses/pdcurses/delch.c +96 -0
  108. data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
  109. data/vendor/PDCurses/pdcurses/deprec.c +27 -0
  110. data/vendor/PDCurses/pdcurses/getch.c +417 -0
  111. data/vendor/PDCurses/pdcurses/getstr.c +474 -0
  112. data/vendor/PDCurses/pdcurses/getyx.c +139 -0
  113. data/vendor/PDCurses/pdcurses/inch.c +127 -0
  114. data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
  115. data/vendor/PDCurses/pdcurses/initscr.c +367 -0
  116. data/vendor/PDCurses/pdcurses/inopts.c +324 -0
  117. data/vendor/PDCurses/pdcurses/insch.c +271 -0
  118. data/vendor/PDCurses/pdcurses/insstr.c +264 -0
  119. data/vendor/PDCurses/pdcurses/instr.c +246 -0
  120. data/vendor/PDCurses/pdcurses/kernel.c +259 -0
  121. data/vendor/PDCurses/pdcurses/keyname.c +157 -0
  122. data/vendor/PDCurses/pdcurses/mouse.c +438 -0
  123. data/vendor/PDCurses/pdcurses/move.c +57 -0
  124. data/vendor/PDCurses/pdcurses/outopts.c +159 -0
  125. data/vendor/PDCurses/pdcurses/overlay.c +214 -0
  126. data/vendor/PDCurses/pdcurses/pad.c +260 -0
  127. data/vendor/PDCurses/pdcurses/panel.c +633 -0
  128. data/vendor/PDCurses/pdcurses/printw.c +126 -0
  129. data/vendor/PDCurses/pdcurses/refresh.c +279 -0
  130. data/vendor/PDCurses/pdcurses/scanw.c +578 -0
  131. data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
  132. data/vendor/PDCurses/pdcurses/scroll.c +101 -0
  133. data/vendor/PDCurses/pdcurses/slk.c +591 -0
  134. data/vendor/PDCurses/pdcurses/termattr.c +182 -0
  135. data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
  136. data/vendor/PDCurses/pdcurses/touch.c +163 -0
  137. data/vendor/PDCurses/pdcurses/util.c +312 -0
  138. data/vendor/PDCurses/pdcurses/window.c +569 -0
  139. data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
  140. data/vendor/PDCurses/sdl1/README.md +31 -0
  141. data/vendor/PDCurses/sdl1/deffont.h +385 -0
  142. data/vendor/PDCurses/sdl1/deficon.h +23 -0
  143. data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
  144. data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
  145. data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
  146. data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
  147. data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
  148. data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
  149. data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
  150. data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
  151. data/vendor/PDCurses/sdl1/sdltest.c +79 -0
  152. data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
  153. data/vendor/PDCurses/sdl2/Makefile.vc +164 -0
  154. data/vendor/PDCurses/sdl2/README.md +34 -0
  155. data/vendor/PDCurses/sdl2/deffont.h +385 -0
  156. data/vendor/PDCurses/sdl2/deficon.h +23 -0
  157. data/vendor/PDCurses/sdl2/pdcclip.c +93 -0
  158. data/vendor/PDCurses/sdl2/pdcdisp.c +534 -0
  159. data/vendor/PDCurses/sdl2/pdcgetsc.c +30 -0
  160. data/vendor/PDCurses/sdl2/pdckbd.c +480 -0
  161. data/vendor/PDCurses/sdl2/pdcscrn.c +443 -0
  162. data/vendor/PDCurses/sdl2/pdcsdl.h +33 -0
  163. data/vendor/PDCurses/sdl2/pdcsetsc.c +67 -0
  164. data/vendor/PDCurses/sdl2/pdcutil.c +39 -0
  165. data/vendor/PDCurses/sdl2/sdltest.c +81 -0
  166. data/vendor/PDCurses/term.h +48 -0
  167. data/vendor/PDCurses/version.mif +7 -0
  168. data/vendor/PDCurses/vt/CMakeLists.txt +28 -0
  169. data/vendor/PDCurses/vt/Makefile.bcc +111 -0
  170. data/vendor/PDCurses/vt/Makefile.dmc +258 -0
  171. data/vendor/PDCurses/vt/Makefile.vc +144 -0
  172. data/vendor/PDCurses/vt/Makefile.wcc +107 -0
  173. data/vendor/PDCurses/vt/README.md +64 -0
  174. data/vendor/PDCurses/vt/pdcclip.c +20 -0
  175. data/vendor/PDCurses/vt/pdcdisp.c +284 -0
  176. data/vendor/PDCurses/vt/pdcgetsc.c +27 -0
  177. data/vendor/PDCurses/vt/pdckbd.c +394 -0
  178. data/vendor/PDCurses/vt/pdcscrn.c +434 -0
  179. data/vendor/PDCurses/vt/pdcsetsc.c +45 -0
  180. data/vendor/PDCurses/vt/pdcutil.c +43 -0
  181. data/vendor/PDCurses/vt/pdcvt.h +16 -0
  182. data/vendor/PDCurses/watcom.mif +68 -0
  183. data/vendor/PDCurses/wincon/CMakeLists.txt +27 -0
  184. data/vendor/PDCurses/wincon/Makefile.bcc +88 -0
  185. data/vendor/PDCurses/wincon/Makefile.dmc +256 -0
  186. data/vendor/PDCurses/wincon/Makefile.lcc +273 -0
  187. data/vendor/PDCurses/wincon/Makefile.mng +176 -0
  188. data/vendor/PDCurses/wincon/Makefile.vc +144 -0
  189. data/vendor/PDCurses/wincon/Makefile.wcc +51 -0
  190. data/vendor/PDCurses/wincon/README.md +85 -0
  191. data/vendor/PDCurses/wincon/pdcclip.c +174 -0
  192. data/vendor/PDCurses/wincon/pdcdisp.c +143 -0
  193. data/vendor/PDCurses/wincon/pdcgetsc.c +55 -0
  194. data/vendor/PDCurses/wincon/pdckbd.c +786 -0
  195. data/vendor/PDCurses/wincon/pdcscrn.c +717 -0
  196. data/vendor/PDCurses/wincon/pdcsetsc.c +91 -0
  197. data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
  198. data/vendor/PDCurses/wincon/pdcurses.rc +28 -0
  199. data/vendor/PDCurses/wincon/pdcutil.c +41 -0
  200. data/vendor/PDCurses/wincon/pdcwin.h +31 -0
  201. data/vendor/PDCurses/wingui/CMakeLists.txt +27 -0
  202. data/vendor/PDCurses/wingui/Makefile.bcc +85 -0
  203. data/vendor/PDCurses/wingui/Makefile.dmc +259 -0
  204. data/vendor/PDCurses/wingui/Makefile.lcc +273 -0
  205. data/vendor/PDCurses/wingui/Makefile.mng +171 -0
  206. data/vendor/PDCurses/wingui/Makefile.vc +144 -0
  207. data/vendor/PDCurses/wingui/Makefile.wcc +51 -0
  208. data/vendor/PDCurses/wingui/README.md +93 -0
  209. data/vendor/PDCurses/wingui/pdcclip.c +174 -0
  210. data/vendor/PDCurses/wingui/pdcdisp.c +718 -0
  211. data/vendor/PDCurses/wingui/pdcgetsc.c +30 -0
  212. data/vendor/PDCurses/wingui/pdckbd.c +143 -0
  213. data/vendor/PDCurses/wingui/pdcscrn.c +2797 -0
  214. data/vendor/PDCurses/wingui/pdcsetsc.c +89 -0
  215. data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
  216. data/vendor/PDCurses/wingui/pdcurses.rc +28 -0
  217. data/vendor/PDCurses/wingui/pdcutil.c +61 -0
  218. data/vendor/PDCurses/wingui/pdcwin.h +122 -0
  219. data/vendor/PDCurses/x11/Makefile.in +754 -0
  220. data/vendor/PDCurses/x11/PDCurses.spec +82 -0
  221. data/vendor/PDCurses/x11/README.md +62 -0
  222. data/vendor/PDCurses/x11/ScrollBox.c +319 -0
  223. data/vendor/PDCurses/x11/ScrollBox.h +51 -0
  224. data/vendor/PDCurses/x11/ScrollBoxP.h +70 -0
  225. data/vendor/PDCurses/x11/aclocal.m4 +994 -0
  226. data/vendor/PDCurses/x11/big_icon.xbm +46 -0
  227. data/vendor/PDCurses/x11/compose.h +201 -0
  228. data/vendor/PDCurses/x11/config.guess +1500 -0
  229. data/vendor/PDCurses/x11/config.h.in +100 -0
  230. data/vendor/PDCurses/x11/config.sub +1616 -0
  231. data/vendor/PDCurses/x11/configure +6700 -0
  232. data/vendor/PDCurses/x11/configure.ac +295 -0
  233. data/vendor/PDCurses/x11/debian/changelog +6 -0
  234. data/vendor/PDCurses/x11/debian/compat +1 -0
  235. data/vendor/PDCurses/x11/debian/control +11 -0
  236. data/vendor/PDCurses/x11/debian/copyright +27 -0
  237. data/vendor/PDCurses/x11/debian/rules +98 -0
  238. data/vendor/PDCurses/x11/install-sh +253 -0
  239. data/vendor/PDCurses/x11/little_icon.xbm +14 -0
  240. data/vendor/PDCurses/x11/ncurses_cfg.h +45 -0
  241. data/vendor/PDCurses/x11/pdcclip.c +173 -0
  242. data/vendor/PDCurses/x11/pdcdisp.c +85 -0
  243. data/vendor/PDCurses/x11/pdcgetsc.c +28 -0
  244. data/vendor/PDCurses/x11/pdckbd.c +104 -0
  245. data/vendor/PDCurses/x11/pdcscrn.c +258 -0
  246. data/vendor/PDCurses/x11/pdcsetsc.c +95 -0
  247. data/vendor/PDCurses/x11/pdcutil.c +52 -0
  248. data/vendor/PDCurses/x11/pdcx11.c +316 -0
  249. data/vendor/PDCurses/x11/pdcx11.h +191 -0
  250. data/vendor/PDCurses/x11/sb.c +155 -0
  251. data/vendor/PDCurses/x11/x11.c +3686 -0
  252. data/vendor/PDCurses/x11/xcurses-config.in +81 -0
  253. metadata +255 -21
@@ -0,0 +1,139 @@
1
+ /* Public Domain Curses */
2
+
3
+ #include <curspriv.h>
4
+
5
+ /*man-start**************************************************************
6
+
7
+ getyx
8
+ -----
9
+
10
+ ### Synopsis
11
+
12
+ void getyx(WINDOW *win, int y, int x);
13
+ void getparyx(WINDOW *win, int y, int x);
14
+ void getbegyx(WINDOW *win, int y, int x);
15
+ void getmaxyx(WINDOW *win, int y, int x);
16
+
17
+ void getsyx(int y, int x);
18
+ void setsyx(int y, int x);
19
+
20
+ int getbegy(WINDOW *win);
21
+ int getbegx(WINDOW *win);
22
+ int getcury(WINDOW *win);
23
+ int getcurx(WINDOW *win);
24
+ int getpary(WINDOW *win);
25
+ int getparx(WINDOW *win);
26
+ int getmaxy(WINDOW *win);
27
+ int getmaxx(WINDOW *win);
28
+
29
+ ### Description
30
+
31
+ The getyx() macro (defined in curses.h -- the prototypes here
32
+ are merely illustrative) puts the current cursor position of the
33
+ specified window into y and x. getbegyx() and getmaxyx() return
34
+ the starting coordinates and size of the specified window,
35
+ respectively. getparyx() returns the starting coordinates of the
36
+ parent's window, if the specified window is a subwindow;
37
+ otherwise it sets y and x to -1. These are all macros.
38
+
39
+ getsyx() gets the coordinates of the virtual screen cursor, and
40
+ stores them in y and x. If leaveok() is TRUE, it returns -1, -1.
41
+ If lines have been removed with ripoffline(), then getsyx()
42
+ includes these lines in its count; so, the returned y and x
43
+ values should only be used with setsyx().
44
+
45
+ setsyx() sets the virtual screen cursor to the y, x coordinates.
46
+ If either y or x is -1, leaveok() is set TRUE, else it's set FALSE.
47
+
48
+ getsyx() and setsyx() are meant to be used by a library routine
49
+ that manipulates curses windows without altering the position of
50
+ the cursor. Note that getsyx() is defined only as a macro.
51
+
52
+ getbegy(), getbegx(), getcurx(), getcury(), getmaxy(),
53
+ getmaxx(), getpary(), and getparx() return the appropriate
54
+ coordinate or size values, or ERR in the case of a NULL window.
55
+
56
+ ### Portability
57
+ X/Open BSD SYS V
58
+ getyx Y Y Y
59
+ getparyx - - 4.0
60
+ getbegyx - - 3.0
61
+ getmaxyx - - 3.0
62
+ getsyx - - 3.0
63
+ setsyx - - 3.0
64
+ getbegy - - -
65
+ getbegx - - -
66
+ getcury - - -
67
+ getcurx - - -
68
+ getpary - - -
69
+ getparx - - -
70
+ getmaxy - - -
71
+ getmaxx - - -
72
+
73
+ **man-end****************************************************************/
74
+
75
+ int getbegy(WINDOW *win)
76
+ {
77
+ PDC_LOG(("getbegy() - called\n"));
78
+
79
+ return win ? win->_begy : ERR;
80
+ }
81
+
82
+ int getbegx(WINDOW *win)
83
+ {
84
+ PDC_LOG(("getbegx() - called\n"));
85
+
86
+ return win ? win->_begx : ERR;
87
+ }
88
+
89
+ int getcury(WINDOW *win)
90
+ {
91
+ PDC_LOG(("getcury() - called\n"));
92
+
93
+ return win ? win->_cury : ERR;
94
+ }
95
+
96
+ int getcurx(WINDOW *win)
97
+ {
98
+ PDC_LOG(("getcurx() - called\n"));
99
+
100
+ return win ? win->_curx : ERR;
101
+ }
102
+
103
+ int getpary(WINDOW *win)
104
+ {
105
+ PDC_LOG(("getpary() - called\n"));
106
+
107
+ return win ? win->_pary : ERR;
108
+ }
109
+
110
+ int getparx(WINDOW *win)
111
+ {
112
+ PDC_LOG(("getparx() - called\n"));
113
+
114
+ return win ? win->_parx : ERR;
115
+ }
116
+
117
+ int getmaxy(WINDOW *win)
118
+ {
119
+ PDC_LOG(("getmaxy() - called\n"));
120
+
121
+ return win ? win->_maxy : ERR;
122
+ }
123
+
124
+ int getmaxx(WINDOW *win)
125
+ {
126
+ PDC_LOG(("getmaxx() - called\n"));
127
+
128
+ return win ? win->_maxx : ERR;
129
+ }
130
+
131
+ void setsyx(int y, int x)
132
+ {
133
+ PDC_LOG(("setsyx() - called\n"));
134
+
135
+ curscr->_leaveit = y == -1 || x == -1;
136
+
137
+ if (!curscr->_leaveit)
138
+ wmove(curscr, y, x);
139
+ }
@@ -0,0 +1,127 @@
1
+ /* Public Domain Curses */
2
+
3
+ #include <curspriv.h>
4
+
5
+ /*man-start**************************************************************
6
+
7
+ inch
8
+ ----
9
+
10
+ ### Synopsis
11
+
12
+ chtype inch(void);
13
+ chtype winch(WINDOW *win);
14
+ chtype mvinch(int y, int x);
15
+ chtype mvwinch(WINDOW *win, int y, int x);
16
+
17
+ int in_wch(cchar_t *wcval);
18
+ int win_wch(WINDOW *win, cchar_t *wcval);
19
+ int mvin_wch(int y, int x, cchar_t *wcval);
20
+ int mvwin_wch(WINDOW *win, int y, int x, cchar_t *wcval);
21
+
22
+ ### Description
23
+
24
+ The inch() functions retrieve the character and attribute from
25
+ the current or specified window position, in the form of a
26
+ chtype. If a NULL window is specified, (chtype)ERR is returned.
27
+
28
+ The in_wch() functions are the wide-character versions; instead
29
+ of returning a chtype, they store a cchar_t at the address
30
+ specified by wcval, and return OK or ERR. (No value is stored
31
+ when ERR is returned.) Note that in PDCurses, chtype and cchar_t
32
+ are the same.
33
+
34
+ ### Portability
35
+ X/Open BSD SYS V
36
+ inch Y Y Y
37
+ winch Y Y Y
38
+ mvinch Y Y Y
39
+ mvwinch Y Y Y
40
+ in_wch Y
41
+ win_wch Y
42
+ mvin_wch Y
43
+ mvwin_wch Y
44
+
45
+ **man-end****************************************************************/
46
+
47
+ chtype winch(WINDOW *win)
48
+ {
49
+ PDC_LOG(("winch() - called\n"));
50
+
51
+ if (!win)
52
+ return (chtype)ERR;
53
+
54
+ return win->_y[win->_cury][win->_curx];
55
+ }
56
+
57
+ chtype inch(void)
58
+ {
59
+ PDC_LOG(("inch() - called\n"));
60
+
61
+ return winch(stdscr);
62
+ }
63
+
64
+ chtype mvinch(int y, int x)
65
+ {
66
+ PDC_LOG(("mvinch() - called\n"));
67
+
68
+ if (move(y, x) == ERR)
69
+ return (chtype)ERR;
70
+
71
+ return stdscr->_y[stdscr->_cury][stdscr->_curx];
72
+ }
73
+
74
+ chtype mvwinch(WINDOW *win, int y, int x)
75
+ {
76
+ PDC_LOG(("mvwinch() - called\n"));
77
+
78
+ if (wmove(win, y, x) == ERR)
79
+ return (chtype)ERR;
80
+
81
+ return win->_y[win->_cury][win->_curx];
82
+ }
83
+
84
+ #ifdef PDC_WIDE
85
+ int win_wch(WINDOW *win, cchar_t *wcval)
86
+ {
87
+ PDC_LOG(("win_wch() - called\n"));
88
+
89
+ if (!win || !wcval)
90
+ return ERR;
91
+
92
+ *wcval = win->_y[win->_cury][win->_curx];
93
+
94
+ return OK;
95
+ }
96
+
97
+ int in_wch(cchar_t *wcval)
98
+ {
99
+ PDC_LOG(("in_wch() - called\n"));
100
+
101
+ return win_wch(stdscr, wcval);
102
+ }
103
+
104
+ int mvin_wch(int y, int x, cchar_t *wcval)
105
+ {
106
+ PDC_LOG(("mvin_wch() - called\n"));
107
+
108
+ if (!wcval || (move(y, x) == ERR))
109
+ return ERR;
110
+
111
+ *wcval = stdscr->_y[stdscr->_cury][stdscr->_curx];
112
+
113
+ return OK;
114
+ }
115
+
116
+ int mvwin_wch(WINDOW *win, int y, int x, cchar_t *wcval)
117
+ {
118
+ PDC_LOG(("mvwin_wch() - called\n"));
119
+
120
+ if (!wcval || (wmove(win, y, x) == ERR))
121
+ return ERR;
122
+
123
+ *wcval = win->_y[win->_cury][win->_curx];
124
+
125
+ return OK;
126
+ }
127
+ #endif
@@ -0,0 +1,214 @@
1
+ /* Public Domain Curses */
2
+
3
+ #include <curspriv.h>
4
+
5
+ /*man-start**************************************************************
6
+
7
+ inchstr
8
+ -------
9
+
10
+ ### Synopsis
11
+
12
+ int inchstr(chtype *ch);
13
+ int inchnstr(chtype *ch, int n);
14
+ int winchstr(WINDOW *win, chtype *ch);
15
+ int winchnstr(WINDOW *win, chtype *ch, int n);
16
+ int mvinchstr(int y, int x, chtype *ch);
17
+ int mvinchnstr(int y, int x, chtype *ch, int n);
18
+ int mvwinchstr(WINDOW *, int y, int x, chtype *ch);
19
+ int mvwinchnstr(WINDOW *, int y, int x, chtype *ch, int n);
20
+
21
+ int in_wchstr(cchar_t *wch);
22
+ int in_wchnstr(cchar_t *wch, int n);
23
+ int win_wchstr(WINDOW *win, cchar_t *wch);
24
+ int win_wchnstr(WINDOW *win, cchar_t *wch, int n);
25
+ int mvin_wchstr(int y, int x, cchar_t *wch);
26
+ int mvin_wchnstr(int y, int x, cchar_t *wch, int n);
27
+ int mvwin_wchstr(WINDOW *win, int y, int x, cchar_t *wch);
28
+ int mvwin_wchnstr(WINDOW *win, int y, int x, cchar_t *wch, int n);
29
+
30
+ ### Description
31
+
32
+ These routines read a chtype or cchar_t string from the window,
33
+ starting at the current or specified position, and ending at the
34
+ right margin, or after n elements, whichever is less.
35
+
36
+ ### Return Value
37
+
38
+ All functions return the number of elements read, or ERR on
39
+ error.
40
+
41
+ ### Portability
42
+ X/Open BSD SYS V
43
+ inchstr Y - 4.0
44
+ winchstr Y - 4.0
45
+ mvinchstr Y - 4.0
46
+ mvwinchstr Y - 4.0
47
+ inchnstr Y - 4.0
48
+ winchnstr Y - 4.0
49
+ mvinchnstr Y - 4.0
50
+ mvwinchnstr Y - 4.0
51
+ in_wchstr Y
52
+ win_wchstr Y
53
+ mvin_wchstr Y
54
+ mvwin_wchstr Y
55
+ in_wchnstr Y
56
+ win_wchnstr Y
57
+ mvin_wchnstr Y
58
+ mvwin_wchnstr Y
59
+
60
+ **man-end****************************************************************/
61
+
62
+ int winchnstr(WINDOW *win, chtype *ch, int n)
63
+ {
64
+ chtype *src;
65
+ int i;
66
+
67
+ PDC_LOG(("winchnstr() - called\n"));
68
+
69
+ if (!win || !ch || n < 0)
70
+ return ERR;
71
+
72
+ if ((win->_curx + n) > win->_maxx)
73
+ n = win->_maxx - win->_curx;
74
+
75
+ src = win->_y[win->_cury] + win->_curx;
76
+
77
+ for (i = 0; i < n; i++)
78
+ *ch++ = *src++;
79
+
80
+ *ch = (chtype)0;
81
+
82
+ return OK;
83
+ }
84
+
85
+ int inchstr(chtype *ch)
86
+ {
87
+ PDC_LOG(("inchstr() - called\n"));
88
+
89
+ return winchnstr(stdscr, ch, stdscr->_maxx - stdscr->_curx);
90
+ }
91
+
92
+ int winchstr(WINDOW *win, chtype *ch)
93
+ {
94
+ PDC_LOG(("winchstr() - called\n"));
95
+
96
+ return winchnstr(win, ch, win->_maxx - win->_curx);
97
+ }
98
+
99
+ int mvinchstr(int y, int x, chtype *ch)
100
+ {
101
+ PDC_LOG(("mvinchstr() - called: y %d x %d\n", y, x));
102
+
103
+ if (move(y, x) == ERR)
104
+ return ERR;
105
+
106
+ return winchnstr(stdscr, ch, stdscr->_maxx - stdscr->_curx);
107
+ }
108
+
109
+ int mvwinchstr(WINDOW *win, int y, int x, chtype *ch)
110
+ {
111
+ PDC_LOG(("mvwinchstr() - called:\n"));
112
+
113
+ if (wmove(win, y, x) == ERR)
114
+ return ERR;
115
+
116
+ return winchnstr(win, ch, win->_maxx - win->_curx);
117
+ }
118
+
119
+ int inchnstr(chtype *ch, int n)
120
+ {
121
+ PDC_LOG(("inchnstr() - called\n"));
122
+
123
+ return winchnstr(stdscr, ch, n);
124
+ }
125
+
126
+ int mvinchnstr(int y, int x, chtype *ch, int n)
127
+ {
128
+ PDC_LOG(("mvinchnstr() - called: y %d x %d n %d\n", y, x, n));
129
+
130
+ if (move(y, x) == ERR)
131
+ return ERR;
132
+
133
+ return winchnstr(stdscr, ch, n);
134
+ }
135
+
136
+ int mvwinchnstr(WINDOW *win, int y, int x, chtype *ch, int n)
137
+ {
138
+ PDC_LOG(("mvwinchnstr() - called: y %d x %d n %d \n", y, x, n));
139
+
140
+ if (wmove(win, y, x) == ERR)
141
+ return ERR;
142
+
143
+ return winchnstr(win, ch, n);
144
+ }
145
+
146
+ #ifdef PDC_WIDE
147
+ int win_wchnstr(WINDOW *win, cchar_t *wch, int n)
148
+ {
149
+ PDC_LOG(("win_wchnstr() - called\n"));
150
+
151
+ return winchnstr(win, wch, n);
152
+ }
153
+
154
+ int in_wchstr(cchar_t *wch)
155
+ {
156
+ PDC_LOG(("in_wchstr() - called\n"));
157
+
158
+ return win_wchnstr(stdscr, wch, stdscr->_maxx - stdscr->_curx);
159
+ }
160
+
161
+ int win_wchstr(WINDOW *win, cchar_t *wch)
162
+ {
163
+ PDC_LOG(("win_wchstr() - called\n"));
164
+
165
+ return win_wchnstr(win, wch, win->_maxx - win->_curx);
166
+ }
167
+
168
+ int mvin_wchstr(int y, int x, cchar_t *wch)
169
+ {
170
+ PDC_LOG(("mvin_wchstr() - called: y %d x %d\n", y, x));
171
+
172
+ if (move(y, x) == ERR)
173
+ return ERR;
174
+
175
+ return win_wchnstr(stdscr, wch, stdscr->_maxx - stdscr->_curx);
176
+ }
177
+
178
+ int mvwin_wchstr(WINDOW *win, int y, int x, cchar_t *wch)
179
+ {
180
+ PDC_LOG(("mvwin_wchstr() - called:\n"));
181
+
182
+ if (wmove(win, y, x) == ERR)
183
+ return ERR;
184
+
185
+ return win_wchnstr(win, wch, win->_maxx - win->_curx);
186
+ }
187
+
188
+ int in_wchnstr(cchar_t *wch, int n)
189
+ {
190
+ PDC_LOG(("in_wchnstr() - called\n"));
191
+
192
+ return win_wchnstr(stdscr, wch, n);
193
+ }
194
+
195
+ int mvin_wchnstr(int y, int x, cchar_t *wch, int n)
196
+ {
197
+ PDC_LOG(("mvin_wchnstr() - called: y %d x %d n %d\n", y, x, n));
198
+
199
+ if (move(y, x) == ERR)
200
+ return ERR;
201
+
202
+ return win_wchnstr(stdscr, wch, n);
203
+ }
204
+
205
+ int mvwin_wchnstr(WINDOW *win, int y, int x, cchar_t *wch, int n)
206
+ {
207
+ PDC_LOG(("mvwinchnstr() - called: y %d x %d n %d \n", y, x, n));
208
+
209
+ if (wmove(win, y, x) == ERR)
210
+ return ERR;
211
+
212
+ return win_wchnstr(win, wch, n);
213
+ }
214
+ #endif