curses 1.3.0 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (256) 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 +25 -0
  5. data/History.md +34 -0
  6. data/README.md +14 -46
  7. data/Rakefile +0 -86
  8. data/curses.gemspec +2 -3
  9. data/ext/curses/curses.c +70 -58
  10. data/ext/curses/extconf.rb +134 -21
  11. data/lib/curses.rb +5 -12
  12. data/sample/addch.rb +16 -0
  13. data/sample/attr_demo.rb +32 -0
  14. data/sample/colors.rb +26 -0
  15. data/sample/menu.rb +3 -3
  16. data/sample/mouse_move.rb +75 -0
  17. data/vendor/PDCurses/.gitignore +47 -0
  18. data/vendor/PDCurses/.travis.yml +49 -0
  19. data/vendor/PDCurses/CMakeLists.txt +68 -0
  20. data/vendor/PDCurses/HISTORY.md +2036 -0
  21. data/vendor/PDCurses/IMPLEMNT.md +327 -0
  22. data/vendor/PDCurses/README.md +77 -0
  23. data/vendor/PDCurses/acs_defs.h +265 -0
  24. data/vendor/PDCurses/appveyor.yml +218 -0
  25. data/vendor/PDCurses/cmake/README.md +71 -0
  26. data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
  27. data/vendor/PDCurses/cmake/build_options.cmake +25 -0
  28. data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
  29. data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
  30. data/vendor/PDCurses/cmake/get_version.cmake +17 -0
  31. data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
  32. data/vendor/PDCurses/cmake/project_common.cmake +121 -0
  33. data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
  34. data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
  35. data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
  36. data/vendor/PDCurses/cmake/version.in.cmake +73 -0
  37. data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
  38. data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
  39. data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
  40. data/vendor/PDCurses/curses.h +1846 -0
  41. data/vendor/PDCurses/curspriv.h +134 -0
  42. data/vendor/PDCurses/demos/README.md +25 -0
  43. data/vendor/PDCurses/demos/firework.c +144 -0
  44. data/vendor/PDCurses/demos/newtest.c +581 -0
  45. data/vendor/PDCurses/demos/ozdemo.c +447 -0
  46. data/vendor/PDCurses/demos/ptest.c +283 -0
  47. data/vendor/PDCurses/demos/rain.c +157 -0
  48. data/vendor/PDCurses/demos/testcurs.c +1607 -0
  49. data/vendor/PDCurses/demos/tui.c +1048 -0
  50. data/vendor/PDCurses/demos/tui.h +65 -0
  51. data/vendor/PDCurses/demos/tuidemo.c +233 -0
  52. data/vendor/PDCurses/demos/version.c +61 -0
  53. data/vendor/PDCurses/demos/worm.c +432 -0
  54. data/vendor/PDCurses/demos/xmas.c +955 -0
  55. data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
  56. data/vendor/PDCurses/dos/Makefile.bcc +83 -0
  57. data/vendor/PDCurses/dos/Makefile.dmc +257 -0
  58. data/vendor/PDCurses/dos/Makefile.msc +113 -0
  59. data/vendor/PDCurses/dos/Makefile.wcc +107 -0
  60. data/vendor/PDCurses/dos/README.md +51 -0
  61. data/vendor/PDCurses/dos/bccdos.lrf +9 -0
  62. data/vendor/PDCurses/dos/mscdos.lrf +50 -0
  63. data/vendor/PDCurses/dos/pdcclip.c +132 -0
  64. data/vendor/PDCurses/dos/pdcdisp.c +135 -0
  65. data/vendor/PDCurses/dos/pdcdos.h +194 -0
  66. data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
  67. data/vendor/PDCurses/dos/pdckbd.c +513 -0
  68. data/vendor/PDCurses/dos/pdcscrn.c +785 -0
  69. data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
  70. data/vendor/PDCurses/dos/pdcutil.c +212 -0
  71. data/vendor/PDCurses/libobjs.mif +26 -0
  72. data/vendor/PDCurses/makedist.mif +20 -0
  73. data/vendor/PDCurses/man/README.md +21 -0
  74. data/vendor/PDCurses/man/intro.md +361 -0
  75. data/vendor/PDCurses/man/manext.c +119 -0
  76. data/vendor/PDCurses/man/sdl.md +152 -0
  77. data/vendor/PDCurses/man/sdl2.md +58 -0
  78. data/vendor/PDCurses/man/x11.md +407 -0
  79. data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
  80. data/vendor/PDCurses/ncurses/README.md +26 -0
  81. data/vendor/PDCurses/ncurses/makefile +29 -0
  82. data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
  83. data/vendor/PDCurses/os2/Makefile.bcc +90 -0
  84. data/vendor/PDCurses/os2/Makefile.wcc +43 -0
  85. data/vendor/PDCurses/os2/README.md +43 -0
  86. data/vendor/PDCurses/os2/iccos2.lrf +50 -0
  87. data/vendor/PDCurses/os2/iccos2.mak +256 -0
  88. data/vendor/PDCurses/os2/pdcclip.c +188 -0
  89. data/vendor/PDCurses/os2/pdcdisp.c +93 -0
  90. data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
  91. data/vendor/PDCurses/os2/pdckbd.c +521 -0
  92. data/vendor/PDCurses/os2/pdcos2.h +55 -0
  93. data/vendor/PDCurses/os2/pdcscrn.c +449 -0
  94. data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
  95. data/vendor/PDCurses/os2/pdcutil.c +52 -0
  96. data/vendor/PDCurses/panel.h +56 -0
  97. data/vendor/PDCurses/pdcurses/README.md +25 -0
  98. data/vendor/PDCurses/pdcurses/addch.c +693 -0
  99. data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
  100. data/vendor/PDCurses/pdcurses/addstr.c +240 -0
  101. data/vendor/PDCurses/pdcurses/attr.c +359 -0
  102. data/vendor/PDCurses/pdcurses/beep.c +68 -0
  103. data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
  104. data/vendor/PDCurses/pdcurses/border.c +411 -0
  105. data/vendor/PDCurses/pdcurses/clear.c +159 -0
  106. data/vendor/PDCurses/pdcurses/color.c +298 -0
  107. data/vendor/PDCurses/pdcurses/debug.c +109 -0
  108. data/vendor/PDCurses/pdcurses/delch.c +96 -0
  109. data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
  110. data/vendor/PDCurses/pdcurses/deprec.c +27 -0
  111. data/vendor/PDCurses/pdcurses/getch.c +417 -0
  112. data/vendor/PDCurses/pdcurses/getstr.c +474 -0
  113. data/vendor/PDCurses/pdcurses/getyx.c +139 -0
  114. data/vendor/PDCurses/pdcurses/inch.c +127 -0
  115. data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
  116. data/vendor/PDCurses/pdcurses/initscr.c +367 -0
  117. data/vendor/PDCurses/pdcurses/inopts.c +324 -0
  118. data/vendor/PDCurses/pdcurses/insch.c +271 -0
  119. data/vendor/PDCurses/pdcurses/insstr.c +264 -0
  120. data/vendor/PDCurses/pdcurses/instr.c +246 -0
  121. data/vendor/PDCurses/pdcurses/kernel.c +259 -0
  122. data/vendor/PDCurses/pdcurses/keyname.c +157 -0
  123. data/vendor/PDCurses/pdcurses/mouse.c +438 -0
  124. data/vendor/PDCurses/pdcurses/move.c +57 -0
  125. data/vendor/PDCurses/pdcurses/outopts.c +159 -0
  126. data/vendor/PDCurses/pdcurses/overlay.c +214 -0
  127. data/vendor/PDCurses/pdcurses/pad.c +260 -0
  128. data/vendor/PDCurses/pdcurses/panel.c +633 -0
  129. data/vendor/PDCurses/pdcurses/printw.c +126 -0
  130. data/vendor/PDCurses/pdcurses/refresh.c +279 -0
  131. data/vendor/PDCurses/pdcurses/scanw.c +578 -0
  132. data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
  133. data/vendor/PDCurses/pdcurses/scroll.c +101 -0
  134. data/vendor/PDCurses/pdcurses/slk.c +591 -0
  135. data/vendor/PDCurses/pdcurses/termattr.c +182 -0
  136. data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
  137. data/vendor/PDCurses/pdcurses/touch.c +163 -0
  138. data/vendor/PDCurses/pdcurses/util.c +312 -0
  139. data/vendor/PDCurses/pdcurses/window.c +569 -0
  140. data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
  141. data/vendor/PDCurses/sdl1/README.md +31 -0
  142. data/vendor/PDCurses/sdl1/deffont.h +385 -0
  143. data/vendor/PDCurses/sdl1/deficon.h +23 -0
  144. data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
  145. data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
  146. data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
  147. data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
  148. data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
  149. data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
  150. data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
  151. data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
  152. data/vendor/PDCurses/sdl1/sdltest.c +79 -0
  153. data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
  154. data/vendor/PDCurses/sdl2/Makefile.vc +164 -0
  155. data/vendor/PDCurses/sdl2/README.md +34 -0
  156. data/vendor/PDCurses/sdl2/deffont.h +385 -0
  157. data/vendor/PDCurses/sdl2/deficon.h +23 -0
  158. data/vendor/PDCurses/sdl2/pdcclip.c +93 -0
  159. data/vendor/PDCurses/sdl2/pdcdisp.c +534 -0
  160. data/vendor/PDCurses/sdl2/pdcgetsc.c +30 -0
  161. data/vendor/PDCurses/sdl2/pdckbd.c +480 -0
  162. data/vendor/PDCurses/sdl2/pdcscrn.c +443 -0
  163. data/vendor/PDCurses/sdl2/pdcsdl.h +33 -0
  164. data/vendor/PDCurses/sdl2/pdcsetsc.c +67 -0
  165. data/vendor/PDCurses/sdl2/pdcutil.c +39 -0
  166. data/vendor/PDCurses/sdl2/sdltest.c +81 -0
  167. data/vendor/PDCurses/term.h +48 -0
  168. data/vendor/PDCurses/version.mif +7 -0
  169. data/vendor/PDCurses/vt/CMakeLists.txt +28 -0
  170. data/vendor/PDCurses/vt/Makefile.bcc +111 -0
  171. data/vendor/PDCurses/vt/Makefile.dmc +258 -0
  172. data/vendor/PDCurses/vt/Makefile.vc +144 -0
  173. data/vendor/PDCurses/vt/Makefile.wcc +107 -0
  174. data/vendor/PDCurses/vt/README.md +64 -0
  175. data/vendor/PDCurses/vt/pdcclip.c +20 -0
  176. data/vendor/PDCurses/vt/pdcdisp.c +284 -0
  177. data/vendor/PDCurses/vt/pdcgetsc.c +27 -0
  178. data/vendor/PDCurses/vt/pdckbd.c +394 -0
  179. data/vendor/PDCurses/vt/pdcscrn.c +434 -0
  180. data/vendor/PDCurses/vt/pdcsetsc.c +45 -0
  181. data/vendor/PDCurses/vt/pdcutil.c +43 -0
  182. data/vendor/PDCurses/vt/pdcvt.h +16 -0
  183. data/vendor/PDCurses/watcom.mif +68 -0
  184. data/vendor/PDCurses/wincon/CMakeLists.txt +27 -0
  185. data/vendor/PDCurses/wincon/Makefile.bcc +88 -0
  186. data/vendor/PDCurses/wincon/Makefile.dmc +256 -0
  187. data/vendor/PDCurses/wincon/Makefile.lcc +273 -0
  188. data/vendor/PDCurses/wincon/Makefile.mng +176 -0
  189. data/vendor/PDCurses/wincon/Makefile.vc +144 -0
  190. data/vendor/PDCurses/wincon/Makefile.wcc +51 -0
  191. data/vendor/PDCurses/wincon/README.md +85 -0
  192. data/vendor/PDCurses/wincon/pdcclip.c +174 -0
  193. data/vendor/PDCurses/wincon/pdcdisp.c +143 -0
  194. data/vendor/PDCurses/wincon/pdcgetsc.c +55 -0
  195. data/vendor/PDCurses/wincon/pdckbd.c +786 -0
  196. data/vendor/PDCurses/wincon/pdcscrn.c +717 -0
  197. data/vendor/PDCurses/wincon/pdcsetsc.c +91 -0
  198. data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
  199. data/vendor/PDCurses/wincon/pdcurses.rc +28 -0
  200. data/vendor/PDCurses/wincon/pdcutil.c +41 -0
  201. data/vendor/PDCurses/wincon/pdcwin.h +31 -0
  202. data/vendor/PDCurses/wingui/CMakeLists.txt +27 -0
  203. data/vendor/PDCurses/wingui/Makefile.bcc +85 -0
  204. data/vendor/PDCurses/wingui/Makefile.dmc +259 -0
  205. data/vendor/PDCurses/wingui/Makefile.lcc +273 -0
  206. data/vendor/PDCurses/wingui/Makefile.mng +171 -0
  207. data/vendor/PDCurses/wingui/Makefile.vc +144 -0
  208. data/vendor/PDCurses/wingui/Makefile.wcc +51 -0
  209. data/vendor/PDCurses/wingui/README.md +93 -0
  210. data/vendor/PDCurses/wingui/pdcclip.c +174 -0
  211. data/vendor/PDCurses/wingui/pdcdisp.c +718 -0
  212. data/vendor/PDCurses/wingui/pdcgetsc.c +30 -0
  213. data/vendor/PDCurses/wingui/pdckbd.c +143 -0
  214. data/vendor/PDCurses/wingui/pdcscrn.c +2797 -0
  215. data/vendor/PDCurses/wingui/pdcsetsc.c +89 -0
  216. data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
  217. data/vendor/PDCurses/wingui/pdcurses.rc +28 -0
  218. data/vendor/PDCurses/wingui/pdcutil.c +61 -0
  219. data/vendor/PDCurses/wingui/pdcwin.h +122 -0
  220. data/vendor/PDCurses/x11/Makefile.in +754 -0
  221. data/vendor/PDCurses/x11/PDCurses.spec +82 -0
  222. data/vendor/PDCurses/x11/README.md +62 -0
  223. data/vendor/PDCurses/x11/ScrollBox.c +319 -0
  224. data/vendor/PDCurses/x11/ScrollBox.h +51 -0
  225. data/vendor/PDCurses/x11/ScrollBoxP.h +70 -0
  226. data/vendor/PDCurses/x11/aclocal.m4 +994 -0
  227. data/vendor/PDCurses/x11/big_icon.xbm +46 -0
  228. data/vendor/PDCurses/x11/compose.h +201 -0
  229. data/vendor/PDCurses/x11/config.guess +1500 -0
  230. data/vendor/PDCurses/x11/config.h.in +100 -0
  231. data/vendor/PDCurses/x11/config.sub +1616 -0
  232. data/vendor/PDCurses/x11/configure +6700 -0
  233. data/vendor/PDCurses/x11/configure.ac +295 -0
  234. data/vendor/PDCurses/x11/debian/changelog +6 -0
  235. data/vendor/PDCurses/x11/debian/compat +1 -0
  236. data/vendor/PDCurses/x11/debian/control +11 -0
  237. data/vendor/PDCurses/x11/debian/copyright +27 -0
  238. data/vendor/PDCurses/x11/debian/rules +98 -0
  239. data/vendor/PDCurses/x11/install-sh +253 -0
  240. data/vendor/PDCurses/x11/little_icon.xbm +14 -0
  241. data/vendor/PDCurses/x11/ncurses_cfg.h +45 -0
  242. data/vendor/PDCurses/x11/pdcclip.c +173 -0
  243. data/vendor/PDCurses/x11/pdcdisp.c +85 -0
  244. data/vendor/PDCurses/x11/pdcgetsc.c +28 -0
  245. data/vendor/PDCurses/x11/pdckbd.c +104 -0
  246. data/vendor/PDCurses/x11/pdcscrn.c +258 -0
  247. data/vendor/PDCurses/x11/pdcsetsc.c +95 -0
  248. data/vendor/PDCurses/x11/pdcutil.c +52 -0
  249. data/vendor/PDCurses/x11/pdcx11.c +316 -0
  250. data/vendor/PDCurses/x11/pdcx11.h +191 -0
  251. data/vendor/PDCurses/x11/sb.c +155 -0
  252. data/vendor/PDCurses/x11/x11.c +3686 -0
  253. data/vendor/PDCurses/x11/xcurses-config.in +81 -0
  254. metadata +258 -24
  255. data/.travis.yml +0 -16
  256. data/appveyor.yml +0 -16
