ncursesw-morphos/test/testcurs.c

738 lines
16 KiB
C
Raw Normal View History

1997-05-15 12:00:00 +08:00
/*
* This is a test program for the PDCurses screen package for IBM PC type
* machines.
1998-03-01 12:21:12 +08:00
*
1997-05-15 12:00:00 +08:00
* This program was written by John Burnell (johnb@kea.am.dsir.govt.nz)
1998-03-01 12:21:12 +08:00
* wrs(5/28/93) -- modified to be consistent (perform identically) with either
* PDCurses or under Unix System V, R4
1997-05-15 12:00:00 +08:00
*
* $Id: testcurs.c,v 1.43 2010/11/13 21:02:28 tom Exp $
1997-05-15 12:00:00 +08:00
*/
#include <test.priv.h>
1998-03-01 12:21:12 +08:00
#if defined(XCURSES)
char *XCursesProgramName = "testcurs";
#endif
1997-05-15 12:00:00 +08:00
2000-07-09 10:46:08 +08:00
static int initTest(WINDOW **);
static void display_menu(int, int);
static void inputTest(WINDOW *);
static void introTest(WINDOW *);
static void outputTest(WINDOW *);
static void padTest(WINDOW *);
static void scrollTest(WINDOW *);
#if defined(PDCURSES) && !defined(XCURSES)
static void resizeTest(WINDOW *);
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
struct commands {
NCURSES_CONST char *text;
void (*function) (WINDOW *);
1997-05-15 12:00:00 +08:00
};
typedef struct commands COMMAND;
2005-10-10 02:41:57 +08:00
static const COMMAND command[] =
1997-05-15 12:00:00 +08:00
{
2002-10-13 11:35:53 +08:00
{"General Test", introTest},
2000-07-09 10:46:08 +08:00
{"Pad Test", padTest},
#if defined(PDCURSES) && !defined(XCURSES)
{"Resize Test", resizeTest},
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
{"Scroll Test", scrollTest},
{"Input Test", inputTest},
{"Output Test", outputTest}
1997-05-15 12:00:00 +08:00
};
#define MAX_OPTIONS (int) SIZEOF(command)
2002-10-13 11:35:53 +08:00
#if !HAVE_STRDUP
#define strdup my_strdup
static char *
strdup(char *s)
{
char *p = typeMalloc(char, strlen(s) + 1);
2002-10-13 11:35:53 +08:00
if (p)
strcpy(p, s);
return (p);
}
#endif /* not HAVE_STRDUP */
1997-05-15 12:00:00 +08:00
2005-10-10 02:41:57 +08:00
static int width, height;
1997-05-15 12:00:00 +08:00
int
main(
2002-10-13 11:35:53 +08:00
int argc GCC_UNUSED,
char *argv[]GCC_UNUSED)
1997-05-15 12:00:00 +08:00
{
2000-07-09 10:46:08 +08:00
WINDOW *win;
2002-10-13 11:35:53 +08:00
int key;
int old_option = (-1);
int new_option = 0;
2000-07-09 10:46:08 +08:00
bool quit = FALSE;
int n;
2002-10-13 11:35:53 +08:00
setlocale(LC_ALL, "");
1997-05-15 12:00:00 +08:00
#ifdef PDCDEBUG
2000-07-09 10:46:08 +08:00
PDC_debug("testcurs started\n");
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
if (!initTest(&win))
2002-10-13 11:35:53 +08:00
ExitProgram(EXIT_FAILURE);
1997-05-15 12:00:00 +08:00
2000-07-09 10:46:08 +08:00
erase();
display_menu(old_option, new_option);
2002-10-13 11:35:53 +08:00
for (;;) {
1997-05-15 12:00:00 +08:00
#ifdef A_COLOR
2000-07-09 10:46:08 +08:00
if (has_colors()) {
init_pair(1, COLOR_WHITE, COLOR_BLUE);
wbkgd(win, COLOR_PAIR(1));
} else
wbkgd(win, A_REVERSE);
1997-05-15 12:00:00 +08:00
#else
2000-07-09 10:46:08 +08:00
wbkgd(win, A_REVERSE);
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
werase(win);
noecho();
keypad(stdscr, TRUE);
raw();
key = getch();
2002-10-13 11:35:53 +08:00
if (key < KEY_MIN && key > 0 && isalpha(key)) {
if (islower(key))
key = toupper(key);
for (n = 0; n < MAX_OPTIONS; ++n) {
if (key == command[n].text[0]) {
display_menu(old_option, new_option = n);
key = ' ';
break;
}
}
}
2000-07-09 10:46:08 +08:00
switch (key) {
case 10:
case 13:
case KEY_ENTER:
erase();
refresh();
(*command[new_option].function) (win);
erase();
display_menu(old_option, new_option);
break;
case KEY_UP:
new_option = ((new_option == 0)
? new_option
: new_option - 1);
2000-07-09 10:46:08 +08:00
display_menu(old_option, new_option);
break;
case KEY_DOWN:
new_option = ((new_option == (MAX_OPTIONS - 1))
? new_option
: new_option + 1);
2000-07-09 10:46:08 +08:00
display_menu(old_option, new_option);
break;
case 'Q':
case 'q':
quit = TRUE;
break;
default:
2002-10-13 11:35:53 +08:00
beep();
break;
case ' ':
2000-07-09 10:46:08 +08:00
break;
}
if (quit == TRUE)
break;
}
1997-05-15 12:00:00 +08:00
2000-07-09 10:46:08 +08:00
delwin(win);
1997-05-15 12:00:00 +08:00
endwin();
1998-03-01 12:21:12 +08:00
#ifdef XCURSES
XCursesExit();
#endif
2002-10-13 11:35:53 +08:00
ExitProgram(EXIT_SUCCESS);
1997-05-15 12:00:00 +08:00
}
2000-07-09 10:46:08 +08:00
static void
Continue(WINDOW *win)
1997-05-15 12:00:00 +08:00
{
2000-07-09 10:46:08 +08:00
int y1 = getmaxy(win);
int x1 = getmaxx(win);
int y0 = y1 < 10 ? y1 : 10;
int x0 = 1;
2005-10-10 02:41:57 +08:00
chtype save;
2000-07-09 10:46:08 +08:00
save = mvwinch(win, y0, x1 - 1);
MvWAddStr(win, y0, x0, " Press any key to continue");
1998-03-01 12:21:12 +08:00
wclrtoeol(win);
2000-07-09 10:46:08 +08:00
getyx(win, y0, x0);
MvWAddCh(win, y0, x1 - 1, save);
2000-07-09 10:46:08 +08:00
wmove(win, y0, x0);
1997-05-15 12:00:00 +08:00
raw();
wgetch(win);
}
1998-03-01 12:21:12 +08:00
static int
2000-07-09 10:46:08 +08:00
initTest(WINDOW **win)
1997-05-15 12:00:00 +08:00
{
#ifdef PDCDEBUG
1998-03-01 12:21:12 +08:00
PDC_debug("initTest called\n");
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
#ifdef TRACE
1998-03-01 12:21:12 +08:00
trace(TRACE_MAXIMUM);
1997-05-15 12:00:00 +08:00
#endif
initscr();
#ifdef PDCDEBUG
1998-03-01 12:21:12 +08:00
PDC_debug("after initscr()\n");
1997-05-15 12:00:00 +08:00
#endif
#ifdef A_COLOR
if (has_colors())
2000-07-09 10:46:08 +08:00
start_color();
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
width = 60;
height = 13; /* Create a drawing window */
*win = newwin(height, width, (LINES - height) / 2, (COLS - width) / 2);
if (*win == NULL) {
endwin();
return 0;
1997-05-15 12:00:00 +08:00
}
return 1;
}
static void
2000-07-09 10:46:08 +08:00
introTest(WINDOW *win)
1997-05-15 12:00:00 +08:00
{
2000-07-09 10:46:08 +08:00
wmove(win, height / 2 - 5, width / 2);
wvline(win, ACS_VLINE, 10);
wmove(win, height / 2, width / 2 - 10);
whline(win, ACS_HLINE, 20);
1998-03-01 12:21:12 +08:00
Continue(win);
2000-07-09 10:46:08 +08:00
beep();
1997-05-15 12:00:00 +08:00
werase(win);
box(win, ACS_VLINE, ACS_HLINE);
wrefresh(win);
2000-07-09 10:46:08 +08:00
cbreak();
MvWAddStr(win, 1, 1,
2002-10-13 11:35:53 +08:00
"You should have rectangle in the middle of the screen");
MvWAddStr(win, 2, 1, "You should have heard a beep");
1997-05-15 12:00:00 +08:00
Continue(win);
return;
}
static void
2000-07-09 10:46:08 +08:00
scrollTest(WINDOW *win)
1997-05-15 12:00:00 +08:00
{
int i;
2000-07-09 10:46:08 +08:00
int half;
2002-10-13 11:35:53 +08:00
int OldY;
1999-10-24 12:32:42 +08:00
NCURSES_CONST char *Message = "The window will now scroll slowly";
1997-05-15 12:00:00 +08:00
wclear(win);
2002-10-13 11:35:53 +08:00
OldY = getmaxy(win);
2000-07-09 10:46:08 +08:00
half = OldY / 2;
MvWAddStr(win, OldY - 2, 1, Message);
2000-07-09 10:46:08 +08:00
wrefresh(win);
1997-05-15 12:00:00 +08:00
scrollok(win, TRUE);
2000-07-09 10:46:08 +08:00
for (i = 1; i <= OldY; i++) {
napms(600);
scroll(win);
wrefresh(win);
1998-03-01 12:21:12 +08:00
}
1997-05-15 12:00:00 +08:00
2000-07-09 10:46:08 +08:00
werase(win);
for (i = 1; i < OldY; i++) {
MvWPrintw(win, i, 1, "Line %d", i);
2000-07-09 10:46:08 +08:00
}
MvWPrintw(win, OldY - 2, 1, "The top of the window will scroll");
2000-07-09 10:46:08 +08:00
wmove(win, 1, 1);
wsetscrreg(win, 0, half - 1);
1997-05-15 12:00:00 +08:00
box(win, ACS_VLINE, ACS_HLINE);
2000-07-09 10:46:08 +08:00
wrefresh(win);
for (i = 1; i <= half; i++) {
napms(600);
scroll(win);
box(win, ACS_VLINE, ACS_HLINE);
wrefresh(win);
1998-03-01 12:21:12 +08:00
}
2000-07-09 10:46:08 +08:00
werase(win);
for (i = 1; i < OldY; i++) {
MvWPrintw(win, i, 1, "Line %d", i);
2000-07-09 10:46:08 +08:00
}
MvWPrintw(win, 1, 1, "The bottom of the window will scroll");
2000-07-09 10:46:08 +08:00
wmove(win, OldY - 2, 1);
wsetscrreg(win, half, --OldY);
1998-03-01 12:21:12 +08:00
box(win, ACS_VLINE, ACS_HLINE);
2000-07-09 10:46:08 +08:00
wrefresh(win);
for (i = half; i <= OldY; i++) {
napms(600);
wscrl(win, -1);
box(win, ACS_VLINE, ACS_HLINE);
wrefresh(win);
1998-03-01 12:21:12 +08:00
}
2000-07-09 10:46:08 +08:00
wsetscrreg(win, 0, OldY);
1997-05-15 12:00:00 +08:00
}
static void
2000-07-09 10:46:08 +08:00
inputTest(WINDOW *win)
1997-05-15 12:00:00 +08:00
{
2002-10-13 11:35:53 +08:00
int answered;
int repeat;
2000-07-09 10:46:08 +08:00
int w, h, bx, by, sw, sh, i, c, num;
char buffer[80];
1997-05-15 12:00:00 +08:00
WINDOW *subWin;
2000-07-09 10:46:08 +08:00
wclear(win);
1997-05-15 12:00:00 +08:00
2000-07-09 10:46:08 +08:00
getmaxyx(win, h, w);
1998-03-01 12:21:12 +08:00
getbegyx(win, by, bx);
1997-05-15 12:00:00 +08:00
sw = w / 3;
sh = h / 3;
2000-07-09 10:46:08 +08:00
if ((subWin = subwin(win, sh, sw, by + h - sh - 2, bx + w - sw - 2)) == NULL)
return;
1997-05-15 12:00:00 +08:00
#ifdef A_COLOR
2000-07-09 10:46:08 +08:00
if (has_colors()) {
init_pair(2, COLOR_WHITE, COLOR_RED);
wbkgd(subWin, COLOR_PAIR(2) | A_BOLD);
} else
wbkgd(subWin, A_BOLD);
1997-05-15 12:00:00 +08:00
#else
1998-03-01 12:21:12 +08:00
wbkgd(subWin, A_BOLD);
1997-05-15 12:00:00 +08:00
#endif
box(subWin, ACS_VLINE, ACS_HLINE);
wrefresh(win);
nocbreak();
MvWAddStr(win, 2, 1, "Press some keys for 5 seconds");
MvWAddStr(win, 1, 1, "Pressing ^C should do nothing");
1997-05-15 12:00:00 +08:00
wrefresh(win);
2000-07-09 10:46:08 +08:00
werase(subWin);
1998-03-01 12:21:12 +08:00
box(subWin, ACS_VLINE, ACS_HLINE);
1997-05-15 12:00:00 +08:00
for (i = 0; i < 5; i++) {
MvWPrintw(subWin, 1, 1, "Time = %d", i);
2000-07-09 10:46:08 +08:00
wrefresh(subWin);
napms(1000);
flushinp();
1997-05-15 12:00:00 +08:00
}
2000-07-09 10:46:08 +08:00
delwin(subWin);
1997-05-15 12:00:00 +08:00
werase(win);
flash();
wrefresh(win);
napms(500);
MvWAddStr(win, 2, 1, "Press a key, followed by ENTER");
1997-05-15 12:00:00 +08:00
wmove(win, 9, 10);
wrefresh(win);
echo();
noraw();
wgetch(win);
flushinp();
wmove(win, 9, 10);
wdelch(win);
MvWAddStr(win, 4, 1, "The character should now have been deleted");
1997-05-15 12:00:00 +08:00
Continue(win);
2000-07-09 10:46:08 +08:00
wclear(win);
MvWAddStr(win, 1, 1, "Press keys (or mouse buttons) to show their names");
MvWAddStr(win, 2, 1, "Press spacebar to finish");
1997-05-15 12:00:00 +08:00
wrefresh(win);
2006-12-18 12:32:42 +08:00
1997-05-15 12:00:00 +08:00
keypad(win, TRUE);
raw();
1998-03-01 12:21:12 +08:00
noecho();
2006-12-18 12:32:42 +08:00
#if HAVE_TYPEAHEAD
1998-03-01 12:21:12 +08:00
typeahead(-1);
2006-12-18 12:32:42 +08:00
#endif
1998-03-01 12:21:12 +08:00
#if defined(PDCURSES)
mouse_set(ALL_MOUSE_EVENTS);
#endif
2006-12-18 12:32:42 +08:00
2002-10-13 11:35:53 +08:00
for (;;) {
2000-07-09 10:46:08 +08:00
wmove(win, 3, 5);
c = wgetch(win);
wclrtobot(win);
if (c >= KEY_MIN)
wprintw(win, "Key Pressed: %s", keyname(c));
else if (isprint(c))
wprintw(win, "Key Pressed: %c", c);
else
2005-10-10 02:41:57 +08:00
wprintw(win, "Key Pressed: %s", unctrl(UChar(c)));
1998-03-01 12:21:12 +08:00
#if defined(PDCURSES)
2000-07-09 10:46:08 +08:00
if (c == KEY_MOUSE) {
int button = 0;
request_mouse_pos();
if (BUTTON_CHANGED(1))
button = 1;
else if (BUTTON_CHANGED(2))
button = 2;
else if (BUTTON_CHANGED(3))
button = 3;
else
button = 0;
wmove(win, 4, 18);
wprintw(win, "Button %d: ", button);
if (MOUSE_MOVED)
wprintw(win, "moved: ");
else if ((BUTTON_STATUS(button) & BUTTON_ACTION_MASK) == BUTTON_PRESSED)
wprintw(win, "pressed: ");
else if ((BUTTON_STATUS(button) & BUTTON_ACTION_MASK) == BUTTON_DOUBLE_CLICKED)
wprintw(win, "double: ");
else
wprintw(win, "released: ");
wprintw(win, " Position: Y: %d X: %d", MOUSE_Y_POS, MOUSE_X_POS);
}
1998-03-01 12:21:12 +08:00
#endif
2000-07-09 10:46:08 +08:00
wrefresh(win);
if (c == ' ')
break;
1998-03-01 12:21:12 +08:00
}
#if 0
1997-05-15 12:00:00 +08:00
nodelay(win, TRUE);
wgetch(win);
nodelay(win, FALSE);
1998-03-01 12:21:12 +08:00
#endif
#if defined(PDCURSES)
mouse_set(0L);
#endif
1997-05-15 12:00:00 +08:00
refresh();
2002-10-13 11:35:53 +08:00
repeat = 0;
do {
2005-10-10 02:41:57 +08:00
static const char *fmt[] =
{
2002-10-13 11:35:53 +08:00
"%d %10s",
"%d %[a-zA-Z]s",
"%d %[][a-zA-Z]s",
"%d %[^0-9]"
};
const char *format = fmt[(unsigned) repeat % SIZEOF(fmt)];
2002-10-13 11:35:53 +08:00
wclear(win);
MvWAddStr(win, 3, 2, "The window should have moved");
MvWAddStr(win, 4, 2,
2002-10-13 11:35:53 +08:00
"This text should have appeared without you pressing a key");
MvWPrintw(win, 6, 2,
2002-10-13 11:35:53 +08:00
"Scanning with format \"%s\"", format);
mvwin(win, 2 + 2 * (repeat % 4), 1 + 2 * (repeat % 4));
erase();
refresh();
wrefresh(win);
echo();
noraw();
num = 0;
*buffer = 0;
answered = mvwscanw(win, 7, 6, strdup(format), &num, buffer);
MvWPrintw(win, 8, 6,
2002-10-13 11:35:53 +08:00
"String: %s Number: %d (%d values read)",
buffer, num, answered);
Continue(win);
++repeat;
} while (answered > 0);
1997-05-15 12:00:00 +08:00
}
static void
2000-07-09 10:46:08 +08:00
outputTest(WINDOW *win)
1997-05-15 12:00:00 +08:00
{
WINDOW *win1;
2000-07-09 10:46:08 +08:00
char Buffer[80];
1997-05-15 12:00:00 +08:00
chtype ch;
1998-03-01 12:21:12 +08:00
int by, bx;
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
#if !HAVE_TIGETSTR
#if HAVE_TGETENT
char tc_buffer[4096];
char tc_parsed[4096];
char *area_pointer = tc_parsed;
tgetent(tc_buffer, getenv("TERM"));
#else
#define tgetstr(a,b) 0
#endif
#endif /* !HAVE_TIGETSTR */
2000-07-09 10:46:08 +08:00
nl();
wclear(win);
MvWAddStr(win, 1, 1,
2002-10-13 11:35:53 +08:00
"You should now have a screen in the upper left corner, and this text should have wrapped");
1997-05-15 12:00:00 +08:00
mvwin(win, 2, 1);
2000-07-09 10:46:08 +08:00
waddstr(win, "\nThis text should be down\n");
waddstr(win, "and broken into two here ^");
1997-05-15 12:00:00 +08:00
Continue(win);
wclear(win);
1998-03-01 12:21:12 +08:00
wattron(win, A_BOLD);
MvWAddStr(win, 1, 1, "A new window will appear with this text in it");
MvWAddStr(win, 8, 1, "Press any key to continue");
1997-05-15 12:00:00 +08:00
wrefresh(win);
wgetch(win);
1998-03-01 12:21:12 +08:00
getbegyx(win, by, bx);
if (LINES < 24 || COLS < 75) {
MvWAddStr(win, 5, 1,
2002-10-13 11:35:53 +08:00
"Some tests have been skipped as they require a");
MvWAddStr(win, 6, 1, "display of at least 24 LINES by 75 COLUMNS");
2000-07-09 10:46:08 +08:00
Continue(win);
1998-03-01 12:21:12 +08:00
} else {
2000-07-09 10:46:08 +08:00
win1 = newwin(10, 50, 14, 25);
if (win1 == NULL) {
endwin();
return;
}
1998-03-01 12:21:12 +08:00
#ifdef A_COLOR
2000-07-09 10:46:08 +08:00
if (has_colors()) {
init_pair(3, COLOR_BLUE, COLOR_WHITE);
wbkgd(win1, COLOR_PAIR(3));
} else
wbkgd(win1, A_NORMAL);
1997-05-15 12:00:00 +08:00
#else
2000-07-09 10:46:08 +08:00
wbkgd(win1, A_NORMAL);
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
wclear(win1);
MvWAddStr(win1, 5, 1,
2002-10-13 11:35:53 +08:00
"This text should appear; using overlay option");
2000-07-09 10:46:08 +08:00
copywin(win, win1, 0, 0, 0, 0, 9, 49, TRUE);
1997-05-15 12:00:00 +08:00
1998-03-01 12:21:12 +08:00
#if defined(PDCURSES) && !defined(XCURSES)
2000-07-09 10:46:08 +08:00
box(win1, 0xb3, 0xc4);
1998-03-01 12:21:12 +08:00
#else
2000-07-09 10:46:08 +08:00
box(win1, ACS_VLINE, ACS_HLINE);
1998-03-01 12:21:12 +08:00
#endif
2000-07-09 10:46:08 +08:00
wmove(win1, 8, 26);
wrefresh(win1);
wgetch(win1);
wclear(win1);
wattron(win1, A_BLINK);
MvWAddStr(win1, 4, 1,
2002-10-13 11:35:53 +08:00
"This blinking text should appear in only the second window");
2000-07-09 10:46:08 +08:00
wattroff(win1, A_BLINK);
mvwin(win1, by, bx);
overlay(win, win1);
mvwin(win1, 14, 25);
wmove(win1, 8, 26);
wrefresh(win1);
wgetch(win1);
delwin(win1);
1998-03-01 12:21:12 +08:00
}
1997-05-15 12:00:00 +08:00
1998-03-01 12:21:12 +08:00
clear();
1997-05-15 12:00:00 +08:00
wclear(win);
wrefresh(win);
MvWAddStr(win, 6, 2, "This line shouldn't appear");
MvWAddStr(win, 4, 2, "Only half of the next line is visible");
MvWAddStr(win, 5, 2, "Only half of the next line is visible");
1997-05-15 12:00:00 +08:00
wmove(win, 6, 1);
2000-07-09 10:46:08 +08:00
wclrtobot(win);
1997-05-15 12:00:00 +08:00
wmove(win, 5, 20);
2000-07-09 10:46:08 +08:00
wclrtoeol(win);
MvWAddStr(win, 8, 2, "This line also shouldn't appear");
1997-05-15 12:00:00 +08:00
wmove(win, 8, 1);
wdeleteln(win);
Continue(win);
2000-07-09 10:46:08 +08:00
wmove(win, 5, 9);
ch = winch(win);
1997-05-15 12:00:00 +08:00
wclear(win);
2000-07-09 10:46:08 +08:00
wmove(win, 6, 2);
waddstr(win, "The next char should be l: ");
winsch(win, ch);
1997-05-15 12:00:00 +08:00
Continue(win);
2006-12-18 12:32:42 +08:00
#if HAVE_WINSSTR
(void) mvwinsstr(win, 6, 2, "A1B2C3D4E5");
1998-03-01 12:21:12 +08:00
Continue(win);
2006-12-18 12:32:42 +08:00
#endif
1998-03-01 12:21:12 +08:00
1997-05-15 12:00:00 +08:00
wmove(win, 5, 1);
2000-07-09 10:46:08 +08:00
winsertln(win);
MvWAddStr(win, 5, 2, "The lines below should have moved down");
1997-05-15 12:00:00 +08:00
Continue(win);
wclear(win);
wmove(win, 2, 2);
2000-07-09 10:46:08 +08:00
wprintw(win, "This is a formatted string in a window: %d %s\n", 42,
2002-10-13 11:35:53 +08:00
"is it");
MvWAddStr(win, 10, 1, "Enter a string: ");
1997-05-15 12:00:00 +08:00
wrefresh(win);
noraw();
echo();
1999-10-24 12:32:42 +08:00
*Buffer = 0;
2000-07-09 10:46:08 +08:00
wscanw(win, "%s", Buffer);
1997-05-15 12:00:00 +08:00
printw("This is a formatted string in stdscr: %d %s\n", 42, "is it");
MvAddStr(10, 1, "Enter a string: ");
1999-10-24 12:32:42 +08:00
*Buffer = 0;
2000-07-09 10:46:08 +08:00
scanw("%s", Buffer);
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
if (TIGETSTR("cvvis", "vs") != 0) {
2000-07-09 10:46:08 +08:00
wclear(win);
curs_set(2);
MvWAddStr(win, 1, 1, "The cursor should appear as a block (visible)");
2000-07-09 10:46:08 +08:00
Continue(win);
1998-03-01 12:21:12 +08:00
}
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
if (TIGETSTR("civis", "vi") != 0) {
2000-07-09 10:46:08 +08:00
wclear(win);
curs_set(0);
MvWAddStr(win, 1, 1,
2002-10-13 11:35:53 +08:00
"The cursor should have disappeared (invisible)");
2000-07-09 10:46:08 +08:00
Continue(win);
1998-03-01 12:21:12 +08:00
}
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
if (TIGETSTR("cnorm", "ve") != 0) {
2000-07-09 10:46:08 +08:00
wclear(win);
curs_set(1);
MvWAddStr(win, 1, 1, "The cursor should be an underline (normal)");
2000-07-09 10:46:08 +08:00
Continue(win);
1998-03-01 12:21:12 +08:00
}
#ifdef A_COLOR
2000-07-09 10:46:08 +08:00
if (has_colors()) {
wclear(win);
MvWAddStr(win, 1, 1, "Colors should change after you press a key");
2000-07-09 10:46:08 +08:00
Continue(win);
init_pair(1, COLOR_RED, COLOR_WHITE);
wrefresh(win);
1998-03-01 12:21:12 +08:00
}
#endif
werase(win);
2006-12-18 12:32:42 +08:00
#if HAVE_TERMNAME
MvWAddStr(win, 1, 1, "Information About Your Terminal");
MvWAddStr(win, 3, 1, termname());
MvWAddStr(win, 4, 1, longname());
2000-07-09 10:46:08 +08:00
if (termattrs() & A_BLINK)
MvWAddStr(win, 5, 1, "This terminal supports blinking.");
1998-03-01 12:21:12 +08:00
else
MvWAddStr(win, 5, 1, "This terminal does NOT support blinking.");
2006-12-18 12:32:42 +08:00
#endif
1998-03-01 12:21:12 +08:00
(void) mvwaddnstr(win, 7, 5, "Have a nice day!ok", 16);
1998-03-01 12:21:12 +08:00
wrefresh(win);
(void) mvwinnstr(win, 7, 5, Buffer, 18);
MvAddStr(LINES - 2, 10, Buffer);
1998-03-01 12:21:12 +08:00
refresh();
1997-05-15 12:00:00 +08:00
Continue(win);
}
1998-03-01 12:21:12 +08:00
#if defined(PDCURSES) && !defined(XCURSES)
1997-05-15 12:00:00 +08:00
static void
resizeTest(WINDOW *dummy GCC_UNUSED)
{
WINDOW *win1;
2000-07-09 10:46:08 +08:00
savetty();
1997-05-15 12:00:00 +08:00
clear();
refresh();
1998-03-01 12:21:12 +08:00
# if defined(OS2)
2000-07-09 10:46:08 +08:00
resize_term(50, 120);
1998-03-01 12:21:12 +08:00
# else
2000-07-09 10:46:08 +08:00
resize_term(50, 80);
1998-03-01 12:21:12 +08:00
# endif
1997-05-15 12:00:00 +08:00
1998-03-01 12:21:12 +08:00
win1 = newwin(10, 50, 14, 25);
2000-07-09 10:46:08 +08:00
if (win1 == NULL) {
endwin();
return;
1997-05-15 12:00:00 +08:00
}
#ifdef A_COLOR
2000-07-09 10:46:08 +08:00
if (has_colors()) {
init_pair(3, COLOR_BLUE, COLOR_WHITE);
wattrset(win1, COLOR_PAIR(3));
}
1997-05-15 12:00:00 +08:00
#endif
2000-07-09 10:46:08 +08:00
wclear(win1);
1997-05-15 12:00:00 +08:00
MvWAddStr(win1, 1, 1, "The screen may now have 50 lines");
1997-05-15 12:00:00 +08:00
Continue(win1);
2000-07-09 10:46:08 +08:00
wclear(win1);
resetty();
1997-05-15 12:00:00 +08:00
MvWAddStr(win1, 1, 1, "The screen should now be reset");
1997-05-15 12:00:00 +08:00
Continue(win1);
delwin(win1);
clear();
refresh();
}
#endif
static void
padTest(WINDOW *dummy GCC_UNUSED)
{
2000-07-09 10:46:08 +08:00
WINDOW *pad, *spad;
if ((pad = newpad(50, 100)) != 0) {
wattron(pad, A_REVERSE);
MvWAddStr(pad, 5, 2, "This is a new pad");
(void) wattrset(pad, A_NORMAL);
MvWAddStr(pad, 8, 0,
"The end of this line should be truncated here:except now");
MvWAddStr(pad, 11, 1, "This line should not appear.It will now");
wmove(pad, 10, 1);
wclrtoeol(pad);
MvWAddStr(pad, 10, 1, " Press any key to continue");
prefresh(pad, 0, 0, 0, 0, 10, 45);
keypad(pad, TRUE);
raw();
wgetch(pad);
2000-07-09 10:46:08 +08:00
spad = subpad(pad, 12, 25, 6, 52);
MvWAddStr(spad, 2, 2, "This is a new subpad");
box(spad, 0, 0);
prefresh(pad, 0, 0, 0, 0, 15, 75);
keypad(pad, TRUE);
raw();
wgetch(pad);
2000-07-09 10:46:08 +08:00
MvWAddStr(pad, 35, 2, "This is displayed at line 35 in the pad");
MvWAddStr(pad, 40, 1, " Press any key to continue");
prefresh(pad, 30, 0, 0, 0, 10, 45);
keypad(pad, TRUE);
raw();
wgetch(pad);
2000-07-09 10:46:08 +08:00
delwin(pad);
}
1997-05-15 12:00:00 +08:00
}
static void
2000-07-09 10:46:08 +08:00
display_menu(int old_option, int new_option)
1997-05-15 12:00:00 +08:00
{
2005-10-10 02:41:57 +08:00
int i;
2000-07-09 10:46:08 +08:00
assert((new_option >= 0) && (new_option < MAX_OPTIONS));
(void) attrset(A_NORMAL);
MvAddStr(3, 20, "PDCurses Test Program");
2000-07-09 10:46:08 +08:00
2005-10-10 02:41:57 +08:00
for (i = 0; i < (int) MAX_OPTIONS; i++)
MvAddStr(5 + i, 25, command[i].text);
if ((old_option >= 0) && (old_option < MAX_OPTIONS))
MvAddStr(5 + old_option, 25, command[old_option].text);
(void) attrset(A_REVERSE);
MvAddStr(5 + new_option, 25, command[new_option].text);
(void) attrset(A_NORMAL);
MvAddStr(13, 3,
2002-10-13 11:35:53 +08:00
"Use Up and Down Arrows to select - Enter to run - Q to quit");
2000-07-09 10:46:08 +08:00
refresh();
1997-05-15 12:00:00 +08:00
}