Copyright 2018-2023,2024 Thomas E. Dickey *
Copyright 1998-2016,2017 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_kernel.3x,v 1.61 2024/04/20 21:24:19 tom Exp $
#include <curses.h>int def_prog_mode(void); int def_shell_mode(void);
int reset_prog_mode(void); int reset_shell_mode(void);
int resetty(void); int savetty(void);
void getsyx(int y, int x); void setsyx(int y, int x);
int ripoffline(int line, int (*init)(WINDOW *, int)); int curs_set(int visibility); int napms(int ms);
Few applications will use this feature, most use getyx instead.
Few applications will use this feature, most use wmove instead.
When the resulting initialization is done inside initscr, the routine init (supplied by the user) is called with two arguments: .bP a window pointer to the one-line window that has been allocated and .bP an integer with the number of columns in the window.
Inside this initialization routine, the integer variables LINES and COLS (defined in <curses.h>) are not guaranteed to be accurate and wrefresh or doupdate must not be called. It is allowable to call wnoutrefresh during the initialization routine.
ripoffline can be called up to five times before calling initscr or newterm.
curs_set returns the previous cursor state, or ERR if the requested visibility is not supported.
X/Open defines no error conditions. In this implementation
5 def_prog_mode, def_shell_mode, reset_prog_mode, reset_shell_mode return an error if the terminal was not initialized, or if the I/O call to obtain the terminal settings fails.
5 ripoffline returns an error if the maximum number of ripped-off lines exceeds the maximum (5).
Older SVr4 man pages warn that the return value of curs_set \*(``is currently incorrect\*(''. This implementation gets it right, but it may be unwise to count on the correctness of the return value anywhere else.
Both \%ncurses and SVr4 will call curs_set in endwin if curs_set has been called to make the cursor other than normal, i.e., either invisible or very visible. There is no way for \%ncurses to determine the initial cursor state to restore that.
The SVr4 documentation describes setsyx and getsyx as having return type int. This is misleading, as they are macros with no documented semantics for the return value.
If interrupted, \%ncurses restarts napms. That, and the limitation to 30 seconds, are different from other implementations.