]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/linedata.h
ncurses 6.1 - patch 20180630
[ncurses.git] / test / linedata.h
1 /****************************************************************************
2  * Copyright (c) 2009-2012,2018 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  * $Id: linedata.h,v 1.7 2018/02/03 22:51:43 tom Exp $
31  *
32  * Utility functions for reading a line of text from a file.
33  */
34 #ifndef LINEDATA_H_incl
35 #define LINEDATA_H_incl 1
36
37 #include <test.priv.h>
38
39 #define isQUIT(c)     ((c) == QUIT || (c) == ESCAPE)
40
41 #define key_RECUR     CTRL('W')
42 #define key_NEWLINE   CTRL('N')
43 #define key_BACKSPACE '\b'
44
45 static FILE *linedata;
46
47 static void
48 failed(const char *s)
49 {
50     perror(s);
51     ExitProgram(EXIT_FAILURE);
52 }
53
54 static void
55 init_linedata(const char *name)
56 {
57     if ((linedata = fopen(name, "r")) == 0) {
58         failed(name);
59     }
60 }
61
62 static int
63 read_linedata(WINDOW *work)
64 {
65     int result;
66     if (linedata != 0) {
67         result = fgetc(linedata);
68         if (result == EOF) {
69             fclose(linedata);
70             linedata = 0;
71             result = read_linedata(work);
72         } else {
73             wrefresh(work);
74             if (result == '\n') {
75                 result = key_NEWLINE;
76             }
77         }
78     } else {
79 #ifdef WIDE_LINEDATA
80         wint_t ch;
81         int code;
82
83         result = ERR;
84         while ((code = wget_wch(work, &ch)) != ERR) {
85
86             if (code == KEY_CODE_YES) {
87                 switch (ch) {
88                 case KEY_DOWN:
89                     result = key_NEWLINE;
90                     break;
91                 case KEY_BACKSPACE:
92                     result = key_BACKSPACE;
93                     break;
94                 default:
95                     beep();
96                     continue;
97                 }
98             } else {
99                 result = (int) ch;
100                 break;
101             }
102         }
103 #else
104         result = wgetch(work);
105 #endif
106     }
107     return result;
108 }
109
110 #endif /* LINEDATA_H_incl */