3 * $Id: pres_curses.c,v 1.5 1999/07/27 12:49:16 mdw Exp $
5 * Curses-based output presentation
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of sw-tools.
14 * sw-tools is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * sw-tools is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with sw-tools; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
31 * $Log: pres_curses.c,v $
32 * Revision 1.5 1999/07/27 12:49:16 mdw
33 * Slight tidying of resizing terminal handling.
35 * Revision 1.4 1999/07/16 16:52:28 mdw
36 * `wbkdset' doesn't work so well. Use `wbkgd' instead.
38 * Revision 1.3 1999/07/16 12:49:58 mdw
39 * Improve exit status display. New interface from `doto' project.
41 * Revision 1.2 1999/06/24 15:51:16 mdw
42 * Fix signal handlers so they don't corrupt `errno'.
44 * Revision 1.1.1.1 1999/06/02 16:53:35 mdw
49 /*----- Header files ------------------------------------------------------*/
60 #include <sys/types.h>
63 #if defined(HAVE_NCURSES_H)
65 #elif defined(HAVE_NCURSES_NCURSES_H)
66 # include <ncurses/ncurses.h>
67 #elif defined(HAVE_CURSES_H)
70 # error "Where's your <curses.h> header?"
74 #include <mLib/alloc.h>
75 #include <mLib/report.h>
79 #include "pres_curses.h"
85 /*----- Data structures ---------------------------------------------------*/
96 /*----- Static variables --------------------------------------------------*/
98 static cwin *cwins = 0;
101 /*----- Main code ---------------------------------------------------------*/
109 * Use: Calculates window sizes for all the windows. The heights are
110 * determined in a way which doesn't allow rounding errors to be
111 * an issue (although there will be up to a line's height
112 * difference between two windows). No actual changing of
113 * curses structures is done.
116 static void sizes(void)
119 int t = 0, h = LINES, w = nwins;
121 for (c = cwins; c; c = c->next) {
131 /* --- @sig_tstp@ --- */
134 static void sig_tstp(int s)
143 /* --- @sig_cont@ --- */
146 static void sig_cont(int s)
154 /* --- @sig_winch@ --- */
158 static void sig_winch(int s)
168 for (c = cwins; c; c = c->next) {
169 mvwin(c->w, c->top, 0);
170 wresize(c->w, c->height, COLS);
171 mvwin(c->s, c->top + c->height, 0);
185 /* --- @curses_ok@ --- */
189 if (!isatty(STDOUT_FILENO)) {
190 moan("can't use curses: stdout isn't a terminal");
193 if (setupterm(0, STDOUT_FILENO, 0) == ERR) {
194 moan("can't use curses: couldn't read terminfo");
197 if (!tigetstr("cup")) {
198 moan("can't use curses: terminal insufficiently winning");
204 /* --- @curses_init@ --- */
206 int curses_init(archcons *a)
208 cwin **cc = &cwins, *c;
210 /* --- Allocate my window structures --- */
213 for (; a; a = a->cdr) {
217 c = xmalloc(sizeof(cwin));
227 /* --- Haul curses up by its naughty bits --- */
230 keypad(stdscr, TRUE);
236 /* --- Grind through everything setting up windows --- */
239 for (c = cwins; c; c = c->next) {
240 if ((c->w = newwin(c->height, COLS, c->top, 0)) == 0 ||
241 (c->s = newwin(1, COLS, c->top + c->height, 0)) == 0)
243 scrollok(c->w, TRUE);
246 wbkgd(c->s, A_STANDOUT);
247 mvwprintw(c->s, 0, 0, " %s [running]\n", c->e->arch);
254 signal(SIGWINCH, sig_winch);
257 signal(SIGTSTP, sig_tstp);
258 signal(SIGCONT, sig_cont);
277 /* --- @curses_output@ --- */
279 void curses_output(archent *e, const char *p, size_t sz)
290 /* --- @curses_close@ --- */
292 void curses_close(archent *e, int ok, const char *summ)
295 mvwprintw(c->s, 0, 0, " %s [%s]\n", e->arch, summ);
299 /* --- @curses_done@ --- */
301 void curses_done(archcons *a)
303 if (opt_flags & optFlag_beep) {
309 for (; a; a = a->cdr) {
319 /* --- @curses_abort@ --- */
321 void curses_abort(archcons *a)
324 signal(SIGWINCH, SIG_DFL);
327 signal(SIGTSTP, SIG_DFL);
328 signal(SIGCONT, SIG_DFL);
333 /*----- That's all, folks -------------------------------------------------*/
336 int pres_curses__built = 1;