blob: 751bc6b5db27284762535b4a2a38784c844c38ef [file] [log] [blame]
Steve Kondikae271bc2015-11-15 02:50:53 +01001/****************************************************************************
2 * Copyright (c) 2009-2010,2012 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#define isQUIT(c) ((c) == QUIT || (c) == ESCAPE)
30
31#define key_RECUR CTRL('W')
32#define key_NEWLINE CTRL('N')
33#define key_BACKSPACE '\b'
34
35static FILE *linedata;
36
37static void
38failed(const char *s)
39{
40 perror(s);
41 ExitProgram(EXIT_FAILURE);
42}
43
44static void
45init_linedata(const char *name)
46{
47 if ((linedata = fopen(name, "r")) == 0) {
48 failed(name);
49 }
50}
51
52static int
53read_linedata(WINDOW *work)
54{
55 int result;
56 if (linedata != 0) {
57 result = fgetc(linedata);
58 if (result == EOF) {
59 fclose(linedata);
60 linedata = 0;
61 result = read_linedata(work);
62 } else {
63 wrefresh(work);
64 if (result == '\n') {
65 result = key_NEWLINE;
66 }
67 }
68 } else {
69#ifdef WIDE_LINEDATA
70 wint_t ch;
71 int code;
72
73 result = ERR;
74 while ((code = wget_wch(work, &ch)) != ERR) {
75
76 if (code == KEY_CODE_YES) {
77 switch (ch) {
78 case KEY_DOWN:
79 result = key_NEWLINE;
80 break;
81 case KEY_BACKSPACE:
82 result = key_BACKSPACE;
83 break;
84 default:
85 beep();
86 continue;
87 }
88 } else {
89 result = (int) ch;
90 break;
91 }
92 }
93#else
94 result = wgetch(work);
95#endif
96 }
97 return result;
98}