curses 1.2.6 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +19 -0
- data/.github/workflows/ubuntu.yml +26 -0
- data/.github/workflows/windows.yml +28 -0
- data/.gitmodules +1 -1
- data/.travis.yml +6 -3
- data/History.md +40 -0
- data/README.md +4 -1
- data/Rakefile +0 -83
- data/curses.gemspec +2 -3
- data/ext/curses/curses.c +1271 -151
- data/ext/curses/extconf.rb +140 -17
- data/lib/curses.rb +5 -12
- data/sample/form.rb +52 -0
- data/sample/menu.rb +1 -1
- 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/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.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/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.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.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.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.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 +255 -21
@@ -0,0 +1,213 @@
|
|
1
|
+
/* Public Domain Curses */
|
2
|
+
|
3
|
+
#include <curspriv.h>
|
4
|
+
|
5
|
+
/*man-start**************************************************************
|
6
|
+
|
7
|
+
scr_dump
|
8
|
+
--------
|
9
|
+
|
10
|
+
### Synopsis
|
11
|
+
|
12
|
+
int putwin(WINDOW *win, FILE *filep);
|
13
|
+
WINDOW *getwin(FILE *filep);
|
14
|
+
int scr_dump(const char *filename);
|
15
|
+
int scr_init(const char *filename);
|
16
|
+
int scr_restore(const char *filename);
|
17
|
+
int scr_set(const char *filename);
|
18
|
+
|
19
|
+
### Description
|
20
|
+
|
21
|
+
getwin() reads window-related data previously stored in a file
|
22
|
+
by putwin(). It then creates and initialises a new window using
|
23
|
+
that data.
|
24
|
+
|
25
|
+
putwin() writes all data associated with a window into a file,
|
26
|
+
using an unspecified format. This information can be retrieved
|
27
|
+
later using getwin().
|
28
|
+
|
29
|
+
scr_dump() writes the current contents of the virtual screen to
|
30
|
+
the file named by filename in an unspecified format.
|
31
|
+
|
32
|
+
scr_restore() function sets the virtual screen to the contents
|
33
|
+
of the file named by filename, which must have been written
|
34
|
+
using scr_dump(). The next refresh operation restores the screen
|
35
|
+
to the way it looked in the dump file.
|
36
|
+
|
37
|
+
In PDCurses, scr_init() does nothing, and scr_set() is a synonym
|
38
|
+
for scr_restore(). Also, scr_dump() and scr_restore() save and
|
39
|
+
load from curscr. This differs from some other implementations,
|
40
|
+
where scr_init() works with curscr, and scr_restore() works with
|
41
|
+
newscr; but the effect should be the same. (PDCurses has no
|
42
|
+
newscr.)
|
43
|
+
|
44
|
+
### Return Value
|
45
|
+
|
46
|
+
On successful completion, getwin() returns a pointer to the
|
47
|
+
window it created. Otherwise, it returns a null pointer. Other
|
48
|
+
functions return OK or ERR.
|
49
|
+
|
50
|
+
### Portability
|
51
|
+
X/Open BSD SYS V
|
52
|
+
putwin Y
|
53
|
+
getwin Y
|
54
|
+
scr_dump Y
|
55
|
+
scr_init Y
|
56
|
+
scr_restore Y
|
57
|
+
scr_set Y
|
58
|
+
|
59
|
+
**man-end****************************************************************/
|
60
|
+
|
61
|
+
#include <stdlib.h>
|
62
|
+
#include <string.h>
|
63
|
+
|
64
|
+
#define DUMPVER 1 /* Should be updated whenever the WINDOW struct is
|
65
|
+
changed */
|
66
|
+
|
67
|
+
int putwin(WINDOW *win, FILE *filep)
|
68
|
+
{
|
69
|
+
static const char *marker = "PDC";
|
70
|
+
static const unsigned char version = DUMPVER;
|
71
|
+
|
72
|
+
PDC_LOG(("putwin() - called\n"));
|
73
|
+
|
74
|
+
/* write the marker and the WINDOW struct */
|
75
|
+
|
76
|
+
if (filep && fwrite(marker, strlen(marker), 1, filep)
|
77
|
+
&& fwrite(&version, 1, 1, filep)
|
78
|
+
&& fwrite(win, sizeof(WINDOW), 1, filep))
|
79
|
+
{
|
80
|
+
int i;
|
81
|
+
|
82
|
+
/* write each line */
|
83
|
+
|
84
|
+
for (i = 0; i < win->_maxy && win->_y[i]; i++)
|
85
|
+
if (!fwrite(win->_y[i], win->_maxx * sizeof(chtype), 1, filep))
|
86
|
+
return ERR;
|
87
|
+
|
88
|
+
return OK;
|
89
|
+
}
|
90
|
+
|
91
|
+
return ERR;
|
92
|
+
}
|
93
|
+
|
94
|
+
WINDOW *getwin(FILE *filep)
|
95
|
+
{
|
96
|
+
WINDOW *win;
|
97
|
+
char marker[4];
|
98
|
+
int i, nlines, ncols;
|
99
|
+
|
100
|
+
PDC_LOG(("getwin() - called\n"));
|
101
|
+
|
102
|
+
if ( !(win = malloc(sizeof(WINDOW))) )
|
103
|
+
return (WINDOW *)NULL;
|
104
|
+
|
105
|
+
/* check for the marker, and load the WINDOW struct */
|
106
|
+
|
107
|
+
if (!filep || !fread(marker, 4, 1, filep) || strncmp(marker, "PDC", 3)
|
108
|
+
|| marker[3] != DUMPVER || !fread(win, sizeof(WINDOW), 1, filep))
|
109
|
+
{
|
110
|
+
free(win);
|
111
|
+
return (WINDOW *)NULL;
|
112
|
+
}
|
113
|
+
|
114
|
+
nlines = win->_maxy;
|
115
|
+
ncols = win->_maxx;
|
116
|
+
|
117
|
+
/* allocate the line pointer array */
|
118
|
+
|
119
|
+
if ( !(win->_y = malloc(nlines * sizeof(chtype *))) )
|
120
|
+
{
|
121
|
+
free(win);
|
122
|
+
return (WINDOW *)NULL;
|
123
|
+
}
|
124
|
+
|
125
|
+
/* allocate the minchng and maxchng arrays */
|
126
|
+
|
127
|
+
if ( !(win->_firstch = malloc(nlines * sizeof(int))) )
|
128
|
+
{
|
129
|
+
free(win->_y);
|
130
|
+
free(win);
|
131
|
+
return (WINDOW *)NULL;
|
132
|
+
}
|
133
|
+
|
134
|
+
if ( !(win->_lastch = malloc(nlines * sizeof(int))) )
|
135
|
+
{
|
136
|
+
free(win->_firstch);
|
137
|
+
free(win->_y);
|
138
|
+
free(win);
|
139
|
+
return (WINDOW *)NULL;
|
140
|
+
}
|
141
|
+
|
142
|
+
/* allocate the lines */
|
143
|
+
|
144
|
+
if ( !(win = PDC_makelines(win)) )
|
145
|
+
return (WINDOW *)NULL;
|
146
|
+
|
147
|
+
/* read them */
|
148
|
+
|
149
|
+
for (i = 0; i < nlines; i++)
|
150
|
+
{
|
151
|
+
if (!fread(win->_y[i], ncols * sizeof(chtype), 1, filep))
|
152
|
+
{
|
153
|
+
delwin(win);
|
154
|
+
return (WINDOW *)NULL;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
touchwin(win);
|
159
|
+
|
160
|
+
return win;
|
161
|
+
}
|
162
|
+
|
163
|
+
int scr_dump(const char *filename)
|
164
|
+
{
|
165
|
+
FILE *filep;
|
166
|
+
|
167
|
+
PDC_LOG(("scr_dump() - called: filename %s\n", filename));
|
168
|
+
|
169
|
+
if (filename && (filep = fopen(filename, "wb")) != NULL)
|
170
|
+
{
|
171
|
+
int result = putwin(curscr, filep);
|
172
|
+
fclose(filep);
|
173
|
+
return result;
|
174
|
+
}
|
175
|
+
|
176
|
+
return ERR;
|
177
|
+
}
|
178
|
+
|
179
|
+
int scr_init(const char *filename)
|
180
|
+
{
|
181
|
+
PDC_LOG(("scr_init() - called: filename %s\n", filename));
|
182
|
+
|
183
|
+
return OK;
|
184
|
+
}
|
185
|
+
|
186
|
+
int scr_restore(const char *filename)
|
187
|
+
{
|
188
|
+
FILE *filep;
|
189
|
+
|
190
|
+
PDC_LOG(("scr_restore() - called: filename %s\n", filename));
|
191
|
+
|
192
|
+
if (filename && (filep = fopen(filename, "rb")) != NULL)
|
193
|
+
{
|
194
|
+
WINDOW *replacement = getwin(filep);
|
195
|
+
fclose(filep);
|
196
|
+
|
197
|
+
if (replacement)
|
198
|
+
{
|
199
|
+
int result = overwrite(replacement, curscr);
|
200
|
+
delwin(replacement);
|
201
|
+
return result;
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
return ERR;
|
206
|
+
}
|
207
|
+
|
208
|
+
int scr_set(const char *filename)
|
209
|
+
{
|
210
|
+
PDC_LOG(("scr_set() - called: filename %s\n", filename));
|
211
|
+
|
212
|
+
return scr_restore(filename);
|
213
|
+
}
|
@@ -0,0 +1,101 @@
|
|
1
|
+
/* Public Domain Curses */
|
2
|
+
|
3
|
+
#include <curspriv.h>
|
4
|
+
|
5
|
+
/*man-start**************************************************************
|
6
|
+
|
7
|
+
scroll
|
8
|
+
------
|
9
|
+
|
10
|
+
### Synopsis
|
11
|
+
|
12
|
+
int scroll(WINDOW *win);
|
13
|
+
int scrl(int n);
|
14
|
+
int wscrl(WINDOW *win, int n);
|
15
|
+
|
16
|
+
### Description
|
17
|
+
|
18
|
+
scroll() causes the window to scroll up one line. This involves
|
19
|
+
moving the lines in the window data strcture.
|
20
|
+
|
21
|
+
With a positive n, scrl() and wscrl() scroll the window up n
|
22
|
+
lines (line i + n becomes i); otherwise they scroll the window
|
23
|
+
down n lines.
|
24
|
+
|
25
|
+
For these functions to work, scrolling must be enabled via
|
26
|
+
scrollok(). Note also that scrolling is not allowed if the
|
27
|
+
supplied window is a pad.
|
28
|
+
|
29
|
+
### Return Value
|
30
|
+
|
31
|
+
All functions return OK on success and ERR on error.
|
32
|
+
|
33
|
+
### Portability
|
34
|
+
X/Open BSD SYS V
|
35
|
+
scroll Y Y Y
|
36
|
+
scrl Y - 4.0
|
37
|
+
wscrl Y - 4.0
|
38
|
+
|
39
|
+
**man-end****************************************************************/
|
40
|
+
|
41
|
+
int wscrl(WINDOW *win, int n)
|
42
|
+
{
|
43
|
+
int i, l, dir, start, end;
|
44
|
+
chtype blank, *temp;
|
45
|
+
|
46
|
+
/* Check if window scrolls. Valid for window AND pad */
|
47
|
+
|
48
|
+
if (!win || !win->_scroll || !n)
|
49
|
+
return ERR;
|
50
|
+
|
51
|
+
blank = win->_bkgd;
|
52
|
+
|
53
|
+
if (n > 0)
|
54
|
+
{
|
55
|
+
start = win->_tmarg;
|
56
|
+
end = win->_bmarg;
|
57
|
+
dir = 1;
|
58
|
+
}
|
59
|
+
else
|
60
|
+
{
|
61
|
+
start = win->_bmarg;
|
62
|
+
end = win->_tmarg;
|
63
|
+
dir = -1;
|
64
|
+
}
|
65
|
+
|
66
|
+
for (l = 0; l < (n * dir); l++)
|
67
|
+
{
|
68
|
+
temp = win->_y[start];
|
69
|
+
|
70
|
+
/* re-arrange line pointers */
|
71
|
+
|
72
|
+
for (i = start; i != end; i += dir)
|
73
|
+
win->_y[i] = win->_y[i + dir];
|
74
|
+
|
75
|
+
win->_y[end] = temp;
|
76
|
+
|
77
|
+
/* make a blank line */
|
78
|
+
|
79
|
+
for (i = 0; i < win->_maxx; i++)
|
80
|
+
*temp++ = blank;
|
81
|
+
}
|
82
|
+
|
83
|
+
touchline(win, win->_tmarg, win->_bmarg - win->_tmarg + 1);
|
84
|
+
|
85
|
+
PDC_sync(win);
|
86
|
+
return OK;
|
87
|
+
}
|
88
|
+
|
89
|
+
int scrl(int n)
|
90
|
+
{
|
91
|
+
PDC_LOG(("scrl() - called\n"));
|
92
|
+
|
93
|
+
return wscrl(stdscr, n);
|
94
|
+
}
|
95
|
+
|
96
|
+
int scroll(WINDOW *win)
|
97
|
+
{
|
98
|
+
PDC_LOG(("scroll() - called\n"));
|
99
|
+
|
100
|
+
return wscrl(win, 1);
|
101
|
+
}
|
@@ -0,0 +1,591 @@
|
|
1
|
+
/* Public Domain Curses */
|
2
|
+
|
3
|
+
#include <curspriv.h>
|
4
|
+
|
5
|
+
/*man-start**************************************************************
|
6
|
+
|
7
|
+
slk
|
8
|
+
---
|
9
|
+
|
10
|
+
### Synopsis
|
11
|
+
|
12
|
+
int slk_init(int fmt);
|
13
|
+
int slk_set(int labnum, const char *label, int justify);
|
14
|
+
int slk_refresh(void);
|
15
|
+
int slk_noutrefresh(void);
|
16
|
+
char *slk_label(int labnum);
|
17
|
+
int slk_clear(void);
|
18
|
+
int slk_restore(void);
|
19
|
+
int slk_touch(void);
|
20
|
+
int slk_attron(const chtype attrs);
|
21
|
+
int slk_attr_on(const attr_t attrs, void *opts);
|
22
|
+
int slk_attrset(const chtype attrs);
|
23
|
+
int slk_attr_set(const attr_t attrs, short color_pair, void *opts);
|
24
|
+
int slk_attroff(const chtype attrs);
|
25
|
+
int slk_attr_off(const attr_t attrs, void *opts);
|
26
|
+
int slk_color(short color_pair);
|
27
|
+
|
28
|
+
int slk_wset(int labnum, const wchar_t *label, int justify);
|
29
|
+
|
30
|
+
int PDC_mouse_in_slk(int y, int x);
|
31
|
+
void PDC_slk_free(void);
|
32
|
+
void PDC_slk_initialize(void);
|
33
|
+
|
34
|
+
wchar_t *slk_wlabel(int labnum)
|
35
|
+
|
36
|
+
### Description
|
37
|
+
|
38
|
+
These functions manipulate a window that contain Soft Label Keys
|
39
|
+
(SLK). To use the SLK functions, a call to slk_init() must be
|
40
|
+
made BEFORE initscr() or newterm(). slk_init() removes 1 or 2
|
41
|
+
lines from the useable screen, depending on the format selected.
|
42
|
+
|
43
|
+
The line(s) removed from the screen are used as a separate
|
44
|
+
window, in which SLKs are displayed.
|
45
|
+
|
46
|
+
slk_init() requires a single parameter which describes the
|
47
|
+
format of the SLKs as follows:
|
48
|
+
|
49
|
+
0 3-2-3 format
|
50
|
+
1 4-4 format
|
51
|
+
2 4-4-4 format (ncurses extension)
|
52
|
+
3 4-4-4 format with index line (ncurses extension)
|
53
|
+
2 lines used
|
54
|
+
55 5-5 format (pdcurses format)
|
55
|
+
|
56
|
+
In PDCurses, one can alternatively set fmt as a series of hex
|
57
|
+
digits specifying the format. For example, 0x414 would result
|
58
|
+
in 4-1-4 format; 0x21b3 would result in 2-1-11-3 format; and
|
59
|
+
so on. Also, negating fmt results in the index line being added.
|
60
|
+
|
61
|
+
Also, in PDCurses, one can call slk_init() at any time
|
62
|
+
_after_ initscr(), to reset the label format. If you do this,
|
63
|
+
you'll need to reset the label text and call slk_refresh(). And
|
64
|
+
you can't toggle the index line. (Doing so would add/remove a line
|
65
|
+
from the useable screen, which would be hard to handle correctly.)
|
66
|
+
|
67
|
+
slk_refresh(), slk_noutrefresh() and slk_touch() are analogous
|
68
|
+
to refresh(), noutrefresh() and touch().
|
69
|
+
|
70
|
+
### Return Value
|
71
|
+
|
72
|
+
All functions return OK on success and ERR on error.
|
73
|
+
|
74
|
+
### Portability
|
75
|
+
X/Open BSD SYS V
|
76
|
+
slk_init Y - Y
|
77
|
+
slk_set Y - Y
|
78
|
+
slk_refresh Y - Y
|
79
|
+
slk_noutrefresh Y - Y
|
80
|
+
slk_label Y - Y
|
81
|
+
slk_clear Y - Y
|
82
|
+
slk_restore Y - Y
|
83
|
+
slk_touch Y - Y
|
84
|
+
slk_attron Y - Y
|
85
|
+
slk_attrset Y - Y
|
86
|
+
slk_attroff Y - Y
|
87
|
+
slk_attr_on Y
|
88
|
+
slk_attr_set Y
|
89
|
+
slk_attr_off Y
|
90
|
+
slk_wset Y
|
91
|
+
PDC_mouse_in_slk - - -
|
92
|
+
PDC_slk_free - - -
|
93
|
+
PDC_slk_initialize - - -
|
94
|
+
slk_wlabel - - -
|
95
|
+
|
96
|
+
**man-end****************************************************************/
|
97
|
+
|
98
|
+
#include <stdlib.h>
|
99
|
+
|
100
|
+
static int label_length = 0;
|
101
|
+
static int n_labels = 0;
|
102
|
+
static int label_fmt = 0;
|
103
|
+
static int label_line = 0;
|
104
|
+
static bool hidden = FALSE;
|
105
|
+
|
106
|
+
#define MAX_LABEL_LENGTH 32
|
107
|
+
|
108
|
+
static struct SLK {
|
109
|
+
chtype label[MAX_LABEL_LENGTH];
|
110
|
+
int len;
|
111
|
+
int format;
|
112
|
+
int start_col;
|
113
|
+
} *slk = (struct SLK *)NULL;
|
114
|
+
|
115
|
+
/* See comments above on this function. */
|
116
|
+
|
117
|
+
int slk_init(int fmt)
|
118
|
+
{
|
119
|
+
int i;
|
120
|
+
|
121
|
+
PDC_LOG(("slk_init() - called\n"));
|
122
|
+
|
123
|
+
switch (fmt)
|
124
|
+
{
|
125
|
+
case 0: /* 3 - 2 - 3 */
|
126
|
+
label_fmt = 0x323;
|
127
|
+
break;
|
128
|
+
|
129
|
+
case 1: /* 4 - 4 */
|
130
|
+
label_fmt = 0x44;
|
131
|
+
break;
|
132
|
+
|
133
|
+
case 2: /* 4 4 4 */
|
134
|
+
label_fmt = 0x444;
|
135
|
+
break;
|
136
|
+
|
137
|
+
case 3: /* 4 4 4 with index */
|
138
|
+
label_fmt = -0x444;
|
139
|
+
break;
|
140
|
+
|
141
|
+
case 55: /* 5 - 5 */
|
142
|
+
label_fmt = 0x55;
|
143
|
+
break;
|
144
|
+
|
145
|
+
default:
|
146
|
+
label_fmt = fmt;
|
147
|
+
break;
|
148
|
+
}
|
149
|
+
|
150
|
+
n_labels = 0;
|
151
|
+
for( i = abs( label_fmt); i; i /= 16)
|
152
|
+
n_labels += i % 16;
|
153
|
+
|
154
|
+
PDC_LOG(("slk_init: fmt %d, %d labels, %p\n",
|
155
|
+
fmt, n_labels, slk));
|
156
|
+
if( slk)
|
157
|
+
free( slk);
|
158
|
+
slk = calloc(n_labels, sizeof(struct SLK));
|
159
|
+
PDC_LOG(( "New slk: %p; SP = %p\n", slk, SP));
|
160
|
+
|
161
|
+
if (!slk)
|
162
|
+
n_labels = 0;
|
163
|
+
if( SP)
|
164
|
+
{
|
165
|
+
if( SP->slk_winptr)
|
166
|
+
wclear( SP->slk_winptr);
|
167
|
+
PDC_slk_initialize( );
|
168
|
+
}
|
169
|
+
|
170
|
+
return slk ? OK : ERR;
|
171
|
+
}
|
172
|
+
|
173
|
+
/* draw a single button */
|
174
|
+
|
175
|
+
static void _drawone(int num)
|
176
|
+
{
|
177
|
+
int i, col, slen;
|
178
|
+
|
179
|
+
if (hidden)
|
180
|
+
return;
|
181
|
+
|
182
|
+
slen = slk[num].len;
|
183
|
+
|
184
|
+
switch (slk[num].format)
|
185
|
+
{
|
186
|
+
case 0: /* LEFT */
|
187
|
+
col = 0;
|
188
|
+
break;
|
189
|
+
|
190
|
+
case 1: /* CENTER */
|
191
|
+
col = (label_length - slen) / 2;
|
192
|
+
|
193
|
+
if (col + slen > label_length)
|
194
|
+
--col;
|
195
|
+
break;
|
196
|
+
|
197
|
+
default: /* RIGHT */
|
198
|
+
col = label_length - slen;
|
199
|
+
}
|
200
|
+
|
201
|
+
if( col < 0) /* Ensure start of label is visible */
|
202
|
+
col = 0;
|
203
|
+
wmove(SP->slk_winptr, label_line, slk[num].start_col);
|
204
|
+
|
205
|
+
for (i = 0; i < label_length; ++i)
|
206
|
+
waddch(SP->slk_winptr, (i >= col && i < (col + slen)) ?
|
207
|
+
slk[num].label[i - col] : ' ');
|
208
|
+
}
|
209
|
+
|
210
|
+
/* redraw each button */
|
211
|
+
|
212
|
+
static void _redraw(void)
|
213
|
+
{
|
214
|
+
int i;
|
215
|
+
|
216
|
+
if( !hidden)
|
217
|
+
{
|
218
|
+
for (i = 0; i < n_labels; ++i)
|
219
|
+
_drawone(i);
|
220
|
+
if (label_fmt < 0)
|
221
|
+
{
|
222
|
+
const chtype save_attr = SP->slk_winptr->_attrs;
|
223
|
+
|
224
|
+
wattrset(SP->slk_winptr, A_NORMAL);
|
225
|
+
wmove(SP->slk_winptr, 0, 0);
|
226
|
+
whline(SP->slk_winptr, 0, COLS);
|
227
|
+
|
228
|
+
for (i = 0; i < n_labels; i++)
|
229
|
+
mvwprintw(SP->slk_winptr, 0, slk[i].start_col, "F%d", i + 1);
|
230
|
+
|
231
|
+
SP->slk_winptr->_attrs = save_attr;
|
232
|
+
}
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
236
|
+
/* slk_set() Used to set a slk label to a string.
|
237
|
+
|
238
|
+
labnum = 1 - 8 (or 10) (number of the label)
|
239
|
+
label = string (8 or 7 bytes total), or NULL
|
240
|
+
justify = 0 : left, 1 : center, 2 : right */
|
241
|
+
|
242
|
+
int slk_set(int labnum, const char *label, int justify)
|
243
|
+
{
|
244
|
+
#ifdef PDC_WIDE
|
245
|
+
wchar_t wlabel[MAX_LABEL_LENGTH];
|
246
|
+
|
247
|
+
PDC_mbstowcs(wlabel, label, MAX_LABEL_LENGTH - 1);
|
248
|
+
return slk_wset(labnum, wlabel, justify);
|
249
|
+
#else
|
250
|
+
PDC_LOG(("slk_set() - called\n"));
|
251
|
+
|
252
|
+
if (labnum < 1 || labnum > n_labels || justify < 0 || justify > 2)
|
253
|
+
return ERR;
|
254
|
+
|
255
|
+
labnum--;
|
256
|
+
|
257
|
+
if (!label || !(*label))
|
258
|
+
{
|
259
|
+
/* Clear the label */
|
260
|
+
|
261
|
+
*slk[labnum].label = 0;
|
262
|
+
slk[labnum].format = 0;
|
263
|
+
slk[labnum].len = 0;
|
264
|
+
}
|
265
|
+
else
|
266
|
+
{
|
267
|
+
int i;
|
268
|
+
|
269
|
+
/* Skip leading spaces */
|
270
|
+
|
271
|
+
while( *label == ' ')
|
272
|
+
label++;
|
273
|
+
|
274
|
+
/* Copy it */
|
275
|
+
|
276
|
+
for (i = 0; label[i] && i < MAX_LABEL_LENGTH - 1; i++)
|
277
|
+
slk[labnum].label[i] = label[i];
|
278
|
+
|
279
|
+
/* Drop trailing spaces */
|
280
|
+
|
281
|
+
while( i && label[i - 1] == ' ')
|
282
|
+
i--;
|
283
|
+
|
284
|
+
slk[labnum].label[i] = 0;
|
285
|
+
slk[labnum].format = justify;
|
286
|
+
slk[labnum].len = i;
|
287
|
+
}
|
288
|
+
|
289
|
+
_drawone(labnum);
|
290
|
+
|
291
|
+
return OK;
|
292
|
+
#endif
|
293
|
+
}
|
294
|
+
|
295
|
+
int slk_refresh(void)
|
296
|
+
{
|
297
|
+
PDC_LOG(("slk_refresh() - called\n"));
|
298
|
+
|
299
|
+
return (slk_noutrefresh() == ERR) ? ERR : doupdate();
|
300
|
+
}
|
301
|
+
|
302
|
+
int slk_noutrefresh(void)
|
303
|
+
{
|
304
|
+
PDC_LOG(("slk_noutrefresh() - called\n"));
|
305
|
+
|
306
|
+
return wnoutrefresh(SP->slk_winptr);
|
307
|
+
}
|
308
|
+
|
309
|
+
char *slk_label(int labnum)
|
310
|
+
{
|
311
|
+
static char temp[MAX_LABEL_LENGTH + 1];
|
312
|
+
#ifdef PDC_WIDE
|
313
|
+
wchar_t *wtemp = slk_wlabel(labnum);
|
314
|
+
|
315
|
+
PDC_wcstombs(temp, wtemp, MAX_LABEL_LENGTH);
|
316
|
+
#else
|
317
|
+
chtype *p;
|
318
|
+
int i;
|
319
|
+
|
320
|
+
PDC_LOG(("slk_label() - called\n"));
|
321
|
+
|
322
|
+
if (labnum < 1 || labnum > n_labels)
|
323
|
+
return (char *)0;
|
324
|
+
|
325
|
+
for (i = 0, p = slk[labnum - 1].label; *p; i++)
|
326
|
+
temp[i] = (char)*p++; /* BJG */
|
327
|
+
|
328
|
+
temp[i] = '\0';
|
329
|
+
#endif
|
330
|
+
return temp;
|
331
|
+
}
|
332
|
+
|
333
|
+
int slk_clear(void)
|
334
|
+
{
|
335
|
+
PDC_LOG(("slk_clear() - called\n"));
|
336
|
+
|
337
|
+
hidden = TRUE;
|
338
|
+
werase(SP->slk_winptr);
|
339
|
+
return wrefresh(SP->slk_winptr);
|
340
|
+
}
|
341
|
+
|
342
|
+
int slk_restore(void)
|
343
|
+
{
|
344
|
+
PDC_LOG(("slk_restore() - called\n"));
|
345
|
+
|
346
|
+
hidden = FALSE;
|
347
|
+
_redraw();
|
348
|
+
return wrefresh(SP->slk_winptr);
|
349
|
+
}
|
350
|
+
|
351
|
+
int slk_touch(void)
|
352
|
+
{
|
353
|
+
PDC_LOG(("slk_touch() - called\n"));
|
354
|
+
|
355
|
+
return touchwin(SP->slk_winptr);
|
356
|
+
}
|
357
|
+
|
358
|
+
int slk_attron(const chtype attrs)
|
359
|
+
{
|
360
|
+
int rc;
|
361
|
+
|
362
|
+
PDC_LOG(("slk_attron() - called\n"));
|
363
|
+
|
364
|
+
rc = wattron(SP->slk_winptr, attrs);
|
365
|
+
_redraw();
|
366
|
+
|
367
|
+
return rc;
|
368
|
+
}
|
369
|
+
|
370
|
+
int slk_attr_on(const attr_t attrs, void *opts)
|
371
|
+
{
|
372
|
+
PDC_LOG(("slk_attr_on() - called\n"));
|
373
|
+
|
374
|
+
return slk_attron(attrs);
|
375
|
+
}
|
376
|
+
|
377
|
+
int slk_attroff(const chtype attrs)
|
378
|
+
{
|
379
|
+
int rc;
|
380
|
+
|
381
|
+
PDC_LOG(("slk_attroff() - called\n"));
|
382
|
+
|
383
|
+
rc = wattroff(SP->slk_winptr, attrs);
|
384
|
+
_redraw();
|
385
|
+
|
386
|
+
return rc;
|
387
|
+
}
|
388
|
+
|
389
|
+
int slk_attr_off(const attr_t attrs, void *opts)
|
390
|
+
{
|
391
|
+
PDC_LOG(("slk_attr_off() - called\n"));
|
392
|
+
|
393
|
+
return slk_attroff(attrs);
|
394
|
+
}
|
395
|
+
|
396
|
+
int slk_attrset(const chtype attrs)
|
397
|
+
{
|
398
|
+
int rc;
|
399
|
+
|
400
|
+
PDC_LOG(("slk_attrset() - called\n"));
|
401
|
+
|
402
|
+
rc = wattrset(SP->slk_winptr, attrs);
|
403
|
+
_redraw();
|
404
|
+
|
405
|
+
return rc;
|
406
|
+
}
|
407
|
+
|
408
|
+
int slk_color(short color_pair)
|
409
|
+
{
|
410
|
+
int rc;
|
411
|
+
|
412
|
+
PDC_LOG(("slk_color() - called\n"));
|
413
|
+
|
414
|
+
rc = wcolor_set(SP->slk_winptr, color_pair, NULL);
|
415
|
+
_redraw();
|
416
|
+
|
417
|
+
return rc;
|
418
|
+
}
|
419
|
+
|
420
|
+
int slk_attr_set(const attr_t attrs, short color_pair, void *opts)
|
421
|
+
{
|
422
|
+
PDC_LOG(("slk_attr_set() - called\n"));
|
423
|
+
|
424
|
+
return slk_attrset(attrs | COLOR_PAIR(color_pair));
|
425
|
+
}
|
426
|
+
|
427
|
+
static void _slk_calc(void)
|
428
|
+
{
|
429
|
+
int i, j, idx, remaining_space;
|
430
|
+
int n_groups = 0, group_size[10];
|
431
|
+
|
432
|
+
label_length = COLS / n_labels;
|
433
|
+
if (label_length > MAX_LABEL_LENGTH)
|
434
|
+
label_length = MAX_LABEL_LENGTH;
|
435
|
+
remaining_space = COLS - label_length * n_labels + 1;
|
436
|
+
for( i = abs( label_fmt); i; i /= 16)
|
437
|
+
group_size[n_groups++] = i % 16;
|
438
|
+
/* We really want at least two spaces between groups: */
|
439
|
+
while( label_length > 1 && remaining_space < n_groups - 1)
|
440
|
+
{
|
441
|
+
label_length--;
|
442
|
+
remaining_space += n_labels;
|
443
|
+
}
|
444
|
+
|
445
|
+
for( i = idx = 0; i < n_groups; i++)
|
446
|
+
for( j = 0; j < group_size[i]; j++, idx++)
|
447
|
+
slk[idx].start_col = label_length * idx
|
448
|
+
+ (i ? (i * remaining_space) / (n_groups - 1) : 0);
|
449
|
+
|
450
|
+
if( label_length)
|
451
|
+
--label_length;
|
452
|
+
|
453
|
+
/* make sure labels are all in window */
|
454
|
+
|
455
|
+
_redraw();
|
456
|
+
}
|
457
|
+
|
458
|
+
void PDC_slk_initialize(void)
|
459
|
+
{
|
460
|
+
if (slk)
|
461
|
+
{
|
462
|
+
if( label_fmt < 0)
|
463
|
+
{
|
464
|
+
SP->slklines = 2;
|
465
|
+
label_line = 1;
|
466
|
+
}
|
467
|
+
else
|
468
|
+
SP->slklines = 1;
|
469
|
+
|
470
|
+
if (!SP->slk_winptr)
|
471
|
+
{
|
472
|
+
if ( !(SP->slk_winptr = newwin(SP->slklines, COLS,
|
473
|
+
LINES - SP->slklines, 0)) )
|
474
|
+
return;
|
475
|
+
|
476
|
+
wattrset(SP->slk_winptr, A_REVERSE);
|
477
|
+
}
|
478
|
+
|
479
|
+
_slk_calc();
|
480
|
+
|
481
|
+
touchwin(SP->slk_winptr);
|
482
|
+
}
|
483
|
+
}
|
484
|
+
|
485
|
+
void PDC_slk_free(void)
|
486
|
+
{
|
487
|
+
if (slk)
|
488
|
+
{
|
489
|
+
if (SP->slk_winptr)
|
490
|
+
{
|
491
|
+
delwin(SP->slk_winptr);
|
492
|
+
SP->slk_winptr = (WINDOW *)NULL;
|
493
|
+
}
|
494
|
+
|
495
|
+
free(slk);
|
496
|
+
slk = (struct SLK *)NULL;
|
497
|
+
|
498
|
+
label_length = 0;
|
499
|
+
n_labels = 0;
|
500
|
+
label_fmt = 0;
|
501
|
+
label_line = 0;
|
502
|
+
hidden = FALSE;
|
503
|
+
}
|
504
|
+
}
|
505
|
+
|
506
|
+
int PDC_mouse_in_slk(int y, int x)
|
507
|
+
{
|
508
|
+
int i;
|
509
|
+
|
510
|
+
PDC_LOG(("PDC_mouse_in_slk() - called: y->%d x->%d\n", y, x));
|
511
|
+
|
512
|
+
/* If the line on which the mouse was clicked is NOT the last line
|
513
|
+
of the screen, or the SLKs are hidden, we are not interested in it. */
|
514
|
+
|
515
|
+
if (!slk || hidden || !SP->slk_winptr
|
516
|
+
|| (y != SP->slk_winptr->_begy + label_line))
|
517
|
+
return 0;
|
518
|
+
|
519
|
+
for (i = 0; i < n_labels; i++)
|
520
|
+
if (x >= slk[i].start_col && x < (slk[i].start_col + label_length))
|
521
|
+
return i + 1;
|
522
|
+
|
523
|
+
return 0;
|
524
|
+
}
|
525
|
+
|
526
|
+
#ifdef PDC_WIDE
|
527
|
+
int slk_wset(int labnum, const wchar_t *label, int justify)
|
528
|
+
{
|
529
|
+
PDC_LOG(("slk_wset() - called\n"));
|
530
|
+
|
531
|
+
if (labnum < 1 || labnum > n_labels || justify < 0 || justify > 2)
|
532
|
+
return ERR;
|
533
|
+
|
534
|
+
labnum--;
|
535
|
+
|
536
|
+
if (!label || !(*label))
|
537
|
+
{
|
538
|
+
/* Clear the label */
|
539
|
+
|
540
|
+
*slk[labnum].label = 0;
|
541
|
+
slk[labnum].format = 0;
|
542
|
+
slk[labnum].len = 0;
|
543
|
+
}
|
544
|
+
else
|
545
|
+
{
|
546
|
+
int i;
|
547
|
+
|
548
|
+
/* Skip leading spaces */
|
549
|
+
|
550
|
+
while( *label == L' ')
|
551
|
+
label++;
|
552
|
+
|
553
|
+
/* Copy it */
|
554
|
+
|
555
|
+
for (i = 0; label[i] && i < MAX_LABEL_LENGTH - 1; i++)
|
556
|
+
slk[labnum].label[i] = label[i];
|
557
|
+
|
558
|
+
/* Drop trailing spaces */
|
559
|
+
|
560
|
+
while( i && label[i - 1] == L' ')
|
561
|
+
i--;
|
562
|
+
|
563
|
+
slk[labnum].label[i] = 0;
|
564
|
+
slk[labnum].format = justify;
|
565
|
+
slk[labnum].len = i;
|
566
|
+
}
|
567
|
+
|
568
|
+
_drawone(labnum);
|
569
|
+
|
570
|
+
return OK;
|
571
|
+
}
|
572
|
+
|
573
|
+
wchar_t *slk_wlabel(int labnum)
|
574
|
+
{
|
575
|
+
static wchar_t temp[MAX_LABEL_LENGTH + 1];
|
576
|
+
chtype *p;
|
577
|
+
int i;
|
578
|
+
|
579
|
+
PDC_LOG(("slk_wlabel() - called\n"));
|
580
|
+
|
581
|
+
if (labnum < 1 || labnum > n_labels)
|
582
|
+
return (wchar_t *)0;
|
583
|
+
|
584
|
+
for (i = 0, p = slk[labnum - 1].label; *p; i++)
|
585
|
+
temp[i] = (wchar_t)*p++;
|
586
|
+
|
587
|
+
temp[i] = '\0';
|
588
|
+
|
589
|
+
return temp;
|
590
|
+
}
|
591
|
+
#endif
|