Copyright 2020-2023,2024 Thomas E. Dickey *
Copyright 1998-2015,2016 Free Software Foundation, Inc. *
*
Permission is hereby granted, free of charge, to any person obtaining a *
copy of this software and associated documentation files (the *
"Software"), to deal in the Software without restriction, including *
without limitation the rights to use, copy, modify, merge, publish, *
distribute, distribute with modifications, sublicense, and/or sell *
copies of the Software, and to permit persons to whom the Software is *
furnished to do so, subject to the following conditions: *
*
The above copyright notice and this permission notice shall be included *
in all copies or substantial portions of the Software. *
*
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
*
Except as contained in this notice, the name(s) of the above copyright *
holders shall not be used in advertising or otherwise to promote the *
sale, use or other dealings in this Software without prior written *
authorization. *
***************************************************************************
$Id: curs_window.3x,v 1.48 2024/04/20 21:20:07 tom Exp $
#include <curses.h>WINDOW *newwin( int nlines, int ncols, int begin_y, int begin_x); int delwin(WINDOW *win); int mvwin(WINDOW *win, int y, int x); WINDOW *subwin(WINDOW *orig, int nlines, int ncols, int begin_y, int begin_x); WINDOW *derwin(WINDOW *orig, int nlines, int ncols, int begin_y, int begin_x); int mvderwin(WINDOW *win, int par_y, int par_x); WINDOW *dupwin(WINDOW *win); void wsyncup(WINDOW *win); int syncok(WINDOW *win, bool bf); void wcursyncup(WINDOW *win); void wsyncdown(WINDOW *win);
line begin_y,
column begin_x
If either nlines or ncols is zero, they default to
LINES - begin_y and
COLS - begin_x.
A new full-screen window is created by calling newwin(0,0,0,0).
Regardless of the function used for creating a new window (e.g., newwin, subwin, derwin, newpad), rather than a duplicate (with dupwin), all of the window modes are initialized to the default values. These functions set window modes after a window is created:
\%idcok \%idlok \%immedok \%keypad \%leaveok \%nodelay \%scrollok \%setscrreg \%syncok \%wbkgdset \%wbkgrndset and \%wtimeout.
Routines that return pointers return NULL on error.
X/Open defines no error conditions. In this implementation
5 delwin returns an error if the window pointer is null, or if the window is the parent of another window.
5 derwin returns an error if the parent window pointer is null, or if any of its ordinates or dimensions is negative, or if the resulting window does not fit inside the parent window.
5 dupwin returns an error if the window pointer is null.
This implementation also maintains a list of windows, and checks that the pointer passed to delwin is one that it created, returning an error if it was not..5 mvderwin returns an error if the window pointer is null, or if some part of the window would be placed off-screen.
5 mvwin returns an error if the window pointer is null, or if the window is really a pad, or if some part of the window would be placed off-screen.
5 newwin will fail if either of its beginning ordinates is negative, or if either the number of lines or columns is negative.
5 syncok returns an error if the window pointer is null.
5 subwin returns an error if the parent window pointer is null, or if any of its ordinates or dimensions is negative, or if the resulting window does not fit inside the parent window.
The functions which return a window pointer may also fail if there is insufficient memory for its data structures. Any of these functions will fail if the screen has not been initialized, i.e., with initscr or newterm.
Note that syncok may be a macro.
X/Open Curses states regarding delwin: .bP It must delete subwindows before deleting their parent. .bP If delwin is asked to delete a parent window, it can only succeed if the curses library keeps a list of the subwindows. SVr4 curses kept a count of the number of subwindows rather than a list. It simply returned ERR when asked to delete a subwindow. Solaris X/Open curses does not even make that check, and will delete a parent window which still has subwindows. .bP Since release 4.0 (1996), \%ncurses maintains a list of windows for each screen, to ensure that a window has no subwindows before allowing deletion. .bP NetBSD copied this feature of \%ncurses in 2003.
PDCurses follows the scheme used in Solaris X/Open curses.
System V's curses documentation is unclear about what \%wsyncup and \%wsyncdown actually do. It seems to imply that they are supposed to touch only those lines that are affected by changes to a window's ancestors. The language here, and behavior of \%ncurses, is patterned on the X/Open Curses standard; this approach may result in slower updates.