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,134 @@
1
+ /* Public Domain Curses */
2
+
3
+ /* Private definitions and declarations for use within PDCurses.
4
+ These should generally not be referenced by applications. */
5
+
6
+ #ifndef __CURSES_INTERNALS__
7
+ #define __CURSES_INTERNALS__ 1
8
+
9
+ #define CURSES_LIBRARY
10
+ #include <curses.h>
11
+
12
+ #if defined(__TURBOC__) || defined(__EMX__) || defined(__DJGPP__) || \
13
+ defined(__CYGWIN__) || defined(__MINGW32__) || \
14
+ defined(__WATCOMC__) || defined(__PACIFIC__)
15
+ # ifndef HAVE_VSSCANF
16
+ # define HAVE_VSSCANF /* have vsscanf() */
17
+ # endif
18
+ #endif
19
+
20
+ #if defined(__CYGWIN__) || defined(__MINGW32__) || \
21
+ defined(__LCC__) || defined(__WATCOMC__)
22
+ # ifndef HAVE_VSNPRINTF
23
+ # define HAVE_VSNPRINTF /* have vsnprintf() */
24
+ # endif
25
+ #endif
26
+
27
+ #if defined(_MSC_VER) && defined(_WIN32) && !defined(_CRT_SECURE_NO_DEPRECATE)
28
+ # define _CRT_SECURE_NO_DEPRECATE 1 /* kill nonsense warnings */
29
+ #endif
30
+
31
+ /*----------------------------------------------------------------------*/
32
+
33
+ typedef struct /* structure for ripped off lines */
34
+ {
35
+ int line;
36
+ int (*init)(WINDOW *, int);
37
+ } RIPPEDOFFLINE;
38
+
39
+ /* Window properties */
40
+
41
+ #define _SUBWIN 0x01 /* window is a subwindow */
42
+ #define _PAD 0x10 /* X/Open Pad. */
43
+ #define _SUBPAD 0x20 /* X/Open subpad. */
44
+
45
+ /* Miscellaneous */
46
+
47
+ #define _NO_CHANGE -1 /* flags line edge unchanged */
48
+
49
+ #define _ECHAR 0x08 /* Erase char (^H) */
50
+ #define _DWCHAR 0x17 /* Delete Word char (^W) */
51
+ #define _DLCHAR 0x15 /* Delete Line char (^U) */
52
+
53
+ extern WINDOW *pdc_lastscr;
54
+ extern FILE *pdc_dbfp; /* tracing file pointer (NULL = off) */
55
+ extern bool pdc_color_started;
56
+ extern unsigned long pdc_key_modifiers;
57
+ extern MOUSE_STATUS pdc_mouse_status;
58
+
59
+ /*----------------------------------------------------------------------*/
60
+
61
+ /* Platform implementation functions */
62
+
63
+ void PDC_beep(void);
64
+ bool PDC_can_change_color(void);
65
+ int PDC_color_content(short, short *, short *, short *);
66
+ bool PDC_check_key(void);
67
+ int PDC_curs_set(int);
68
+ void PDC_flushinp(void);
69
+ int PDC_get_columns(void);
70
+ int PDC_get_cursor_mode(void);
71
+ int PDC_get_key(void);
72
+ int PDC_get_rows(void);
73
+ void PDC_gotoyx(int, int);
74
+ int PDC_init_color(short, short, short, short);
75
+ void PDC_init_pair(short, short, short);
76
+ int PDC_modifiers_set(void);
77
+ int PDC_mouse_set(void);
78
+ void PDC_napms(int);
79
+ int PDC_pair_content(short, short *, short *);
80
+ void PDC_reset_prog_mode(void);
81
+ void PDC_reset_shell_mode(void);
82
+ int PDC_resize_screen(int, int);
83
+ void PDC_restore_screen_mode(int);
84
+ void PDC_save_screen_mode(int);
85
+ void PDC_scr_close(void);
86
+ void PDC_scr_free(void);
87
+ int PDC_scr_open(int, char **);
88
+ void PDC_set_keyboard_binary(bool);
89
+ void PDC_transform_line(int, int, int, const chtype *);
90
+ const char *PDC_sysname(void);
91
+
92
+ /* Internal cross-module functions */
93
+
94
+ void PDC_init_atrtab(void);
95
+ WINDOW *PDC_makelines(WINDOW *);
96
+ WINDOW *PDC_makenew(int, int, int, int);
97
+ int PDC_mouse_in_slk(int, int);
98
+ void PDC_slk_free(void);
99
+ void PDC_slk_initialize(void);
100
+ void PDC_sync(WINDOW *);
101
+
102
+ #ifdef PDC_WIDE
103
+ int PDC_mbtowc(wchar_t *, const char *, size_t);
104
+ size_t PDC_mbstowcs(wchar_t *, const char *, size_t);
105
+ size_t PDC_wcstombs(char *, const wchar_t *, size_t);
106
+ #endif
107
+
108
+ #ifdef PDCDEBUG
109
+ # define PDC_LOG(x) if (pdc_dbfp) PDC_debug x
110
+ #else
111
+ # define PDC_LOG(x)
112
+ #endif
113
+
114
+ /* Internal macros for attributes */
115
+
116
+ #ifdef CHTYPE_LONG
117
+ # define PDC_COLOR_PAIRS 256
118
+ #else
119
+ # define PDC_COLOR_PAIRS 32
120
+ #endif
121
+
122
+ #ifndef max
123
+ # define max(a,b) (((a) > (b)) ? (a) : (b))
124
+ #endif
125
+ #ifndef min
126
+ # define min(a,b) (((a) < (b)) ? (a) : (b))
127
+ #endif
128
+
129
+ #define DIVROUND(num, divisor) (((num) + ((divisor) >> 1)) / (divisor))
130
+
131
+ #define PDC_CLICK_PERIOD 150 /* time to wait for a click, if
132
+ not set by mouseinterval() */
133
+
134
+ #endif /* __CURSES_INTERNALS__*/
@@ -0,0 +1,25 @@
1
+ PDCurses Demos
2
+ ==============
3
+
4
+ This directory contains demonstration programs to show and test the
5
+ capabilities of curses libraries. Some of them predate PDCurses,
6
+ PCcurses or even pcurses/ncurses. Although some PDCurses-specific code
7
+ has been added, all programs remain portable to other implementations
8
+ (at a minimum, to ncurses).
9
+
10
+
11
+ Building
12
+ --------
13
+
14
+ The demos are built by the platform-specific makefiles, in the platform
15
+ directories. Alternatively, you can build them manually, individually,
16
+ and link with any curses library; e.g., "cc -lcurses -orain rain.c".
17
+ There are no dependencies besides curses and the standard C library, and
18
+ no configuration is needed.
19
+
20
+
21
+ Distribution Status
22
+ -------------------
23
+
24
+ Public Domain, except for rain.c and worm.c, which are under the ncurses
25
+ license (MIT-like).
@@ -0,0 +1,144 @@
1
+ #include <stdio.h>
2
+ #include <signal.h>
3
+ #include <curses.h>
4
+ #include <ctype.h>
5
+ #include <stdlib.h>
6
+ #include <sys/types.h>
7
+ #include <time.h>
8
+
9
+ #define DELAYSIZE 100
10
+
11
+ void myrefresh(void);
12
+ void get_color(void);
13
+ void explode(int, int);
14
+
15
+ short color_table[] =
16
+ {
17
+ COLOR_RED, COLOR_BLUE, COLOR_GREEN, COLOR_CYAN,
18
+ COLOR_RED, COLOR_MAGENTA, COLOR_YELLOW, COLOR_WHITE
19
+ };
20
+
21
+ int main(int argc, char **argv)
22
+ {
23
+ int i, start, end, row, diff, flag, direction, seed;
24
+
25
+ #ifdef XCURSES
26
+ Xinitscr(argc, argv);
27
+ #else
28
+ initscr();
29
+ #endif
30
+ nodelay(stdscr, TRUE);
31
+ noecho();
32
+
33
+ if (has_colors())
34
+ start_color();
35
+
36
+ for (i = 0; i < 8; i++)
37
+ init_pair( (short)i, color_table[i], COLOR_BLACK);
38
+
39
+ seed = (int)time((time_t *)0);
40
+ srand(seed);
41
+ flag = 0;
42
+
43
+ while (getch() == ERR) /* loop until a key is hit */
44
+ {
45
+ do {
46
+ start = rand() % (COLS - 5) + 2;
47
+ end = rand() % (COLS - 5) + 2;
48
+ direction = (start > end) ? -1 : 1;
49
+ diff = abs(start - end);
50
+
51
+ } while (diff < 2 || diff >= LINES - 2);
52
+
53
+ attrset(A_NORMAL);
54
+
55
+ for (row = 0; row < diff; row++)
56
+ {
57
+ mvaddstr(LINES - row, row * direction + start,
58
+ (direction < 0) ? "\\" : "/");
59
+
60
+ if (flag++)
61
+ {
62
+ myrefresh();
63
+ erase();
64
+ flag = 0;
65
+ }
66
+ }
67
+
68
+ if (flag++)
69
+ {
70
+ myrefresh();
71
+ flag = 0;
72
+ }
73
+
74
+ explode(LINES - row, diff * direction + start);
75
+ erase();
76
+ myrefresh();
77
+ }
78
+
79
+ endwin();
80
+
81
+ return 0;
82
+ }
83
+
84
+ void explode(int row, int col)
85
+ {
86
+ erase();
87
+ mvaddstr(row, col, "-");
88
+ myrefresh();
89
+
90
+ --col;
91
+
92
+ get_color();
93
+ mvaddstr(row - 1, col, " - ");
94
+ mvaddstr(row, col, "-+-");
95
+ mvaddstr(row + 1, col, " - ");
96
+ myrefresh();
97
+
98
+ --col;
99
+
100
+ get_color();
101
+ mvaddstr(row - 2, col, " --- ");
102
+ mvaddstr(row - 1, col, "-+++-");
103
+ mvaddstr(row, col, "-+#+-");
104
+ mvaddstr(row + 1, col, "-+++-");
105
+ mvaddstr(row + 2, col, " --- ");
106
+ myrefresh();
107
+
108
+ get_color();
109
+ mvaddstr(row - 2, col, " +++ ");
110
+ mvaddstr(row - 1, col, "++#++");
111
+ mvaddstr(row, col, "+# #+");
112
+ mvaddstr(row + 1, col, "++#++");
113
+ mvaddstr(row + 2, col, " +++ ");
114
+ myrefresh();
115
+
116
+ get_color();
117
+ mvaddstr(row - 2, col, " # ");
118
+ mvaddstr(row - 1, col, "## ##");
119
+ mvaddstr(row, col, "# #");
120
+ mvaddstr(row + 1, col, "## ##");
121
+ mvaddstr(row + 2, col, " # ");
122
+ myrefresh();
123
+
124
+ get_color();
125
+ mvaddstr(row - 2, col, " # # ");
126
+ mvaddstr(row - 1, col, "# #");
127
+ mvaddstr(row, col, " ");
128
+ mvaddstr(row + 1, col, "# #");
129
+ mvaddstr(row + 2, col, " # # ");
130
+ myrefresh();
131
+ }
132
+
133
+ void myrefresh(void)
134
+ {
135
+ napms(DELAYSIZE);
136
+ move(LINES - 1, COLS - 1);
137
+ refresh();
138
+ }
139
+
140
+ void get_color(void)
141
+ {
142
+ chtype bold = (rand() % 2) ? A_BOLD : A_NORMAL;
143
+ attrset(COLOR_PAIR(rand() % 8) | bold);
144
+ }
@@ -0,0 +1,581 @@
1
+ /*
2
+ * newtest.c - Tests certain PDCurses functions,
3
+ * mostly those in Win32a, including some of the
4
+ * new attributes for 64-bit chtype. I wanted to be
5
+ * sure the PDC_set_blink and PDC_set_line_color
6
+ * functions worked, and that A_OVERLINE and A_STRIKEOUT
7
+ * displayed properly. Also tests "extended" SLK functions.
8
+ *
9
+ */
10
+ #ifndef _XOPEN_SOURCE_EXTENDED
11
+ # define _XOPEN_SOURCE_EXTENDED 1
12
+ #endif
13
+
14
+ #ifdef PDC_WIDE
15
+ #define HAVE_WIDE
16
+ #include <wchar.h>
17
+ #include <curses.h>
18
+ #endif
19
+ #ifdef HAVE_NCURSESW
20
+ #define HAVE_WIDE
21
+ #include <wchar.h>
22
+ #include <ncursesw/curses.h>
23
+ #endif
24
+
25
+ #ifndef HAVE_WIDE
26
+ #include <curses.h>
27
+ #endif
28
+
29
+ #include <string.h>
30
+ #include <stdio.h>
31
+ #include <locale.h>
32
+ #include <stdbool.h>
33
+
34
+ int PDC_write_screen_to_file( const char *filename, WINDOW *win);
35
+
36
+ static const char *labels[] = {
37
+ "Quit", "Blink", "No labels", "431", "2134", "55",
38
+ "62-really-longer-than-it-should-be-just-for-testing",
39
+ "83", "7", "b", "25",
40
+ "Able", "Baker", "Charlie", "Dog",
41
+ "Easy", "Fox", "Golf", "How", "Item",
42
+ "Jig", "King", "Love", "Mike", "Nan",
43
+ "Oboe", "Peter", "Queen", "Roger", "Sugar",
44
+ "Tear", "Uncle", "Victor", "Whiskey",
45
+ "X-Ray", "Yoke", "Zebra", NULL };
46
+
47
+
48
+ static void slk_setup( const int slk_format)
49
+ {
50
+ int i;
51
+ #ifdef PDCURSES
52
+ static int old_format = 0xa;
53
+
54
+ if( slk_format != old_format)
55
+ slk_init( slk_format);
56
+ old_format = slk_format;
57
+ #endif
58
+ for( i = 0; labels[i]; i++)
59
+ slk_set( i + 1, labels[i], 1);
60
+ slk_refresh( );
61
+ }
62
+
63
+ /* Uses the left/right/under/overline capabilities of Win32a */
64
+ /* to ensure the text is "boxed". */
65
+
66
+ void text_in_a_box( const char *istr)
67
+ {
68
+ const int len = (int)strlen( istr);
69
+
70
+ #ifdef CHTYPE_LONG
71
+ attron( A_OVERLINE | A_UNDERLINE | A_LEFTLINE);
72
+ if( len == 1)
73
+ attron( A_RIGHTLINE);
74
+ #endif
75
+ addnstr( istr, 1);
76
+ if( len > 1)
77
+ {
78
+ #ifdef CHTYPE_LONG
79
+ attroff( A_LEFTLINE);
80
+ #endif
81
+ if( len > 2)
82
+ addnstr( istr + 1, len - 2);
83
+ #ifdef CHTYPE_LONG
84
+ attron( A_RIGHTLINE);
85
+ #endif
86
+ addnstr( istr + len - 1, 1);
87
+ }
88
+ #ifdef CHTYPE_LONG
89
+ attroff( A_OVERLINE | A_UNDERLINE | A_LEFTLINE | A_RIGHTLINE);
90
+ #endif
91
+ }
92
+
93
+ #define COL1 2
94
+ #define COL2 (COL1 + 30)
95
+ #define COL3 72
96
+
97
+ #define N_CURSORS 9
98
+ /* There are nine different cursor types; see below for the list. */
99
+ /* You specify two types, and the cursor blinks between them. */
100
+ /* Default is between "underline" and "invisible". Set both states */
101
+ /* to the same value to get an unblinking cursor. */
102
+
103
+ #if defined( _WIN32) && !defined( __BORLANDC__)
104
+ #define PURE_WINDOWS_VERSION 1
105
+ #endif
106
+
107
+ /* Among other things, 'newtest' demonstrates how to make a Win32a
108
+ PDCurses app that is a for-real, "pure Windows" version (instead of
109
+ a console application). Doing this is quite easy, and has certain
110
+ advantages. If the app is invoked from a command prompt, the only
111
+ difference you'll see is that the app runs separately (that is, you
112
+ can continue to use the command prompt, switching between it, your
113
+ PDCurses/Win32a app, and other processes). Which is the main reason
114
+ I did it; it meant that I could invoke a PDCurses-based text editor,
115
+ for example, and still have use of the command line.
116
+
117
+ (NOTE that, for reasons I don't actually understand, this happens
118
+ when the Visual C++ compiler is used. With MinGW or OpenWatcom, it's
119
+ still "really" a console app.)
120
+
121
+ To do it, we ensure that the usual main() function has an alternative
122
+ dummy_main() form, taking the same arguments as main(). We add a
123
+ WinMain() function, whose sole purpose is to reformulate lpszCmdLine
124
+ into argc/argv form, and pass it on to dummy_main(). And, of course,
125
+ we can switch back to a "normal" console app by removing the above
126
+ #define PURE_WINDOWS_VERSION line. */
127
+
128
+ #ifdef PURE_WINDOWS_VERSION
129
+ #undef MOUSE_MOVED
130
+ #include <windows.h>
131
+
132
+ int dummy_main( int argc, char **argv);
133
+
134
+ int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
135
+ LPSTR lpszCmdLine, int nCmdShow)
136
+ {
137
+ char *argv[30];
138
+ int i, argc = 1;
139
+
140
+ argv[0] = "newtest";
141
+ for( i = 0; lpszCmdLine[i]; i++)
142
+ if( lpszCmdLine[i] != ' ' && (!i || lpszCmdLine[i - 1] == ' '))
143
+ argv[argc++] = lpszCmdLine + i;
144
+
145
+ for( i = 0; lpszCmdLine[i]; i++)
146
+ if( lpszCmdLine[i] == ' ')
147
+ lpszCmdLine[i] = '\0';
148
+
149
+ return dummy_main( argc, (char **)argv);
150
+ }
151
+
152
+ int dummy_main( int argc, char **argv)
153
+ #else /* "usual", console-app version: */
154
+ int main( int argc, char **argv)
155
+ #endif
156
+ {
157
+ int quit = 0, i, use_slk = 1;
158
+ bool show_mouse_moves = false;
159
+ #ifdef PDCURSES
160
+ bool blink_state = FALSE;
161
+ int fmt = 0xa;
162
+ const char *title_text = "NewTest: tests various PDCurses features";
163
+ #else
164
+ int fmt = 3; /* for ncurses, this is the 4-4-4 SLK format */
165
+ #endif
166
+ int cursor_state_1 = 0, cursor_state_2 = 1;
167
+ int cursor_y = 19, cursor_x = 51;
168
+ int show_slk_index_line = 0;
169
+ int redraw = 1;
170
+ unsigned extra_character_to_show = 0;
171
+ #ifdef HAVE_WIDE
172
+ unsigned unicode_offset = 0x80;
173
+ #endif
174
+
175
+ setlocale(LC_ALL, "");
176
+ ttytype[0] = 25; ttytype[1] = 90; /* Allow 25 to 90 lines... */
177
+ ttytype[2] = 80; ttytype[3] = (char)200; /* ...and 80 to 200 columns */
178
+ /* (This program gets weird artifacts when smaller than 25x80.) */
179
+ for( i = 1; i < argc; i++)
180
+ if( argv[i][0] == '-')
181
+ switch( argv[i][1])
182
+ {
183
+ case 's':
184
+ use_slk = 0;
185
+ break;
186
+ case 'l':
187
+ setlocale( LC_ALL, argv[i] + 2);
188
+ break;
189
+ case 'e':
190
+ sscanf( argv[i] + 2, "%x", &extra_character_to_show);
191
+ break;
192
+ case 'f':
193
+ sscanf( argv[i] + 2, "%x", (unsigned *)&fmt);
194
+ break;
195
+ case 'i':
196
+ show_slk_index_line = 1;
197
+ break;
198
+ case 'r': /* allow user-resizable windows */
199
+ {
200
+ int min_lines, max_lines, min_cols, max_cols;
201
+
202
+ if( sscanf( argv[i] + 2, "%d,%d,%d,%d",
203
+ &min_lines, &max_lines,
204
+ &min_cols, &max_cols) == 4)
205
+ {
206
+ ttytype[0] = min_lines;
207
+ ttytype[1] = max_lines;
208
+ ttytype[2] = min_cols;
209
+ ttytype[3] = max_cols;
210
+ }
211
+ }
212
+ break;
213
+ case 'd': /* set window size before initscr */
214
+ {
215
+ int n_lines, n_cols;
216
+
217
+ if( sscanf( argv[i] + 2, "%d,%d", &n_lines,
218
+ &n_cols) == 2)
219
+ resize_term( n_lines, n_cols);
220
+ }
221
+ break;
222
+ #ifdef PDCURSES
223
+ case 'z':
224
+ traceon( );
225
+ PDC_debug( "Debugging is on\n");
226
+ break;
227
+ case 't':
228
+ title_text = argv[i] + 2;
229
+ break;
230
+ #endif
231
+ #ifdef HAVE_WIDE
232
+ case 'u':
233
+ sscanf( argv[i] + 2, "%x", &unicode_offset);
234
+ break;
235
+ #endif
236
+ case 'm':
237
+ show_mouse_moves = true;
238
+ break;
239
+ default:
240
+ printf( "Option '%s' unrecognized\n", argv[i]);
241
+ break;
242
+ }
243
+ if( use_slk)
244
+ slk_init( show_slk_index_line ? -fmt : fmt);
245
+ #ifdef XCURSES
246
+ Xinitscr(argc, argv);
247
+ #else
248
+ initscr();
249
+ #endif
250
+ if( use_slk)
251
+ slk_setup( show_slk_index_line ? -fmt : fmt);
252
+
253
+ start_color();
254
+
255
+ # if defined(NCURSES_VERSION) || (defined(PDC_BUILD) && PDC_BUILD > 3000)
256
+ use_default_colors();
257
+ # endif
258
+ cbreak();
259
+ noecho();
260
+ clear();
261
+ refresh();
262
+ #ifdef __PDCURSES__
263
+ PDC_set_title( title_text);
264
+ #endif
265
+ keypad( stdscr, TRUE);
266
+ init_pair( 1, COLOR_WHITE, COLOR_BLACK);
267
+ init_pair( 2, COLOR_BLACK, COLOR_YELLOW);
268
+
269
+ mousemask( ALL_MOUSE_EVENTS | (show_mouse_moves ? REPORT_MOUSE_POSITION : 0), NULL);
270
+ attrset( COLOR_PAIR( 1));
271
+ while( !quit)
272
+ {
273
+ char buff[80];
274
+ const int xmax = getmaxx( stdscr);
275
+ const int ymax = getmaxy( stdscr);
276
+ const int color_block_start = 54;
277
+ int c, color_block_cols = (xmax - color_block_start) / 2;
278
+ const int color_block_lines = 19;
279
+ const char *cursor_state_text[N_CURSORS] = {
280
+ "Invisible (click to change) ",
281
+ "Underscore (click to change)",
282
+ "Block (click to change) ",
283
+ "Outline (click to change) ",
284
+ "Caret (click to change) ",
285
+ "Half-block (click to change)",
286
+ "Central (click to change) ",
287
+ "Cross (click to change) ",
288
+ "Heavy box (click to change) " };
289
+
290
+ if( color_block_cols < 0)
291
+ color_block_cols = 0;
292
+ if( redraw)
293
+ {
294
+ int line = 21;
295
+
296
+ mvaddstr( 1, COL1, "'Normal' white-on-black");
297
+ mvaddstr( 2, COL1, longname( ));
298
+ #if(CHTYPE_LONG >= 2) /* "non-standard" 64-bit chtypes */
299
+ attron( A_DIM);
300
+ mvaddstr( 15, 41, "Dimmed text");
301
+ attroff( A_DIM);
302
+ #endif
303
+ #ifdef A_STANDOUT
304
+ attron( A_STANDOUT);
305
+ mvaddstr( 16, 41, "Standout text");
306
+ attroff( A_STANDOUT);
307
+ #endif
308
+ #ifdef HAVE_WIDE
309
+ mvaddwstr( 3, COL1, L"'Normal' text, but wide");
310
+ #endif
311
+ attron( A_BLINK);
312
+ mvaddstr( 6, 40, "Blinking");
313
+ attron( A_BOLD);
314
+ mvaddstr( 8, 40, "BlinkBold");
315
+ attron( A_ITALIC);
316
+ mvaddstr( 0, COL2, "BlinkBoldItalic");
317
+ attrset( COLOR_PAIR( 3));
318
+ attron( A_UNDERLINE);
319
+ #ifdef HAVE_WIDE
320
+ mvaddstr( 1, COL2, "Underlined");
321
+ addwstr( L"WideUnder");
322
+ #endif
323
+ attrset( COLOR_PAIR( 1));
324
+ attron( A_UNDERLINE | A_ITALIC);
325
+ mvaddstr( 2, COL2, "UnderlinedItalic");
326
+ attrset( COLOR_PAIR( 2));
327
+ attron( A_BLINK);
328
+ mvaddstr( 4, COL1, "Black-on-yellow blinking");
329
+
330
+ attrset( COLOR_PAIR( 1));
331
+ move( 4, COL2);
332
+ text_in_a_box( "Text in a box");
333
+
334
+ #ifdef CHTYPE_LONG
335
+ attrset( COLOR_PAIR( 6));
336
+ attron( A_STRIKEOUT);
337
+ mvaddstr( 10, 40, "Strikeout");
338
+ attrset( COLOR_PAIR( 1));
339
+ #endif
340
+
341
+ #ifdef HAVE_WIDE
342
+ move( 11, 40);
343
+ text_in_a_box( "Next Ucode pg");
344
+ if( unicode_offset)
345
+ {
346
+ move( 12, 40);
347
+ text_in_a_box( "Prev Ucode pg");
348
+ }
349
+ mvprintw( 13, 40, "U+%04x ", unicode_offset);
350
+
351
+ #endif
352
+
353
+ mvaddstr( 5, 1, " 0 1 2 3 4 5 6 7 8 9 a b c d e f");
354
+ for( i = 0; i < 8; i++)
355
+ {
356
+ char buff[4];
357
+
358
+ sprintf( buff, "%02x",
359
+ #ifdef HAVE_WIDE
360
+ (unsigned)( i * 16 + unicode_offset) & 0xff);
361
+ #else
362
+ (unsigned)( i * 16 + 128) & 0xff);
363
+ #endif
364
+ mvaddstr( 6 + i, 1, buff);
365
+ mvaddstr( 6 + i, 36, buff);
366
+ }
367
+ for( i = 0; i < 128; i++)
368
+ { /* Show extended characters: */
369
+ #ifdef HAVE_WIDE
370
+ wchar_t buff[2];
371
+
372
+ buff[0] = (wchar_t)( i + unicode_offset);
373
+ buff[1] = '\0';
374
+ mvaddwstr( 6 + i / 16, 4 + 2 * (i % 16), buff);
375
+ #else
376
+ move( 6 + i / 16, 4 + 2 * (i % 16));
377
+ addch( i + 128);
378
+ #endif
379
+ addch( ' ');
380
+ }
381
+
382
+ #if(CHTYPE_LONG >= 2) /* "non-standard" 64-bit chtypes */
383
+ for( i = 0; i < 3 && line < ymax; i++, line++)
384
+ { /* Demonstrate full RGB color control: */
385
+ int j;
386
+ const char *output_text[3] = {
387
+ "Red on green to white on black | (you can get full RGB colors when desired,",
388
+ "Blue on yellow to black on red | with palette coloring still being available)",
389
+ "White on red to green on blue, underlined and italic" };
390
+ const int len = (int)strlen( output_text[i]);
391
+
392
+ move( line, 1);
393
+ for( j = 0; j < len && j + 1 < xmax; j++)
394
+ {
395
+ attr_t output_color;
396
+ const int oval = j * 31 / len;
397
+ const int reverse = 31 - oval;
398
+
399
+ if( !i)
400
+ output_color = A_RGB( 31, oval, oval, 0, reverse, 0);
401
+ else if( i == 1)
402
+ output_color = A_RGB( 0, 0, reverse, 31, reverse, 0);
403
+ else
404
+ {
405
+ output_color = A_RGB( reverse, 31, reverse,
406
+ reverse, 0, oval);
407
+ output_color |= A_UNDERLINE | A_ITALIC;
408
+ }
409
+ attrset( output_color);
410
+ addch( output_text[i][j]);
411
+ }
412
+ }
413
+ #endif /* #if(CHTYPE_LONG >= 2) */
414
+ redraw = 0;
415
+ attrset( COLOR_PAIR( 1));
416
+ if( extra_character_to_show && ymax > 23)
417
+ mvaddch( 23, 63, (chtype)extra_character_to_show);
418
+
419
+ #ifdef HAVE_WIDE
420
+ for( i = 0; i < 6; i++)
421
+ {
422
+ static const wchar_t spanish[] = L"Espa\xf1ol";
423
+
424
+ static const wchar_t russian[] = {0x0420, 0x0443, 0x0441, 0x0441,
425
+ 0x043a, 0x0438, 0x0439, L' ', 0x044f, 0x0437, 0x044b, 0x043a, 0};
426
+
427
+ static const wchar_t greek[] = {0x0395, 0x03bb, 0x03bb, 0x03b7,
428
+ 0x03bd, 0x03b9, 0x03ba, 0x03ac, 0};
429
+
430
+ static const wchar_t georgian[] = {0x10e5, 0x10d0, 0x10e0, 0x10d7,
431
+ 0x10e3, 0x10da, 0x10d8, L' ', 0x10d4, 0x10dc, 0x10d0, 0};
432
+
433
+ static const wchar_t fullwidth[] = { 0xff26, 0xff55, 0xff4c, 0xff4c,
434
+ 0xff57, 0xff49, 0xff44, 0xff54, 0xff48, 0 }; /* "Fullwidth" */
435
+
436
+ static const wchar_t combining_marks[] = { L'C', L'o', 0x35c, L'm',
437
+ L'b', 0x30a, L'i', L'n', L'i', 0x304, L'n', 0x30b, 0x329,
438
+ L'g', 0x310,
439
+ L' ', L'C', 0x338, L'h', 0x306, L'a', 0x361, L'r', L's',
440
+ 0x30e, 0x348, 0 };
441
+
442
+ static const wchar_t *texts[6] = { spanish, russian, greek,
443
+ georgian, fullwidth, combining_marks};
444
+
445
+ mvaddwstr( 15 + i / 2, 2 + 20 * (i % 2), texts[i]);
446
+ }
447
+ #if(CHTYPE_LONG >= 2) /* "non-standard" 64-bit chtypes */
448
+ mvaddch( line - 1, 58, (chtype)0x1d11e);
449
+ #endif /* U+1D11E = musical symbol G clef */
450
+ line += 2;
451
+ #endif
452
+ mvaddstr( 19, 1, curses_version( ));
453
+
454
+ #ifdef MAYBE_TRY_THIS_SOMEWHERE_ELSE
455
+ mvaddstr( 1, COL3, "Click on cursor descriptions to");
456
+ mvaddstr( 2, COL3, "cycle through possible cursors");
457
+ mvaddstr( 3, COL3, "Click on colors at left to change");
458
+ mvaddstr( 4, COL3, "colors used for under/over/outlining");
459
+ mvaddstr( 5, COL3, "Click 'Blink' at bottom to toggle");
460
+ mvaddstr( 6, COL3, "'real' blinking vs. 'highlit' blink");
461
+ #endif
462
+ }
463
+
464
+ mvaddnstr( 19, color_block_start, cursor_state_text[cursor_state_1],
465
+ xmax - color_block_start);
466
+ mvaddnstr( 20, color_block_start, cursor_state_text[cursor_state_2],
467
+ xmax - color_block_start);
468
+ curs_set( (cursor_state_1 << 8) | cursor_state_2);
469
+ for( i = 0; i < color_block_cols * color_block_lines; i++)
470
+ {
471
+ const int n_color_blocks = (COLOR_PAIRS < 256 ? COLOR_PAIRS : 256);
472
+
473
+ attrset( COLOR_PAIR( i >= n_color_blocks ? 2 : i));
474
+ if( i > 2 && i < n_color_blocks)
475
+ init_pair((short)i, (short)i, COLOR_BLACK);
476
+ if( !(i % color_block_cols))
477
+ move( i / color_block_cols, color_block_start);
478
+ attron( A_REVERSE);
479
+ addstr( " ");
480
+ }
481
+ move( cursor_y, cursor_x);
482
+ refresh();
483
+ c = getch( );
484
+ attrset( COLOR_PAIR( 1));
485
+ if( c == KEY_RESIZE)
486
+ {
487
+ redraw = 1;
488
+ resize_term( 0, 0);
489
+ }
490
+ else if( c == KEY_F(1) || c == 27)
491
+ quit = 1;
492
+ #ifdef PDCURSES
493
+ else if( c == KEY_F(2))
494
+ {
495
+ blink_state ^= 1;
496
+ PDC_set_blink( blink_state);
497
+ }
498
+ #endif
499
+ else if( c == KEY_F(3)) /* toggle SLKs */
500
+ {
501
+ use_slk ^= 1;
502
+ if( use_slk)
503
+ slk_restore( );
504
+ else
505
+ slk_clear( );
506
+ }
507
+ else if( c >= KEY_F(4) && c < KEY_F(12))
508
+ {
509
+ sscanf( labels[c - KEY_F(1)], "%x", (unsigned *)&fmt);
510
+ if( use_slk)
511
+ slk_setup( show_slk_index_line ? -fmt : fmt);
512
+ }
513
+ if( c != KEY_MOUSE)
514
+ {
515
+ sprintf( buff, "Key %s", keyname( c));
516
+ if( !memcmp( buff + 4, "UNKNOWN", 7))
517
+ sprintf( buff + 11, " (%x)", c);
518
+ strcat( buff, " hit ");
519
+ buff[COL2 - COL1] = '\0';
520
+ mvaddstr( 0, COL1, buff);
521
+ }
522
+ else
523
+ {
524
+ MEVENT mouse_event;
525
+ #ifdef __PDCURSES__
526
+ nc_getmouse( &mouse_event);
527
+ #else
528
+ getmouse( &mouse_event);
529
+ #endif
530
+ sprintf( buff, "Mouse at %d x %d: %x ", mouse_event.x,
531
+ mouse_event.y, (unsigned)mouse_event.bstate);
532
+ cursor_x = mouse_event.x;
533
+ cursor_y = mouse_event.y;
534
+ mvaddstr( 0, COL1, buff);
535
+ if( mouse_event.x >= color_block_start
536
+ && mouse_event.y < color_block_lines)
537
+ {
538
+ int new_color = (mouse_event.x - color_block_start) / 2
539
+ + mouse_event.y * color_block_cols;
540
+
541
+ if( new_color >= 256)
542
+ new_color = -1;
543
+ #ifdef PDCURSES
544
+ PDC_set_line_color( (short)new_color);
545
+ #endif
546
+ }
547
+ #ifdef PDCURSES
548
+ else if( mouse_event.x >= color_block_start)
549
+ {
550
+ int shift = ((mouse_event.bstate & BUTTON_MODIFIER_SHIFT) ?
551
+ N_CURSORS - 1 : 1);
552
+
553
+ if( mouse_event.y == 19) /* blink/non-blink toggle */
554
+ cursor_state_1 = (cursor_state_1 + shift) % N_CURSORS;
555
+ else if( mouse_event.y == 20) /* cycle cursor state */
556
+ cursor_state_2 = (cursor_state_2 + shift) % N_CURSORS;
557
+ }
558
+ #endif
559
+ #ifdef HAVE_WIDE
560
+ else if( mouse_event.x >= 40 && mouse_event.x < 40 + 10)
561
+ {
562
+ if( mouse_event.y == 11)
563
+ {
564
+ redraw = 1;
565
+ unicode_offset += 0x80;
566
+ }
567
+ else if( mouse_event.y == 12 && unicode_offset)
568
+ {
569
+ redraw = 1;
570
+ unicode_offset -= 0x80;
571
+ }
572
+ }
573
+ #endif
574
+ }
575
+ }
576
+
577
+ endwin();
578
+
579
+ return 0;
580
+ }
581
+