]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/inchs.c
ncurses 6.0 - patch 20170422
[ncurses.git] / test / inchs.c
1 /****************************************************************************
2  * Copyright (c) 2007-2012,2017 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  * $Id: inchs.c,v 1.13 2017/04/15 18:52:10 tom Exp $
30  *
31  * Author: Thomas E Dickey
32  */
33 /*
34        chtype inch(void);
35        chtype winch(WINDOW *win);
36        chtype mvinch(int y, int x);
37        chtype mvwinch(WINDOW *win, int y, int x);
38        int inchstr(chtype *chstr);
39        int inchnstr(chtype *chstr, int n);
40        int winchstr(WINDOW *win, chtype *chstr);
41        int winchnstr(WINDOW *win, chtype *chstr, int n);
42        int mvinchstr(int y, int x, chtype *chstr);
43        int mvinchnstr(int y, int x, chtype *chstr, int n);
44        int mvwinchstr(WINDOW *win, int y, int x, chtype *chstr);
45        int mvwinchnstr(WINDOW *win, int y, int x, chtype *chstr, int n);
46 */
47
48 #include <test.priv.h>
49 #include <popup_msg.h>
50
51 #define BASE_Y 7
52 #define MAX_COLS 1024
53
54 static void
55 failed(const char *s)
56 {
57     int save = errno;
58     endwin();
59     errno = save;
60     perror(s);
61     ExitProgram(EXIT_FAILURE);
62 }
63
64 static bool
65 Quit(int ch)
66 {
67     return (ch == ERR || ch == 'q' || ch == QUIT || ch == ESCAPE);
68 }
69
70 static int
71 test_inchs(int level, char **argv, WINDOW *chrwin, WINDOW *strwin)
72 {
73     static const char *help[] =
74     {
75         "Test input from screen using inch(), etc., in a moveable viewport.",
76         "",
77         "Commands:",
78         " ESC/^Q                   - quit",
79         " h,j,k,l (and arrow-keys) - move viewport",
80         " w                        - recur to new window",
81         0
82     };
83     WINDOW *txtbox = 0;
84     WINDOW *txtwin = 0;
85     FILE *fp;
86     int ch, j;
87     int txt_x = 0, txt_y = 0;
88     int base_y;
89     int limit;
90     chtype text[MAX_COLS];
91
92     if (argv[level] == 0) {
93         beep();
94         return FALSE;
95     }
96
97     if (level > 1) {
98         txtbox = newwin(LINES - BASE_Y, COLS - level, BASE_Y, level);
99         box(txtbox, 0, 0);
100         wnoutrefresh(txtbox);
101
102         txtwin = derwin(txtbox,
103                         getmaxy(txtbox) - 2,
104                         getmaxx(txtbox) - 2,
105                         1, 1);
106         base_y = 0;
107     } else {
108         txtwin = stdscr;
109         base_y = BASE_Y;
110     }
111     if (txtwin == 0)
112         failed("cannot create txtwin");
113
114     keypad(txtwin, TRUE);       /* enable keyboard mapping */
115     (void) cbreak();            /* take input chars one at a time, no wait for \n */
116     (void) noecho();            /* don't echo input */
117
118     txt_y = base_y;
119     txt_x = 0;
120     wmove(txtwin, txt_y, txt_x);
121
122     if ((fp = fopen(argv[level], "r")) != 0) {
123         while ((j = fgetc(fp)) != EOF) {
124             if (waddch(txtwin, UChar(j)) != OK) {
125                 break;
126             }
127         }
128         fclose(fp);
129     } else {
130         wprintw(txtwin, "Cannot open:\n%s", argv[1]);
131     }
132
133     while (!Quit(j = mvwgetch(txtwin, txt_y, txt_x))) {
134         switch (j) {
135         case KEY_DOWN:
136         case 'j':
137             if (txt_y < getmaxy(txtwin) - 1)
138                 txt_y++;
139             else
140                 beep();
141             break;
142         case KEY_UP:
143         case 'k':
144             if (txt_y > base_y)
145                 txt_y--;
146             else
147                 beep();
148             break;
149         case KEY_LEFT:
150         case 'h':
151             if (txt_x > 0)
152                 txt_x--;
153             else
154                 beep();
155             break;
156         case KEY_RIGHT:
157         case 'l':
158             if (txt_x < getmaxx(txtwin) - 1)
159                 txt_x++;
160             else
161                 beep();
162             break;
163         case 'w':
164             test_inchs(level + 1, argv, chrwin, strwin);
165             if (txtbox != 0) {
166                 touchwin(txtbox);
167                 wnoutrefresh(txtbox);
168             } else {
169                 touchwin(txtwin);
170                 wnoutrefresh(txtwin);
171             }
172             break;
173         case HELP_KEY_1:
174             popup_msg(txtwin, help);
175             break;
176         default:
177             beep();
178             break;
179         }
180
181         MvWPrintw(chrwin, 0, 0, "char:");
182         wclrtoeol(chrwin);
183
184         if (txtwin != stdscr) {
185             wmove(txtwin, txt_y, txt_x);
186
187             if ((ch = (int) winch(txtwin)) != ERR) {
188                 if (waddch(chrwin, (chtype) ch) != ERR) {
189                     for (j = txt_x + 1; j < getmaxx(txtwin); ++j) {
190                         if ((ch = (int) mvwinch(txtwin, txt_y, j)) != ERR) {
191                             if (waddch(chrwin, (chtype) ch) == ERR) {
192                                 break;
193                             }
194                         } else {
195                             break;
196                         }
197                     }
198                 }
199             }
200         } else {
201             move(txt_y, txt_x);
202
203             if ((ch = (int) inch()) != ERR) {
204                 if (waddch(chrwin, (chtype) ch) != ERR) {
205                     for (j = txt_x + 1; j < getmaxx(txtwin); ++j) {
206                         if ((ch = (int) mvinch(txt_y, j)) != ERR) {
207                             if (waddch(chrwin, (chtype) ch) == ERR) {
208                                 break;
209                             }
210                         } else {
211                             break;
212                         }
213                     }
214                 }
215             }
216         }
217         wnoutrefresh(chrwin);
218
219         MvWPrintw(strwin, 0, 0, "text:");
220         wclrtobot(strwin);
221
222         limit = getmaxx(strwin) - 5;
223
224         if (txtwin != stdscr) {
225             wmove(txtwin, txt_y, txt_x);
226             if (winchstr(txtwin, text) != ERR) {
227                 MvWAddChStr(strwin, 0, 5, text);
228             }
229
230             wmove(txtwin, txt_y, txt_x);
231             if (winchnstr(txtwin, text, limit) != ERR) {
232                 MvWAddChStr(strwin, 1, 5, text);
233             }
234
235             if (mvwinchstr(txtwin, txt_y, txt_x, text) != ERR) {
236                 MvWAddChStr(strwin, 2, 5, text);
237             }
238
239             if (mvwinchnstr(txtwin, txt_y, txt_x, text, limit) != ERR) {
240                 MvWAddChStr(strwin, 3, 5, text);
241             }
242         } else {
243             move(txt_y, txt_x);
244             if (inchstr(text) != ERR) {
245                 MvWAddChStr(strwin, 0, 5, text);
246             }
247
248             move(txt_y, txt_x);
249             if (inchnstr(text, limit) != ERR) {
250                 MvWAddChStr(strwin, 1, 5, text);
251             }
252
253             if (mvinchstr(txt_y, txt_x, text) != ERR) {
254                 MvWAddChStr(strwin, 2, 5, text);
255             }
256
257             if (mvinchnstr(txt_y, txt_x, text, limit) != ERR) {
258                 MvWAddChStr(strwin, 3, 5, text);
259             }
260         }
261
262         wnoutrefresh(strwin);
263     }
264     if (level > 1) {
265         delwin(txtwin);
266         delwin(txtbox);
267     }
268     return TRUE;
269 }
270
271 int
272 main(int argc, char *argv[])
273 {
274     WINDOW *chrbox;
275     WINDOW *chrwin;
276     WINDOW *strwin;
277
278     setlocale(LC_ALL, "");
279
280     if (argc < 2) {
281         fprintf(stderr, "usage: %s file\n", argv[0]);
282         return EXIT_FAILURE;
283     }
284
285     initscr();
286
287     chrbox = derwin(stdscr, BASE_Y, COLS, 0, 0);
288     box(chrbox, 0, 0);
289     wnoutrefresh(chrbox);
290
291     chrwin = derwin(chrbox, 1, COLS - 2, 1, 1);
292     strwin = derwin(chrbox, 4, COLS - 2, 2, 1);
293
294     test_inchs(1, argv, chrwin, strwin);
295
296     endwin();
297     ExitProgram(EXIT_SUCCESS);
298 }