]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/firstlast.c
ncurses 6.1 - patch 20190504
[ncurses.git] / test / firstlast.c
1 /****************************************************************************
2  * Copyright (c) 1998-2010,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  * This test was written by Alexander V. Lukyanov to demonstrate difference
30  * between ncurses 4.1 and SVR4 curses
31  *
32  * $Id: firstlast.c,v 1.8 2017/09/06 01:07:39 tom Exp $
33  */
34
35 #include <test.priv.h>
36
37 static void
38 fill(WINDOW *w, const char *str)
39 {
40     const char *s;
41     int x0 = -1, y0 = -1;
42     int x1, y1;
43     int maxx, maxy, limit;
44
45     getmaxyx(w, maxy, maxx);
46     wmove(w, 0, 0);
47     limit = maxy * maxx;
48
49     for (;;) {
50         for (s = str; *s; s++) {
51             getyx(w, y1, x1);
52             if (waddch(w, UChar(*s)) == ERR
53                 || (x1 == x0 && y1 == y0)) {
54                 wmove(w, 0, 0);
55                 return;
56             }
57             /* waddch() should return ERR at the lower-right corner */
58             if (--limit < 0) {
59                 beep();
60                 if (*str == '?')
61                     return;
62                 napms(500);
63                 wmove(w, maxy - 1, 0);
64                 str = "?";
65                 limit = maxx + 1;
66             }
67             x0 = x1;
68             y0 = y1;
69         }
70     }
71 }
72
73 int
74 main(int argc GCC_UNUSED,
75      char *argv[]GCC_UNUSED)
76 {
77     WINDOW *large, *small;
78     initscr();
79     noecho();
80
81     large = newwin(20, 60, 2, 10);
82     small = newwin(10, 30, 7, 25);
83
84     /* test 1 - addch */
85     fill(large, "LargeWindow");
86
87     refresh();
88     wrefresh(large);
89     wrefresh(small);
90
91     MvWAddStr(small, 5, 5, "   Test <place to change> String   ");
92     wrefresh(small);
93     getch();
94
95     touchwin(large);
96     wrefresh(large);
97
98     MvWAddStr(small, 5, 5, "   Test <***************> String   ");
99     wrefresh(small);
100
101     /* DIFFERENCE! */
102     getch();
103
104     /* test 2: erase */
105     erase();
106     refresh();
107     getch();
108
109     /* test 3: clrtoeol */
110     werase(small);
111     wrefresh(small);
112     touchwin(large);
113     wrefresh(large);
114     wmove(small, 5, 0);
115     waddstr(small, " clrtoeol>");
116     wclrtoeol(small);
117     wrefresh(small);
118
119     /* DIFFERENCE! */ ;
120     getch();
121
122     /* test 4: clrtobot */
123     werase(small);
124     wrefresh(small);
125     touchwin(large);
126     wrefresh(large);
127     wmove(small, 5, 3);
128     waddstr(small, " clrtobot>");
129     wclrtobot(small);
130     wrefresh(small);
131
132     /* DIFFERENCE! */
133     getch();
134
135     endwin();
136
137     ExitProgram(EXIT_SUCCESS);
138 }