curses 1.3.2 → 1.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +19 -0
- data/.github/workflows/ubuntu.yml +26 -0
- data/.github/workflows/windows.yml +25 -0
- data/History.md +27 -0
- data/README.md +14 -46
- data/Rakefile +0 -86
- data/curses.gemspec +3 -4
- data/ext/curses/curses.c +194 -38
- data/ext/curses/extconf.rb +81 -22
- data/lib/curses.rb +5 -12
- data/sample/addch.rb +16 -0
- data/sample/attr_demo.rb +32 -0
- data/sample/colors.rb +26 -0
- data/sample/mouse_move.rb +75 -0
- data/vendor/PDCurses/.gitignore +47 -0
- data/vendor/PDCurses/.travis.yml +49 -0
- data/vendor/PDCurses/CMakeLists.txt +68 -0
- data/vendor/PDCurses/HISTORY.md +2036 -0
- data/vendor/PDCurses/IMPLEMNT.md +327 -0
- data/vendor/PDCurses/Makefile +27 -0
- data/vendor/PDCurses/README.md +77 -0
- data/vendor/PDCurses/acs_defs.h +265 -0
- data/vendor/PDCurses/appveyor.yml +218 -0
- data/vendor/PDCurses/cmake/README.md +71 -0
- data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
- data/vendor/PDCurses/cmake/build_options.cmake +25 -0
- data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
- data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
- data/vendor/PDCurses/cmake/get_version.cmake +17 -0
- data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
- data/vendor/PDCurses/cmake/project_common.cmake +121 -0
- data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
- data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
- data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
- data/vendor/PDCurses/cmake/version.in.cmake +73 -0
- data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
- data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
- data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
- data/vendor/PDCurses/curses.h +1846 -0
- data/vendor/PDCurses/curspriv.h +134 -0
- data/vendor/PDCurses/demos/README.md +25 -0
- data/vendor/PDCurses/demos/firework.c +144 -0
- data/vendor/PDCurses/demos/newtest.c +581 -0
- data/vendor/PDCurses/demos/ozdemo.c +447 -0
- data/vendor/PDCurses/demos/ptest.c +283 -0
- data/vendor/PDCurses/demos/rain.c +157 -0
- data/vendor/PDCurses/demos/testcurs.c +1607 -0
- data/vendor/PDCurses/demos/tui.c +1048 -0
- data/vendor/PDCurses/demos/tui.h +65 -0
- data/vendor/PDCurses/demos/tuidemo.c +233 -0
- data/vendor/PDCurses/demos/version.c +61 -0
- data/vendor/PDCurses/demos/worm.c +432 -0
- data/vendor/PDCurses/demos/xmas.c +955 -0
- data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
- data/vendor/PDCurses/dos/Makefile +105 -0
- data/vendor/PDCurses/dos/Makefile.bcc +83 -0
- data/vendor/PDCurses/dos/Makefile.dmc +257 -0
- data/vendor/PDCurses/dos/Makefile.msc +113 -0
- data/vendor/PDCurses/dos/Makefile.wcc +107 -0
- data/vendor/PDCurses/dos/README.md +51 -0
- data/vendor/PDCurses/dos/bccdos.lrf +9 -0
- data/vendor/PDCurses/dos/mscdos.lrf +50 -0
- data/vendor/PDCurses/dos/pdcclip.c +132 -0
- data/vendor/PDCurses/dos/pdcdisp.c +135 -0
- data/vendor/PDCurses/dos/pdcdos.h +194 -0
- data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
- data/vendor/PDCurses/dos/pdckbd.c +513 -0
- data/vendor/PDCurses/dos/pdcscrn.c +785 -0
- data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
- data/vendor/PDCurses/dos/pdcutil.c +212 -0
- data/vendor/PDCurses/libobjs.mif +26 -0
- data/vendor/PDCurses/makedist.mif +20 -0
- data/vendor/PDCurses/man/Makefile +37 -0
- data/vendor/PDCurses/man/README.md +21 -0
- data/vendor/PDCurses/man/intro.md +361 -0
- data/vendor/PDCurses/man/manext.c +119 -0
- data/vendor/PDCurses/man/sdl.md +152 -0
- data/vendor/PDCurses/man/sdl2.md +58 -0
- data/vendor/PDCurses/man/x11.md +407 -0
- data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
- data/vendor/PDCurses/ncurses/README.md +26 -0
- data/vendor/PDCurses/ncurses/makefile +29 -0
- data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
- data/vendor/PDCurses/os2/Makefile +132 -0
- data/vendor/PDCurses/os2/Makefile.bcc +90 -0
- data/vendor/PDCurses/os2/Makefile.wcc +43 -0
- data/vendor/PDCurses/os2/README.md +43 -0
- data/vendor/PDCurses/os2/iccos2.lrf +50 -0
- data/vendor/PDCurses/os2/iccos2.mak +256 -0
- data/vendor/PDCurses/os2/pdcclip.c +188 -0
- data/vendor/PDCurses/os2/pdcdisp.c +93 -0
- data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
- data/vendor/PDCurses/os2/pdckbd.c +521 -0
- data/vendor/PDCurses/os2/pdcos2.h +55 -0
- data/vendor/PDCurses/os2/pdcscrn.c +449 -0
- data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
- data/vendor/PDCurses/os2/pdcutil.c +52 -0
- data/vendor/PDCurses/panel.h +56 -0
- data/vendor/PDCurses/pdcurses/README.md +25 -0
- data/vendor/PDCurses/pdcurses/addch.c +693 -0
- data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
- data/vendor/PDCurses/pdcurses/addstr.c +240 -0
- data/vendor/PDCurses/pdcurses/attr.c +359 -0
- data/vendor/PDCurses/pdcurses/beep.c +68 -0
- data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
- data/vendor/PDCurses/pdcurses/border.c +411 -0
- data/vendor/PDCurses/pdcurses/clear.c +159 -0
- data/vendor/PDCurses/pdcurses/color.c +298 -0
- data/vendor/PDCurses/pdcurses/debug.c +109 -0
- data/vendor/PDCurses/pdcurses/delch.c +96 -0
- data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
- data/vendor/PDCurses/pdcurses/deprec.c +27 -0
- data/vendor/PDCurses/pdcurses/getch.c +417 -0
- data/vendor/PDCurses/pdcurses/getstr.c +474 -0
- data/vendor/PDCurses/pdcurses/getyx.c +139 -0
- data/vendor/PDCurses/pdcurses/inch.c +127 -0
- data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
- data/vendor/PDCurses/pdcurses/initscr.c +367 -0
- data/vendor/PDCurses/pdcurses/inopts.c +324 -0
- data/vendor/PDCurses/pdcurses/insch.c +271 -0
- data/vendor/PDCurses/pdcurses/insstr.c +264 -0
- data/vendor/PDCurses/pdcurses/instr.c +246 -0
- data/vendor/PDCurses/pdcurses/kernel.c +259 -0
- data/vendor/PDCurses/pdcurses/keyname.c +157 -0
- data/vendor/PDCurses/pdcurses/mouse.c +438 -0
- data/vendor/PDCurses/pdcurses/move.c +57 -0
- data/vendor/PDCurses/pdcurses/outopts.c +159 -0
- data/vendor/PDCurses/pdcurses/overlay.c +214 -0
- data/vendor/PDCurses/pdcurses/pad.c +260 -0
- data/vendor/PDCurses/pdcurses/panel.c +633 -0
- data/vendor/PDCurses/pdcurses/printw.c +126 -0
- data/vendor/PDCurses/pdcurses/refresh.c +279 -0
- data/vendor/PDCurses/pdcurses/scanw.c +578 -0
- data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
- data/vendor/PDCurses/pdcurses/scroll.c +101 -0
- data/vendor/PDCurses/pdcurses/slk.c +591 -0
- data/vendor/PDCurses/pdcurses/termattr.c +182 -0
- data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
- data/vendor/PDCurses/pdcurses/touch.c +163 -0
- data/vendor/PDCurses/pdcurses/util.c +312 -0
- data/vendor/PDCurses/pdcurses/window.c +569 -0
- data/vendor/PDCurses/sdl1/Makefile +129 -0
- data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
- data/vendor/PDCurses/sdl1/README.md +31 -0
- data/vendor/PDCurses/sdl1/deffont.h +385 -0
- data/vendor/PDCurses/sdl1/deficon.h +23 -0
- data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
- data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
- data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
- data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
- data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
- data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
- data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
- data/vendor/PDCurses/sdl1/sdltest.c +79 -0
- data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
- data/vendor/PDCurses/sdl2/Makefile +135 -0
- data/vendor/PDCurses/sdl2/Makefile.vc +164 -0
- data/vendor/PDCurses/sdl2/README.md +34 -0
- data/vendor/PDCurses/sdl2/deffont.h +385 -0
- data/vendor/PDCurses/sdl2/deficon.h +23 -0
- data/vendor/PDCurses/sdl2/pdcclip.c +93 -0
- data/vendor/PDCurses/sdl2/pdcdisp.c +534 -0
- data/vendor/PDCurses/sdl2/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl2/pdckbd.c +480 -0
- data/vendor/PDCurses/sdl2/pdcscrn.c +443 -0
- data/vendor/PDCurses/sdl2/pdcsdl.h +33 -0
- data/vendor/PDCurses/sdl2/pdcsetsc.c +67 -0
- data/vendor/PDCurses/sdl2/pdcutil.c +39 -0
- data/vendor/PDCurses/sdl2/sdltest.c +81 -0
- data/vendor/PDCurses/term.h +48 -0
- data/vendor/PDCurses/version.mif +7 -0
- data/vendor/PDCurses/vt/CMakeLists.txt +28 -0
- data/vendor/PDCurses/vt/Makefile +135 -0
- data/vendor/PDCurses/vt/Makefile.bcc +111 -0
- data/vendor/PDCurses/vt/Makefile.dmc +258 -0
- data/vendor/PDCurses/vt/Makefile.vc +144 -0
- data/vendor/PDCurses/vt/Makefile.wcc +107 -0
- data/vendor/PDCurses/vt/README.md +64 -0
- data/vendor/PDCurses/vt/pdcclip.c +20 -0
- data/vendor/PDCurses/vt/pdcdisp.c +284 -0
- data/vendor/PDCurses/vt/pdcgetsc.c +27 -0
- data/vendor/PDCurses/vt/pdckbd.c +394 -0
- data/vendor/PDCurses/vt/pdcscrn.c +434 -0
- data/vendor/PDCurses/vt/pdcsetsc.c +45 -0
- data/vendor/PDCurses/vt/pdcutil.c +43 -0
- data/vendor/PDCurses/vt/pdcvt.h +16 -0
- data/vendor/PDCurses/watcom.mif +68 -0
- data/vendor/PDCurses/wincon/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wincon/Makefile.bcc +88 -0
- data/vendor/PDCurses/wincon/Makefile.dmc +256 -0
- data/vendor/PDCurses/wincon/Makefile.lcc +273 -0
- data/vendor/PDCurses/wincon/Makefile.mng +176 -0
- data/vendor/PDCurses/wincon/Makefile.vc +144 -0
- data/vendor/PDCurses/wincon/Makefile.wcc +51 -0
- data/vendor/PDCurses/wincon/README.md +85 -0
- data/vendor/PDCurses/wincon/pdcclip.c +174 -0
- data/vendor/PDCurses/wincon/pdcdisp.c +143 -0
- data/vendor/PDCurses/wincon/pdcgetsc.c +55 -0
- data/vendor/PDCurses/wincon/pdckbd.c +786 -0
- data/vendor/PDCurses/wincon/pdcscrn.c +717 -0
- data/vendor/PDCurses/wincon/pdcsetsc.c +91 -0
- data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
- data/vendor/PDCurses/wincon/pdcurses.rc +28 -0
- data/vendor/PDCurses/wincon/pdcutil.c +41 -0
- data/vendor/PDCurses/wincon/pdcwin.h +31 -0
- data/vendor/PDCurses/wingui/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wingui/Makefile.bcc +85 -0
- data/vendor/PDCurses/wingui/Makefile.dmc +259 -0
- data/vendor/PDCurses/wingui/Makefile.lcc +273 -0
- data/vendor/PDCurses/wingui/Makefile.mng +171 -0
- data/vendor/PDCurses/wingui/Makefile.vc +144 -0
- data/vendor/PDCurses/wingui/Makefile.wcc +51 -0
- data/vendor/PDCurses/wingui/README.md +93 -0
- data/vendor/PDCurses/wingui/pdcclip.c +174 -0
- data/vendor/PDCurses/wingui/pdcdisp.c +718 -0
- data/vendor/PDCurses/wingui/pdcgetsc.c +30 -0
- data/vendor/PDCurses/wingui/pdckbd.c +143 -0
- data/vendor/PDCurses/wingui/pdcscrn.c +2797 -0
- data/vendor/PDCurses/wingui/pdcsetsc.c +89 -0
- data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
- data/vendor/PDCurses/wingui/pdcurses.rc +28 -0
- data/vendor/PDCurses/wingui/pdcutil.c +61 -0
- data/vendor/PDCurses/wingui/pdcwin.h +122 -0
- data/vendor/PDCurses/x11/Makefile.in +754 -0
- data/vendor/PDCurses/x11/PDCurses.spec +82 -0
- data/vendor/PDCurses/x11/README.md +62 -0
- data/vendor/PDCurses/x11/ScrollBox.c +319 -0
- data/vendor/PDCurses/x11/ScrollBox.h +51 -0
- data/vendor/PDCurses/x11/ScrollBoxP.h +70 -0
- data/vendor/PDCurses/x11/aclocal.m4 +994 -0
- data/vendor/PDCurses/x11/big_icon.xbm +46 -0
- data/vendor/PDCurses/x11/compose.h +201 -0
- data/vendor/PDCurses/x11/config.guess +1500 -0
- data/vendor/PDCurses/x11/config.h.in +100 -0
- data/vendor/PDCurses/x11/config.sub +1616 -0
- data/vendor/PDCurses/x11/configure +6700 -0
- data/vendor/PDCurses/x11/configure.ac +295 -0
- data/vendor/PDCurses/x11/debian/changelog +6 -0
- data/vendor/PDCurses/x11/debian/compat +1 -0
- data/vendor/PDCurses/x11/debian/control +11 -0
- data/vendor/PDCurses/x11/debian/copyright +27 -0
- data/vendor/PDCurses/x11/debian/rules +98 -0
- data/vendor/PDCurses/x11/install-sh +253 -0
- data/vendor/PDCurses/x11/little_icon.xbm +14 -0
- data/vendor/PDCurses/x11/ncurses_cfg.h +45 -0
- data/vendor/PDCurses/x11/pdcclip.c +173 -0
- data/vendor/PDCurses/x11/pdcdisp.c +85 -0
- data/vendor/PDCurses/x11/pdcgetsc.c +28 -0
- data/vendor/PDCurses/x11/pdckbd.c +104 -0
- data/vendor/PDCurses/x11/pdcscrn.c +258 -0
- data/vendor/PDCurses/x11/pdcsetsc.c +95 -0
- data/vendor/PDCurses/x11/pdcutil.c +52 -0
- data/vendor/PDCurses/x11/pdcx11.c +316 -0
- data/vendor/PDCurses/x11/pdcx11.h +191 -0
- data/vendor/PDCurses/x11/sb.c +155 -0
- data/vendor/PDCurses/x11/x11.c +3686 -0
- data/vendor/PDCurses/x11/xcurses-config.in +81 -0
- metadata +259 -25
- data/.travis.yml +0 -16
- data/appveyor.yml +0 -16
@@ -0,0 +1,434 @@
|
|
1
|
+
#include <stdio.h>
|
2
|
+
#include <stdlib.h>
|
3
|
+
#include <signal.h>
|
4
|
+
#include <string.h>
|
5
|
+
#if !defined( _WIN32) && !defined( DOS)
|
6
|
+
#define USE_TERMIOS
|
7
|
+
#include <unistd.h>
|
8
|
+
#include <termios.h>
|
9
|
+
#include <sys/ioctl.h>
|
10
|
+
|
11
|
+
static struct termios orig_term;
|
12
|
+
#endif
|
13
|
+
#include <assert.h>
|
14
|
+
#include "curspriv.h"
|
15
|
+
#include "pdcvt.h"
|
16
|
+
|
17
|
+
#ifdef DOS
|
18
|
+
bool PDC_is_ansi = TRUE;
|
19
|
+
#else
|
20
|
+
bool PDC_is_ansi = FALSE;
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#ifdef _WIN32
|
24
|
+
#include <windows.h>
|
25
|
+
|
26
|
+
#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
|
27
|
+
#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
|
28
|
+
#endif
|
29
|
+
#ifndef ENABLE_VIRTUAL_TERMINAL_INPUT
|
30
|
+
#define ENABLE_VIRTUAL_TERMINAL_INPUT 0x0200
|
31
|
+
#endif
|
32
|
+
#ifndef DISABLE_NEWLINE_AUTO_RETURN
|
33
|
+
#define DISABLE_NEWLINE_AUTO_RETURN 0x0008
|
34
|
+
#endif
|
35
|
+
|
36
|
+
/* In DOS/Windows, we have two possible modes of operation. If we can
|
37
|
+
successfully use SetConsoleMode to ENABLE_VIRTUAL_TERMINAL_INPUT,
|
38
|
+
we have access to most of what we'd use on xterm. If not, we can only
|
39
|
+
use what ANSI.SYS or ANSI.COM (or their NANSI or NNANSI variants) support.
|
40
|
+
We'll get sixteen colors, no mouse events, no resizable windows, etc.
|
41
|
+
|
42
|
+
So we check the return value from SetConsoleMode and set PDC_is_ansi
|
43
|
+
accordingly. (In DOS, PDC_is_ansi is always true -- there's no xterm-like
|
44
|
+
support there. On non-MS platforms, PDC_is_ansi is always false...
|
45
|
+
though that should be revisited for the Linux console, and probably
|
46
|
+
elsewhere.) */
|
47
|
+
|
48
|
+
static int set_win10_for_vt_codes( const bool setting_mode)
|
49
|
+
{
|
50
|
+
const HANDLE hIn = GetStdHandle( STD_INPUT_HANDLE);
|
51
|
+
HANDLE hOut;
|
52
|
+
DWORD dwMode = 0;
|
53
|
+
static DWORD old_input_mode;
|
54
|
+
const DWORD out_mask = ENABLE_VIRTUAL_TERMINAL_PROCESSING
|
55
|
+
| DISABLE_NEWLINE_AUTO_RETURN;
|
56
|
+
|
57
|
+
if( hIn == INVALID_HANDLE_VALUE)
|
58
|
+
return GetLastError( );
|
59
|
+
PDC_is_ansi = TRUE;
|
60
|
+
if( setting_mode)
|
61
|
+
{
|
62
|
+
GetConsoleMode( hIn, &old_input_mode);
|
63
|
+
dwMode = ENABLE_VIRTUAL_TERMINAL_INPUT;
|
64
|
+
}
|
65
|
+
else /* restoring initial mode */
|
66
|
+
dwMode = old_input_mode;
|
67
|
+
if( !SetConsoleMode( hIn, dwMode))
|
68
|
+
return GetLastError( );
|
69
|
+
/* Set output mode to handle virtual terminal sequences */
|
70
|
+
hOut = GetStdHandle( STD_OUTPUT_HANDLE);
|
71
|
+
if( hOut == INVALID_HANDLE_VALUE)
|
72
|
+
return GetLastError( );
|
73
|
+
|
74
|
+
if( !GetConsoleMode( hOut, &dwMode))
|
75
|
+
return GetLastError( );
|
76
|
+
if( setting_mode)
|
77
|
+
dwMode |= out_mask;
|
78
|
+
else /* clearing VT mode, not setting it */
|
79
|
+
dwMode &= ~out_mask;
|
80
|
+
if( !SetConsoleMode( hOut, dwMode))
|
81
|
+
return GetLastError( );
|
82
|
+
/* If we've gotten this far, the terminal has been */
|
83
|
+
/* set up to process xterm-like sequences : */
|
84
|
+
PDC_is_ansi = FALSE;
|
85
|
+
return( 0);
|
86
|
+
}
|
87
|
+
#endif
|
88
|
+
|
89
|
+
int PDC_rows = -1, PDC_cols = -1;
|
90
|
+
bool PDC_resize_occurred = FALSE;
|
91
|
+
const int STDIN = 0;
|
92
|
+
chtype PDC_capabilities = 0;
|
93
|
+
|
94
|
+
/* COLOR_PAIR to attribute encoding table. */
|
95
|
+
|
96
|
+
static short *color_pair_indices = (short *)NULL;
|
97
|
+
PACKED_RGB *pdc_rgbs = (PACKED_RGB *)NULL;
|
98
|
+
|
99
|
+
unsigned long pdc_key_modifiers = 0L;
|
100
|
+
|
101
|
+
void PDC_reset_prog_mode( void)
|
102
|
+
{
|
103
|
+
}
|
104
|
+
|
105
|
+
void PDC_reset_shell_mode( void)
|
106
|
+
{
|
107
|
+
}
|
108
|
+
|
109
|
+
static int initial_PDC_rows, initial_PDC_cols;
|
110
|
+
|
111
|
+
int PDC_resize_screen(int nlines, int ncols)
|
112
|
+
{
|
113
|
+
if( PDC_rows == -1) /* initscr( ) hasn't been called; we're just */
|
114
|
+
{ /* setting desired size at startup */
|
115
|
+
initial_PDC_rows = nlines;
|
116
|
+
initial_PDC_cols = ncols;
|
117
|
+
}
|
118
|
+
else if( nlines > 1 && ncols > 1 && !PDC_is_ansi)
|
119
|
+
{
|
120
|
+
printf( "\033[8;%d;%dt", nlines, ncols);
|
121
|
+
PDC_rows = nlines;
|
122
|
+
PDC_cols = ncols;
|
123
|
+
}
|
124
|
+
return( 0);
|
125
|
+
}
|
126
|
+
|
127
|
+
void PDC_restore_screen_mode(int i)
|
128
|
+
{
|
129
|
+
}
|
130
|
+
|
131
|
+
void PDC_save_screen_mode(int i)
|
132
|
+
{
|
133
|
+
}
|
134
|
+
|
135
|
+
void PDC_scr_close( void)
|
136
|
+
{
|
137
|
+
printf( "\0338"); /* restore cursor & attribs (VT100) */
|
138
|
+
printf( "\033[m"); /* set default screen attributes */
|
139
|
+
printf( "\033[?47l"); /* restore screen */
|
140
|
+
PDC_gotoyx( PDC_cols - 1, 0);
|
141
|
+
printf( "\033[?1000l"); /* turn off mouse events */
|
142
|
+
#ifdef _WIN32
|
143
|
+
set_win10_for_vt_codes( FALSE);
|
144
|
+
#else
|
145
|
+
#if !defined( DOS)
|
146
|
+
tcsetattr( STDIN, TCSANOW, &orig_term);
|
147
|
+
#endif
|
148
|
+
#endif
|
149
|
+
return;
|
150
|
+
}
|
151
|
+
|
152
|
+
void PDC_scr_free( void)
|
153
|
+
{
|
154
|
+
if (SP)
|
155
|
+
free(SP);
|
156
|
+
SP = (SCREEN *)NULL;
|
157
|
+
|
158
|
+
if (color_pair_indices)
|
159
|
+
free(color_pair_indices);
|
160
|
+
color_pair_indices = (short *)NULL;
|
161
|
+
|
162
|
+
if (pdc_rgbs)
|
163
|
+
free(pdc_rgbs);
|
164
|
+
pdc_rgbs = (PACKED_RGB *)NULL;
|
165
|
+
}
|
166
|
+
|
167
|
+
#ifdef USE_TERMIOS
|
168
|
+
static void sigwinchHandler( int sig)
|
169
|
+
{
|
170
|
+
struct winsize ws;
|
171
|
+
|
172
|
+
if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) != -1)
|
173
|
+
if( PDC_rows != ws.ws_row || PDC_cols != ws.ws_col)
|
174
|
+
{
|
175
|
+
PDC_rows = ws.ws_row;
|
176
|
+
PDC_cols = ws.ws_col;
|
177
|
+
PDC_resize_occurred = TRUE;
|
178
|
+
}
|
179
|
+
}
|
180
|
+
#endif
|
181
|
+
|
182
|
+
#define MAX_LINES 1000
|
183
|
+
#define MAX_COLUMNS 1000
|
184
|
+
|
185
|
+
int PDC_scr_open(int argc, char **argv)
|
186
|
+
{
|
187
|
+
int i, r, g, b, n_colors;
|
188
|
+
char *capabilities = getenv( "PDC_VT");
|
189
|
+
const char *colorterm = getenv( "COLORTERM");
|
190
|
+
#ifdef USE_TERMIOS
|
191
|
+
struct sigaction sa;
|
192
|
+
struct termios term;
|
193
|
+
#endif
|
194
|
+
#ifdef _WIN32
|
195
|
+
set_win10_for_vt_codes( TRUE);
|
196
|
+
#endif
|
197
|
+
|
198
|
+
PDC_LOG(("PDC_scr_open called\n"));
|
199
|
+
if( colorterm && !strcmp( colorterm, "truecolor"))
|
200
|
+
PDC_capabilities |= A_RGB_COLOR;
|
201
|
+
if( capabilities) /* these should really come from terminfo! */
|
202
|
+
{
|
203
|
+
if( strstr( capabilities, "RGB"))
|
204
|
+
PDC_capabilities |= A_RGB_COLOR;
|
205
|
+
if( strstr( capabilities, "UND"))
|
206
|
+
PDC_capabilities |= A_UNDERLINE;
|
207
|
+
if( strstr( capabilities, "BLI"))
|
208
|
+
PDC_capabilities |= A_BLINK;
|
209
|
+
if( strstr( capabilities, "DIM"))
|
210
|
+
PDC_capabilities |= A_DIM;
|
211
|
+
if( strstr( capabilities, "STA"))
|
212
|
+
PDC_capabilities |= A_STANDOUT;
|
213
|
+
}
|
214
|
+
SP = calloc(1, sizeof(SCREEN));
|
215
|
+
color_pair_indices = (short *)calloc( PDC_COLOR_PAIRS * 2, sizeof( short));
|
216
|
+
n_colors = (PDC_is_ansi ? 16 : 256);
|
217
|
+
pdc_rgbs = (PACKED_RGB *)calloc( n_colors, sizeof( PACKED_RGB));
|
218
|
+
assert( SP && color_pair_indices && pdc_rgbs);
|
219
|
+
if (!SP || !color_pair_indices || !pdc_rgbs)
|
220
|
+
return ERR;
|
221
|
+
|
222
|
+
COLORS = n_colors; /* should give this a try and see if it works! */
|
223
|
+
for( i = 0; i < 16 && i < n_colors; i++)
|
224
|
+
{
|
225
|
+
const int intensity = ((i & 8) ? 0xff : 0xc0);
|
226
|
+
|
227
|
+
pdc_rgbs[i] = PACK_RGB( ((i & COLOR_RED) ? intensity : 0),
|
228
|
+
((i & COLOR_GREEN) ? intensity : 0),
|
229
|
+
((i & COLOR_BLUE) ? intensity : 0));
|
230
|
+
}
|
231
|
+
/* 256-color xterm extended palette: 216 colors in a
|
232
|
+
6x6x6 color cube, plus 24 (not 50) shades of gray */
|
233
|
+
for( r = 0; r < 6; r++)
|
234
|
+
for( g = 0; g < 6; g++)
|
235
|
+
for( b = 0; b < 6; b++)
|
236
|
+
if( i < n_colors)
|
237
|
+
pdc_rgbs[i++] = PACK_RGB( r ? r * 40 + 55 : 0,
|
238
|
+
g ? g * 40 + 55 : 0,
|
239
|
+
b ? b * 40 + 55 : 0);
|
240
|
+
for( i = 0; i < 24; i++)
|
241
|
+
if( i + 232 < n_colors)
|
242
|
+
pdc_rgbs[i + 232] = PACK_RGB( i * 10 + 8, i * 10 + 8, i * 10 + 8);
|
243
|
+
setbuf( stdin, NULL);
|
244
|
+
setbuf( stdout, NULL);
|
245
|
+
#ifdef USE_TERMIOS
|
246
|
+
sigemptyset(&sa.sa_mask);
|
247
|
+
sa.sa_flags = 0;
|
248
|
+
sa.sa_handler = sigwinchHandler;
|
249
|
+
if (sigaction(SIGWINCH, &sa, NULL) == -1)
|
250
|
+
{
|
251
|
+
fprintf( stderr, "Sigaction failed\n");
|
252
|
+
return( -1);
|
253
|
+
}
|
254
|
+
sigwinchHandler( 0);
|
255
|
+
#else
|
256
|
+
{
|
257
|
+
const char *env = getenv("PDC_LINES");
|
258
|
+
|
259
|
+
PDC_rows = (env ? atoi( env) : 25);
|
260
|
+
env = getenv( "PDC_COLS");
|
261
|
+
PDC_cols = (env ? atoi( env) : 80);
|
262
|
+
}
|
263
|
+
#endif
|
264
|
+
SP->mouse_wait = PDC_CLICK_PERIOD;
|
265
|
+
SP->visibility = 0; /* no cursor, by default */
|
266
|
+
SP->curscol = SP->cursrow = 0;
|
267
|
+
SP->audible = TRUE;
|
268
|
+
SP->mono = FALSE;
|
269
|
+
|
270
|
+
while( PDC_get_rows( ) < 1 && PDC_get_columns( ) < 1)
|
271
|
+
; /* wait for screen to be drawn and size determined */
|
272
|
+
if( initial_PDC_rows > 1 && initial_PDC_cols > 1)
|
273
|
+
{
|
274
|
+
PDC_resize_screen( initial_PDC_rows, initial_PDC_cols);
|
275
|
+
while( PDC_get_rows( ) != initial_PDC_rows
|
276
|
+
&& PDC_get_columns( ) != initial_PDC_rows)
|
277
|
+
;
|
278
|
+
}
|
279
|
+
|
280
|
+
SP->lines = PDC_get_rows();
|
281
|
+
SP->cols = PDC_get_columns();
|
282
|
+
|
283
|
+
if (SP->lines < 2 || SP->lines > MAX_LINES
|
284
|
+
|| SP->cols < 2 || SP->cols > MAX_COLUMNS)
|
285
|
+
{
|
286
|
+
fprintf(stderr, "LINES value must be >= 2 and <= %d: got %d\n",
|
287
|
+
MAX_LINES, SP->lines);
|
288
|
+
fprintf(stderr, "COLS value must be >= 2 and <= %d: got %d\n",
|
289
|
+
MAX_COLUMNS, SP->cols);
|
290
|
+
|
291
|
+
return ERR;
|
292
|
+
}
|
293
|
+
|
294
|
+
#ifdef USE_TERMIOS
|
295
|
+
tcgetattr( STDIN, &orig_term);
|
296
|
+
memcpy( &term, &orig_term, sizeof( term));
|
297
|
+
term.c_lflag &= ~(ICANON | ECHO);
|
298
|
+
tcsetattr( STDIN, TCSANOW, &term);
|
299
|
+
#endif
|
300
|
+
printf( "\033[?47h"); /* Save screen */
|
301
|
+
if( !PDC_is_ansi)
|
302
|
+
printf( "\033[?1000h"); /* enable mouse events, at least on xterm */
|
303
|
+
/* NOTE: could send 1003h to get mouse motion events as well */
|
304
|
+
printf( "\0337"); /* save cursor & attribs (VT100) */
|
305
|
+
PDC_resize_occurred = FALSE;
|
306
|
+
PDC_LOG(("PDC_scr_open exit\n"));
|
307
|
+
/* PDC_reset_prog_mode(); doesn't do anything anyway */
|
308
|
+
return( 0);
|
309
|
+
}
|
310
|
+
|
311
|
+
int PDC_set_function_key( const unsigned function, const int new_key)
|
312
|
+
{
|
313
|
+
return( 0);
|
314
|
+
}
|
315
|
+
|
316
|
+
void PDC_set_resize_limits( const int new_min_lines,
|
317
|
+
const int new_max_lines,
|
318
|
+
const int new_min_cols,
|
319
|
+
const int new_max_cols)
|
320
|
+
{
|
321
|
+
return;
|
322
|
+
}
|
323
|
+
|
324
|
+
/* PDC_init_color(), PDC_init_pair(), and PDC_set_blink() all share a common
|
325
|
+
issue : after adjusting the display characteristic in question, all relevant
|
326
|
+
text should be redrawn. Call PDC_init_pair( 3, ...), and all text using
|
327
|
+
color pair 3 should be redrawn; call PDC_init_color( 5, ...) and all text
|
328
|
+
using color index 5 for either foreground or background should be redrawn;
|
329
|
+
turn "real blinking" on/off, and all blinking text should be redrawn.
|
330
|
+
(On platforms where blinking text is controlled by a timer and redrawn every
|
331
|
+
half second or so, such as X11, SDLx, and Win32a, this function can be
|
332
|
+
used for that purpose as well.)
|
333
|
+
|
334
|
+
PDC_show_changes( ) will look for relevant chains of text and redraw them.
|
335
|
+
For speed/simplicity, the code looks for the first and last character in
|
336
|
+
each line that would be affected, then draws those in between. Often --
|
337
|
+
perhaps usually -- this will be zero characters, i.e., no text on that
|
338
|
+
particular line happens to have an attribute requiring redrawing. */
|
339
|
+
|
340
|
+
static short get_pair( const chtype ch)
|
341
|
+
|
342
|
+
{
|
343
|
+
return( (short)( (ch & A_COLOR) >> PDC_COLOR_SHIFT) & (COLOR_PAIRS - 1));
|
344
|
+
}
|
345
|
+
|
346
|
+
static int color_used_for_this_char( const chtype c, const int idx)
|
347
|
+
{
|
348
|
+
const int color = get_pair( c);
|
349
|
+
const int rval = (color_pair_indices[color] == idx ||
|
350
|
+
color_pair_indices[color + PDC_COLOR_PAIRS] == idx);
|
351
|
+
|
352
|
+
return( rval);
|
353
|
+
}
|
354
|
+
|
355
|
+
void PDC_show_changes( const short pair, const short idx, const chtype attr)
|
356
|
+
{
|
357
|
+
if( curscr && curscr->_y)
|
358
|
+
{
|
359
|
+
int i;
|
360
|
+
|
361
|
+
for( i = 0; i < SP->lines - 1; i++)
|
362
|
+
if( curscr->_y[i])
|
363
|
+
{
|
364
|
+
int j = 0, n_chars;
|
365
|
+
chtype *line = curscr->_y[i];
|
366
|
+
|
367
|
+
/* skip over starting text that isn't changed : */
|
368
|
+
while( j < SP->cols && get_pair( *line) != pair
|
369
|
+
&& !color_used_for_this_char( *line, idx)
|
370
|
+
&& !(attr & *line))
|
371
|
+
{
|
372
|
+
j++;
|
373
|
+
line++;
|
374
|
+
}
|
375
|
+
n_chars = SP->cols - j;
|
376
|
+
/* then skip over text at the end that's not the right color: */
|
377
|
+
while( n_chars && get_pair( line[n_chars - 1]) != pair
|
378
|
+
&& !color_used_for_this_char( line[n_chars - 1], idx)
|
379
|
+
&& !(attr & line[n_chars - 1]))
|
380
|
+
n_chars--;
|
381
|
+
assert( n_chars >= 0);
|
382
|
+
if( n_chars)
|
383
|
+
PDC_transform_line( i, j, n_chars, line);
|
384
|
+
}
|
385
|
+
}
|
386
|
+
}
|
387
|
+
|
388
|
+
void PDC_init_pair( short pair, short fg, short bg)
|
389
|
+
{
|
390
|
+
if( color_pair_indices[pair] != fg ||
|
391
|
+
color_pair_indices[pair + PDC_COLOR_PAIRS] != bg)
|
392
|
+
{
|
393
|
+
color_pair_indices[pair] = fg;
|
394
|
+
color_pair_indices[pair + PDC_COLOR_PAIRS] = bg;
|
395
|
+
PDC_show_changes( pair, -1, 0);
|
396
|
+
}
|
397
|
+
}
|
398
|
+
|
399
|
+
int PDC_pair_content( short pair, short *fg, short *bg)
|
400
|
+
{
|
401
|
+
*fg = color_pair_indices[pair];
|
402
|
+
*bg = color_pair_indices[pair + PDC_COLOR_PAIRS];
|
403
|
+
return OK;
|
404
|
+
}
|
405
|
+
|
406
|
+
bool PDC_can_change_color(void)
|
407
|
+
{
|
408
|
+
return TRUE;
|
409
|
+
}
|
410
|
+
|
411
|
+
int PDC_color_content( short color, short *red, short *green, short *blue)
|
412
|
+
{
|
413
|
+
PACKED_RGB col = pdc_rgbs[color];
|
414
|
+
|
415
|
+
*red = DIVROUND( Get_RValue(col) * 1000, 255);
|
416
|
+
*green = DIVROUND( Get_GValue(col) * 1000, 255);
|
417
|
+
*blue = DIVROUND( Get_BValue(col) * 1000, 255);
|
418
|
+
|
419
|
+
return OK;
|
420
|
+
}
|
421
|
+
|
422
|
+
int PDC_init_color( short color, short red, short green, short blue)
|
423
|
+
{
|
424
|
+
const PACKED_RGB new_rgb = PACK_RGB(DIVROUND(red * 255, 1000),
|
425
|
+
DIVROUND(green * 255, 1000),
|
426
|
+
DIVROUND(blue * 255, 1000));
|
427
|
+
|
428
|
+
if( pdc_rgbs[color] != new_rgb)
|
429
|
+
{
|
430
|
+
pdc_rgbs[color] = new_rgb;
|
431
|
+
PDC_show_changes( -1, color, 0);
|
432
|
+
}
|
433
|
+
return OK;
|
434
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
#include <stdio.h>
|
2
|
+
#include <curspriv.h>
|
3
|
+
#include "pdcvt.h"
|
4
|
+
|
5
|
+
#define CURSOR_ON "\033[?25h"
|
6
|
+
#define CURSOR_OFF "\033[?25l"
|
7
|
+
|
8
|
+
int PDC_curs_set( int visibility)
|
9
|
+
{
|
10
|
+
int ret_vis;
|
11
|
+
|
12
|
+
PDC_LOG(("PDC_curs_set() - called: visibility=%d\n", visibility));
|
13
|
+
|
14
|
+
ret_vis = SP->visibility;
|
15
|
+
|
16
|
+
SP->visibility = visibility;
|
17
|
+
|
18
|
+
printf( visibility ? CURSOR_ON : CURSOR_OFF);
|
19
|
+
|
20
|
+
return ret_vis;
|
21
|
+
}
|
22
|
+
|
23
|
+
int PDC_really_blinking = FALSE;
|
24
|
+
|
25
|
+
void PDC_show_changes( const short pair, const short idx, const chtype attr);
|
26
|
+
|
27
|
+
int PDC_set_blink(bool blinkon)
|
28
|
+
{
|
29
|
+
if( PDC_really_blinking != blinkon)
|
30
|
+
{
|
31
|
+
PDC_really_blinking = blinkon;
|
32
|
+
PDC_show_changes( -1, -1, A_BLINK);
|
33
|
+
}
|
34
|
+
return OK;
|
35
|
+
}
|
36
|
+
|
37
|
+
void PDC_set_title( const char *title)
|
38
|
+
{
|
39
|
+
PDC_LOG(("PDC_set_title() - called:<%s>\n", title));
|
40
|
+
|
41
|
+
#ifndef DOS
|
42
|
+
if( !PDC_is_ansi)
|
43
|
+
printf( "\033]2;%s\a", title);
|
44
|
+
#endif
|
45
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
#ifdef _WIN32
|
2
|
+
#include <windows.h>
|
3
|
+
#undef MOUSE_MOVED
|
4
|
+
#else
|
5
|
+
#include <unistd.h>
|
6
|
+
#endif
|
7
|
+
#include "curses.h"
|
8
|
+
|
9
|
+
void PDC_beep(void)
|
10
|
+
{
|
11
|
+
}
|
12
|
+
|
13
|
+
void PDC_napms(int ms)
|
14
|
+
{
|
15
|
+
#ifdef _WIN32
|
16
|
+
Sleep(ms);
|
17
|
+
#else
|
18
|
+
#ifndef DOS
|
19
|
+
usleep(1000 * ms);
|
20
|
+
#endif
|
21
|
+
#endif
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
const char *PDC_sysname(void)
|
26
|
+
{
|
27
|
+
return( "VTx00");
|
28
|
+
}
|
29
|
+
|
30
|
+
PDC_version_info PDC_version = { PDC_PORT_VT,
|
31
|
+
PDC_VER_MAJOR, PDC_VER_MINOR, PDC_VER_CHANGE,
|
32
|
+
sizeof( chtype),
|
33
|
+
#ifdef PDC_WIDE
|
34
|
+
TRUE,
|
35
|
+
#else
|
36
|
+
FALSE,
|
37
|
+
#endif
|
38
|
+
#ifdef PDC_FORCE_UTF8
|
39
|
+
TRUE,
|
40
|
+
#else
|
41
|
+
FALSE,
|
42
|
+
#endif
|
43
|
+
};
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#define PACKED_RGB uint32_t
|
2
|
+
#ifndef DIVROUND
|
3
|
+
#define DIVROUND( A, B) ((A + B / 2) / B)
|
4
|
+
#endif
|
5
|
+
#define PACK_RGB( R, G, B) (((uint32_t)(R) << 16) | ((uint32_t)(G) << 8) \
|
6
|
+
| (uint32_t)(B))
|
7
|
+
|
8
|
+
#define Get_RValue( rgb) ((int)( (rgb) >> 16))
|
9
|
+
#define Get_GValue( rgb) ((int)( (rgb) >> 8) & 0xff)
|
10
|
+
#define Get_BValue( rgb) ((int)((rgb) & 0xff))
|
11
|
+
|
12
|
+
int PDC_pair_content( short pair, short *fg, short *bg);
|
13
|
+
|
14
|
+
/* If the following is TRUE, only a limited subset of control
|
15
|
+
codes will actually work. Happens in older Windows and DOS. */
|
16
|
+
extern bool PDC_is_ansi;
|
@@ -0,0 +1,68 @@
|
|
1
|
+
# Common elements for the Watcom makefiles
|
2
|
+
|
3
|
+
!ifeq CROSS Y
|
4
|
+
DEL = rm -f
|
5
|
+
COPY = cp
|
6
|
+
!else
|
7
|
+
DEL = del
|
8
|
+
COPY = copy
|
9
|
+
!endif
|
10
|
+
|
11
|
+
srcdir = $(PDCURSES_SRCDIR)/pdcurses
|
12
|
+
demodir = $(PDCURSES_SRCDIR)/demos
|
13
|
+
|
14
|
+
LIBOBJS = addch.obj addchstr.obj addstr.obj attr.obj beep.obj bkgd.obj &
|
15
|
+
border.obj clear.obj color.obj delch.obj deleteln.obj deprec.obj &
|
16
|
+
getch.obj getstr.obj getyx.obj inch.obj inchstr.obj initscr.obj inopts.obj &
|
17
|
+
insch.obj insstr.obj instr.obj kernel.obj keyname.obj mouse.obj move.obj &
|
18
|
+
outopts.obj overlay.obj pad.obj panel.obj printw.obj refresh.obj &
|
19
|
+
scanw.obj scr_dump.obj scroll.obj slk.obj termattr.obj terminfo.obj &
|
20
|
+
touch.obj util.obj window.obj debug.obj
|
21
|
+
|
22
|
+
PDCOBJS = pdcclip.obj pdcdisp.obj pdcgetsc.obj pdckbd.obj pdcscrn.obj &
|
23
|
+
pdcsetsc.obj pdcutil.obj
|
24
|
+
|
25
|
+
DEMOS = testcurs.exe ozdemo.exe xmas.exe tuidemo.exe firework.exe &
|
26
|
+
newtest.exe ptest.exe rain.exe worm.exe
|
27
|
+
|
28
|
+
LIBCURSES = pdcurses.lib
|
29
|
+
|
30
|
+
LINK = wlink
|
31
|
+
|
32
|
+
!ifdef __LOADDLL__
|
33
|
+
! loaddll wcc wccd
|
34
|
+
! loaddll wcc386 wccd386
|
35
|
+
! loaddll wlink wlinkd
|
36
|
+
! loaddll wlib wlibd
|
37
|
+
!endif
|
38
|
+
|
39
|
+
all: $(LIBCURSES) $(DEMOS)
|
40
|
+
|
41
|
+
clean
|
42
|
+
-$(DEL) *.obj
|
43
|
+
-$(DEL) *.lib
|
44
|
+
-$(DEL) *.exe
|
45
|
+
-$(DEL) *.err
|
46
|
+
|
47
|
+
demos: $(DEMOS)
|
48
|
+
|
49
|
+
.c: $(srcdir);$(osdir);$(demodir)
|
50
|
+
.c.obj: .autodepend
|
51
|
+
$(CC) $(CFLAGS) -fo=$@ $<
|
52
|
+
|
53
|
+
.obj.exe:
|
54
|
+
$(LINK) $(LDFLAGS) n $@ f $*.obj l $(LIBCURSES)
|
55
|
+
|
56
|
+
testcurs.exe: testcurs.obj $(LIBCURSES)
|
57
|
+
ozdemo.exe: ozdemo.obj $(LIBCURSES)
|
58
|
+
newtest.exe: newtest.obj $(LIBCURSES)
|
59
|
+
xmas.exe: xmas.obj $(LIBCURSES)
|
60
|
+
firework.exe: firework.obj $(LIBCURSES)
|
61
|
+
rain.exe: rain.obj $(LIBCURSES)
|
62
|
+
worm.exe: worm.obj $(LIBCURSES)
|
63
|
+
ptest.exe: ptest.obj $(LIBCURSES)
|
64
|
+
|
65
|
+
tuidemo.exe: tuidemo.obj tui.obj $(LIBCURSES)
|
66
|
+
$(LINK) $(LDFLAGS) n $@ f tuidemo.obj f tui.obj l $(LIBCURSES)
|
67
|
+
|
68
|
+
dist: .symbolic
|
@@ -0,0 +1,27 @@
|
|
1
|
+
cmake_minimum_required(VERSION 3.11)
|
2
|
+
|
3
|
+
if(NOT CMAKE_BUILD_TYPE)
|
4
|
+
set(CMAKE_BUILD_TYPE "MinSizeRel" CACHE STRING "Choose the type of build, options are: Debug, Release, or MinSizeRel." FORCE)
|
5
|
+
message(STATUS "No build type specified, defaulting to MinSizeRel.")
|
6
|
+
endif()
|
7
|
+
|
8
|
+
PROJECT(wincon VERSION "${PROJECT_VERSION}" LANGUAGES C)
|
9
|
+
|
10
|
+
INCLUDE(project_common)
|
11
|
+
|
12
|
+
demo_app(../demos version)
|
13
|
+
demo_app(../demos firework)
|
14
|
+
demo_app(../demos ozdemo)
|
15
|
+
demo_app(../demos newtest)
|
16
|
+
demo_app(../demos ptest)
|
17
|
+
demo_app(../demos rain)
|
18
|
+
demo_app(../demos testcurs)
|
19
|
+
demo_app(../demos tuidemo)
|
20
|
+
demo_app(../demos worm)
|
21
|
+
demo_app(../demos xmas)
|
22
|
+
|
23
|
+
IF(WIN32)
|
24
|
+
SET_TARGET_PROPERTIES(${PROJECT_NAME}_newtest PROPERTIES LINK_FLAGS "/SUBSYSTEM:WINDOWS")
|
25
|
+
ENDIF(WIN32)
|
26
|
+
|
27
|
+
SET(CPACK_COMPONENTS_ALL applications)
|