curses 1.4.6 → 1.5.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 (254) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/push_gem.yml +6 -4
  3. data/README.md +8 -1
  4. data/curses.gemspec +2 -2
  5. data/ext/curses/curses.c +188 -12
  6. data/ext/curses/extconf.rb +3 -2
  7. data/lib/curses.rb +7 -0
  8. data/sample/attr_demo.rb +4 -2
  9. data/sample/screen.rb +9 -0
  10. data/vendor/PDCurses/.gitignore +47 -0
  11. data/vendor/PDCurses/.travis.yml +49 -0
  12. data/vendor/PDCurses/CMakeLists.txt +68 -0
  13. data/vendor/PDCurses/HISTORY.md +2036 -0
  14. data/vendor/PDCurses/IMPLEMNT.md +327 -0
  15. data/vendor/PDCurses/Makefile +27 -0
  16. data/vendor/PDCurses/README.md +77 -0
  17. data/vendor/PDCurses/acs_defs.h +265 -0
  18. data/vendor/PDCurses/appveyor.yml +218 -0
  19. data/vendor/PDCurses/cmake/README.md +71 -0
  20. data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
  21. data/vendor/PDCurses/cmake/build_options.cmake +25 -0
  22. data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
  23. data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
  24. data/vendor/PDCurses/cmake/get_version.cmake +17 -0
  25. data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
  26. data/vendor/PDCurses/cmake/project_common.cmake +121 -0
  27. data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
  28. data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
  29. data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
  30. data/vendor/PDCurses/cmake/version.in.cmake +73 -0
  31. data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
  32. data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
  33. data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
  34. data/vendor/PDCurses/curses.h +1846 -0
  35. data/vendor/PDCurses/curspriv.h +134 -0
  36. data/vendor/PDCurses/demos/README.md +25 -0
  37. data/vendor/PDCurses/demos/firework.c +144 -0
  38. data/vendor/PDCurses/demos/newtest.c +581 -0
  39. data/vendor/PDCurses/demos/ozdemo.c +447 -0
  40. data/vendor/PDCurses/demos/ptest.c +283 -0
  41. data/vendor/PDCurses/demos/rain.c +157 -0
  42. data/vendor/PDCurses/demos/testcurs.c +1607 -0
  43. data/vendor/PDCurses/demos/tui.c +1048 -0
  44. data/vendor/PDCurses/demos/tui.h +65 -0
  45. data/vendor/PDCurses/demos/tuidemo.c +233 -0
  46. data/vendor/PDCurses/demos/version.c +61 -0
  47. data/vendor/PDCurses/demos/worm.c +432 -0
  48. data/vendor/PDCurses/demos/xmas.c +955 -0
  49. data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
  50. data/vendor/PDCurses/dos/Makefile +105 -0
  51. data/vendor/PDCurses/dos/Makefile.bcc +83 -0
  52. data/vendor/PDCurses/dos/Makefile.dmc +257 -0
  53. data/vendor/PDCurses/dos/Makefile.msc +113 -0
  54. data/vendor/PDCurses/dos/Makefile.wcc +107 -0
  55. data/vendor/PDCurses/dos/README.md +51 -0
  56. data/vendor/PDCurses/dos/bccdos.lrf +9 -0
  57. data/vendor/PDCurses/dos/mscdos.lrf +50 -0
  58. data/vendor/PDCurses/dos/pdcclip.c +132 -0
  59. data/vendor/PDCurses/dos/pdcdisp.c +135 -0
  60. data/vendor/PDCurses/dos/pdcdos.h +194 -0
  61. data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
  62. data/vendor/PDCurses/dos/pdckbd.c +513 -0
  63. data/vendor/PDCurses/dos/pdcscrn.c +785 -0
  64. data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
  65. data/vendor/PDCurses/dos/pdcutil.c +212 -0
  66. data/vendor/PDCurses/libobjs.mif +26 -0
  67. data/vendor/PDCurses/makedist.mif +20 -0
  68. data/vendor/PDCurses/man/Makefile +37 -0
  69. data/vendor/PDCurses/man/README.md +21 -0
  70. data/vendor/PDCurses/man/intro.md +361 -0
  71. data/vendor/PDCurses/man/manext.c +119 -0
  72. data/vendor/PDCurses/man/sdl.md +152 -0
  73. data/vendor/PDCurses/man/sdl2.md +58 -0
  74. data/vendor/PDCurses/man/x11.md +407 -0
  75. data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
  76. data/vendor/PDCurses/ncurses/README.md +26 -0
  77. data/vendor/PDCurses/ncurses/makefile +29 -0
  78. data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
  79. data/vendor/PDCurses/os2/Makefile +132 -0
  80. data/vendor/PDCurses/os2/Makefile.bcc +90 -0
  81. data/vendor/PDCurses/os2/Makefile.wcc +43 -0
  82. data/vendor/PDCurses/os2/README.md +43 -0
  83. data/vendor/PDCurses/os2/iccos2.lrf +50 -0
  84. data/vendor/PDCurses/os2/iccos2.mak +256 -0
  85. data/vendor/PDCurses/os2/pdcclip.c +188 -0
  86. data/vendor/PDCurses/os2/pdcdisp.c +93 -0
  87. data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
  88. data/vendor/PDCurses/os2/pdckbd.c +521 -0
  89. data/vendor/PDCurses/os2/pdcos2.h +55 -0
  90. data/vendor/PDCurses/os2/pdcscrn.c +449 -0
  91. data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
  92. data/vendor/PDCurses/os2/pdcutil.c +52 -0
  93. data/vendor/PDCurses/panel.h +56 -0
  94. data/vendor/PDCurses/pdcurses/README.md +25 -0
  95. data/vendor/PDCurses/pdcurses/addch.c +693 -0
  96. data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
  97. data/vendor/PDCurses/pdcurses/addstr.c +240 -0
  98. data/vendor/PDCurses/pdcurses/attr.c +359 -0
  99. data/vendor/PDCurses/pdcurses/beep.c +68 -0
  100. data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
  101. data/vendor/PDCurses/pdcurses/border.c +411 -0
  102. data/vendor/PDCurses/pdcurses/clear.c +159 -0
  103. data/vendor/PDCurses/pdcurses/color.c +298 -0
  104. data/vendor/PDCurses/pdcurses/debug.c +109 -0
  105. data/vendor/PDCurses/pdcurses/delch.c +96 -0
  106. data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
  107. data/vendor/PDCurses/pdcurses/deprec.c +27 -0
  108. data/vendor/PDCurses/pdcurses/getch.c +417 -0
  109. data/vendor/PDCurses/pdcurses/getstr.c +474 -0
  110. data/vendor/PDCurses/pdcurses/getyx.c +139 -0
  111. data/vendor/PDCurses/pdcurses/inch.c +127 -0
  112. data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
  113. data/vendor/PDCurses/pdcurses/initscr.c +367 -0
  114. data/vendor/PDCurses/pdcurses/inopts.c +324 -0
  115. data/vendor/PDCurses/pdcurses/insch.c +271 -0
  116. data/vendor/PDCurses/pdcurses/insstr.c +264 -0
  117. data/vendor/PDCurses/pdcurses/instr.c +246 -0
  118. data/vendor/PDCurses/pdcurses/kernel.c +259 -0
  119. data/vendor/PDCurses/pdcurses/keyname.c +157 -0
  120. data/vendor/PDCurses/pdcurses/mouse.c +438 -0
  121. data/vendor/PDCurses/pdcurses/move.c +57 -0
  122. data/vendor/PDCurses/pdcurses/outopts.c +159 -0
  123. data/vendor/PDCurses/pdcurses/overlay.c +214 -0
  124. data/vendor/PDCurses/pdcurses/pad.c +260 -0
  125. data/vendor/PDCurses/pdcurses/panel.c +633 -0
  126. data/vendor/PDCurses/pdcurses/printw.c +126 -0
  127. data/vendor/PDCurses/pdcurses/refresh.c +279 -0
  128. data/vendor/PDCurses/pdcurses/scanw.c +578 -0
  129. data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
  130. data/vendor/PDCurses/pdcurses/scroll.c +101 -0
  131. data/vendor/PDCurses/pdcurses/slk.c +591 -0
  132. data/vendor/PDCurses/pdcurses/termattr.c +182 -0
  133. data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
  134. data/vendor/PDCurses/pdcurses/touch.c +163 -0
  135. data/vendor/PDCurses/pdcurses/util.c +312 -0
  136. data/vendor/PDCurses/pdcurses/window.c +569 -0
  137. data/vendor/PDCurses/sdl1/Makefile +129 -0
  138. data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
  139. data/vendor/PDCurses/sdl1/README.md +31 -0
  140. data/vendor/PDCurses/sdl1/deffont.h +385 -0
  141. data/vendor/PDCurses/sdl1/deficon.h +23 -0
  142. data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
  143. data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
  144. data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
  145. data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
  146. data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
  147. data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
  148. data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
  149. data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
  150. data/vendor/PDCurses/sdl1/sdltest.c +79 -0
  151. data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
  152. data/vendor/PDCurses/sdl2/Makefile +135 -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 +135 -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 +249 -8
@@ -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
+