@@ -0,0 +1,246 @@
1
+ /* Public Domain Curses */
2
+
3
+ #include <curspriv.h>
4
+
5
+ /*man-start**************************************************************
6
+
7
+ instr
8
+ -----
9
+
10
+ ### Synopsis
11
+
12
+ int instr(char *str);
13
+ int innstr(char *str, int n);
14
+ int winstr(WINDOW *win, char *str);
15
+ int winnstr(WINDOW *win, char *str, int n);
16
+ int mvinstr(int y, int x, char *str);
17
+ int mvinnstr(int y, int x, char *str, int n);
18
+ int mvwinstr(WINDOW *win, int y, int x, char *str);
19
+ int mvwinnstr(WINDOW *win, int y, int x, char *str, int n);
20
+
21
+ int inwstr(wchar_t *wstr);
22
+ int innwstr(wchar_t *wstr, int n);
23
+ int winwstr(WINDOW *win, wchar_t *wstr);
24
+ int winnwstr(WINDOW *win, wchar_t *wstr, int n);
25
+ int mvinwstr(int y, int x, wchar_t *wstr);
26
+ int mvinnwstr(int y, int x, wchar_t *wstr, int n);
27
+ int mvwinwstr(WINDOW *win, int y, int x, wchar_t *wstr);
28
+ int mvwinnwstr(WINDOW *win, int y, int x, wchar_t *wstr, int n);
29
+
30
+ ### Description
31
+
32
+ These functions take characters (or wide characters) from the
33
+ current or specified position in the window, and return them as
34
+ a string in str (or wstr). Attributes are ignored. The functions
35
+ with n as the last argument return a string at most n characters
36
+ long.
37
+
38
+ ### Return Value
39
+
40
+ Upon successful completion, innstr(), mvinnstr(), mvwinnstr()
41
+ and winnstr() return the number of characters actually read into
42
+ the string; instr(), mvinstr(), mvwinstr() and winstr() return
43
+ OK. Otherwise, all these functions return ERR.
44
+
45
+ ### Portability
46
+ X/Open BSD SYS V
47
+ instr Y - 4.0
48
+ winstr Y - 4.0
49
+ mvinstr Y - 4.0
50
+ mvwinstr Y - 4.0
51
+ innstr Y - 4.0
52
+ winnstr Y - 4.0
53
+ mvinnstr Y - 4.0
54
+ mvwinnstr Y - 4.0
55
+ inwstr Y
56
+ winwstr Y
57
+ mvinwstr Y
58
+ mvwinwstr Y
59
+ innwstr Y
60
+ winnwstr Y
61
+ mvinnwstr Y
62
+ mvwinnwstr Y
63
+
64
+ **man-end****************************************************************/
65
+
66
+ int winnstr(WINDOW *win, char *str, int n)
67
+ {
68
+ #ifdef PDC_WIDE
69
+ wchar_t wstr[513];
70
+
71
+ if (n < 0 || n > 512)
72
+ n = 512;
73
+
74
+ if (winnwstr(win, wstr, n) == ERR)
75
+ return ERR;
76
+
77
+ return (int)PDC_wcstombs(str, wstr, n);
78
+ #else
79
+ chtype *src;
80
+ int i;
81
+
82
+ PDC_LOG(("winnstr() - called: n %d \n", n));
83
+
84
+ if (!win || !str)
85
+ return ERR;
86
+
87
+ if (n < 0 || (win->_curx + n) > win->_maxx)
88
+ n = win->_maxx - win->_curx;
89
+
90
+ src = win->_y[win->_cury] + win->_curx;
91
+
92
+ for (i = 0; i < n; i++)
93
+ str[i] = (char)( src[i] & A_CHARTEXT);
94
+
95
+ str[i] = '\0';
96
+
97
+ return i;
98
+ #endif
99
+ }
100
+
101
+ int instr(char *str)
102
+ {
103
+ PDC_LOG(("instr() - called: string=\"%s\"\n", str));
104
+
105
+ return (ERR == winnstr(stdscr, str, stdscr->_maxx)) ? ERR : OK;
106
+ }
107
+
108
+ int winstr(WINDOW *win, char *str)
109
+ {
110
+ PDC_LOG(("winstr() - called: \n"));
111
+
112
+ return (ERR == winnstr(win, str, win->_maxx)) ? ERR : OK;
113
+ }
114
+
115
+ int mvinstr(int y, int x, char *str)
116
+ {
117
+ PDC_LOG(("mvinstr() - called: y %d x %d \n", y, x));
118
+
119
+ if (move(y, x) == ERR)
120
+ return ERR;
121
+
122
+ return (ERR == winnstr(stdscr, str, stdscr->_maxx)) ? ERR : OK;
123
+ }
124
+
125
+ int mvwinstr(WINDOW *win, int y, int x, char *str)
126
+ {
127
+ PDC_LOG(("mvwinstr() - called: y %d x %d \n", y, x));
128
+
129
+ if (wmove(win, y, x) == ERR)
130
+ return ERR;
131
+
132
+ return (ERR == winnstr(win, str, win->_maxx)) ? ERR : OK;
133
+ }
134
+
135
+ int innstr(char *str, int n)
136
+ {
137
+ PDC_LOG(("innstr() - called: n %d \n", n));
138
+
139
+ return winnstr(stdscr, str, n);
140
+ }
141
+
142
+ int mvinnstr(int y, int x, char *str, int n)
143
+ {
144
+ PDC_LOG(("mvinnstr() - called: y %d x %d n %d \n", y, x, n));
145
+
146
+ if (move(y, x) == ERR)
147
+ return ERR;
148
+
149
+ return winnstr(stdscr, str, n);
150
+ }
151
+
152
+ int mvwinnstr(WINDOW *win, int y, int x, char *str, int n)
153
+ {
154
+ PDC_LOG(("mvwinnstr() - called: y %d x %d n %d \n", y, x, n));
155
+
156
+ if (wmove(win, y, x) == ERR)
157
+ return ERR;
158
+
159
+ return winnstr(win, str, n);
160
+ }
161
+
162
+ #ifdef PDC_WIDE
163
+ int winnwstr(WINDOW *win, wchar_t *wstr, int n)
164
+ {
165
+ chtype *src;
166
+ int i;
167
+
168
+ PDC_LOG(("winnstr() - called: n %d \n", n));
169
+
170
+ if (!win || !wstr)
171
+ return ERR;
172
+
173
+ if (n < 0 || (win->_curx + n) > win->_maxx)
174
+ n = win->_maxx - win->_curx;
175
+
176
+ src = win->_y[win->_cury] + win->_curx;
177
+
178
+ for (i = 0; i < n; i++)
179
+ wstr[i] = (wchar_t)src[i] & A_CHARTEXT;
180
+
181
+ wstr[i] = L'\0';
182
+
183
+ return i;
184
+ }
185
+
186
+ int inwstr(wchar_t *wstr)
187
+ {
188
+ PDC_LOG(("inwstr() - called\n"));
189
+
190
+ return (ERR == winnwstr(stdscr, wstr, stdscr->_maxx)) ? ERR : OK;
191
+ }
192
+
193
+ int winwstr(WINDOW *win, wchar_t *wstr)
194
+ {
195
+ PDC_LOG(("winwstr() - called\n"));
196
+
197
+ return (ERR == winnwstr(win, wstr, win->_maxx)) ? ERR : OK;
198
+ }
199
+
200
+ int mvinwstr(int y, int x, wchar_t *wstr)
201
+ {
202
+ PDC_LOG(("mvinwstr() - called\n"));
203
+
204
+ if (move(y, x) == ERR)
205
+ return ERR;
206
+
207
+ return (ERR == winnwstr(stdscr, wstr, stdscr->_maxx)) ? ERR : OK;
208
+ }
209
+
210
+ int mvwinwstr(WINDOW *win, int y, int x, wchar_t *wstr)
211
+ {
212
+ PDC_LOG(("mvwinstr() - called\n"));
213
+
214
+ if (wmove(win, y, x) == ERR)
215
+ return ERR;
216
+
217
+ return (ERR == winnwstr(win, wstr, win->_maxx)) ? ERR : OK;
218
+ }
219
+
220
+ int innwstr(wchar_t *wstr, int n)
221
+ {
222
+ PDC_LOG(("innwstr() - called\n"));
223
+
224
+ return winnwstr(stdscr, wstr, n);
225
+ }
226
+
227
+ int mvinnwstr(int y, int x, wchar_t *wstr, int n)
228
+ {
229
+ PDC_LOG(("mvinnstr() - called\n"));
230
+
231
+ if (move(y, x) == ERR)
232
+ return ERR;
233
+
234
+ return winnwstr(stdscr, wstr, n);
235
+ }
236
+
237
+ int mvwinnwstr(WINDOW *win, int y, int x, wchar_t *wstr, int n)
238
+ {
239
+ PDC_LOG(("mvwinnwstr() - called\n"));
240
+
241
+ if (wmove(win, y, x) == ERR)
242
+ return ERR;
243
+
244
+ return winnwstr(win, wstr, n);
245
+ }
246
+ #endif
@@ -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
+ }