]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/filter.c
ncurses 5.2
[ncurses.git] / test / filter.c
1 /****************************************************************************
2  * Copyright (c) 1998 Free Software Foundation, Inc.                        *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /*
30  * Author:  Thomas E. Dickey <dickey@clark.net> 1998
31  *
32  * $Id: filter.c,v 1.4 2000/09/02 18:50:38 tom Exp $
33  */
34 #include <test.priv.h>
35
36 /*
37  * An example of the 'filter()' function in ncurses, this program prompts
38  * for commands and executes them (like a command shell).  It illustrates
39  * how ncurses can be used to implement programs that are not full-screen.
40  *
41  * Ncurses differs slightly from SVr4 curses.  The latter does not flush its
42  * state when exiting program mode, so the attributes on the command lines of
43  * this program 'bleed' onto the executed commands.  Rather than use the
44  * reset_shell_mode() and reset_prog_mode() functions, we could invoke endwin()
45  * and refresh(), but that does not work any better.
46  */
47
48 #ifndef NCURSES_VERSION
49 #define attr_t long
50 #define getnstr(s,n) getstr(s)
51 #endif
52
53 static int
54 new_command(char *buffer, int length, attr_t underline)
55 {
56     int code;
57
58     attron(A_BOLD);
59     printw("Command: ");
60     attron(underline);
61     code = getnstr(buffer, length);
62     attroff(underline);
63     attroff(A_BOLD);
64     printw("\n");
65
66     return code;
67 }
68
69 int
70 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
71 {
72     SCREEN *sp;
73     char buffer[80];
74     attr_t underline;
75
76     filter();
77     sp = newterm((char *) 0, stdout, stdin);
78     cbreak();
79     keypad(stdscr, TRUE);
80
81     if (has_colors()) {
82         int background = COLOR_BLACK;
83         start_color();
84 #if HAVE_USE_DEFAULT_COLORS
85         if (use_default_colors() != ERR)
86             background = -1;
87 #endif
88         init_pair(1, COLOR_CYAN, background);
89         underline = COLOR_PAIR(1);
90     } else {
91         underline = A_UNDERLINE;
92     }
93
94     while (new_command(buffer, sizeof(buffer) - 1, underline) != ERR
95            && strlen(buffer) != 0) {
96         reset_shell_mode();
97         printf("\n");
98         fflush(stdout);
99         system(buffer);
100         reset_prog_mode();
101         touchwin(stdscr);
102         erase();
103         refresh();
104     }
105     printw("done");
106     refresh();
107     endwin();
108     return 0;
109 }