Updates the terminal and curscr (current screen) to reflect changes made to a pad.
#include <curses.h>
prefresh(Pad, PY, PX, TTY, TTX, TBY, TBX) WINDOW *Pad; int PY, PX, TTY; int TTX, TBY, TBX;
pnoutrefresh(Pad, PY, PX, TTY, TTX, TBY, TBX) WINDOW *Pad; int PY, PX, TTY; int TTX, TBY, TBX;
The prefresh and pnoutrefresh subroutines are similar to the wrefresh and wnoutrefresh subroutines. They are different in that pads, instead of windows, are involved, and additional parameters are necessary to indicate what part of the pad and screen are involved.
The PX and PY parameters specify the upper left corner, in the pad, of the rectangle to be displayed. The TTX, TTY, TBX, and TBY parameters specify the edges, on the screen, for the rectangle to be displayed in. The lower right corner of the rectangle to be displayed is calculated from the screen coordinates, since both rectangle and pad must be the same size. Both rectangles must be entirely contained within their respective structures.
The prefresh subroutine copies the specified portion of the pad to the physical screen. if you wish to output several pads at once, call pnoutrefresh for each pad and then issue one call to doupdate. This updates the physical screen once.
WINDOW *my_pad; prefresh(my_pad, 0, 0, 20, 10, 30, 25);
WINDOW *my_pad1; *my_pad2; pnoutrefresh(my_pad1, 0, 0, 20, 10, 30, 25); pnoutrefresh(my_pad2, 0, 0, 0, 0, 10, 5); doupdate();
These subroutines are part of Base Operating System (BOS) Runtime.
Curses Overview for Programming in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
Manipulating Window Data with Curses in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.