Home
Search all pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
Others
wresize(3) wresize(3)
NAME
wresize - resize a curses window
SYNOPSIS
#include <curses.h>
int wresize(WINDOW *win, int lines, int columns);
DESCRIPTION
The wresize function reallocates storage for a curses win-
dow to adjust its dimensions to the specified values. If
either dimension is larger than the current values, the
window's data is filled with blanks that have the current
background rendition (as set by wbkgndset) merged into
them.
RETURN VALUE
The function returns the integer ERR upon failure and OK
on success. It will fail if either of the dimensions less
than or equal to zero, or if an error occurs while
(re)allocating memory for the window.
NOTES
The only restriction placed on the dimensions is that they
be greater than zero. The dimensions are not compared to
curses screen dimensions to simplify the logic of
resizeterm. The caller must ensure that the window's
dimensions fit within the actual screen dimensions.
SEE ALSO
resizeterm(3).
AUTHOR
Thomas Dickey (from an equivalent function written in 1988
for BSD curses).
1
Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts Institute of Technology, Free Software Foundation, FreeBSD Inc., and others. |
(Corrections, notes, and links courtesy of RocketAware.com)
OpenBSD sources for wresize(3)
Up to: Curses - Curses (Library for text display interfaces)
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
Others
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware > man pages >
wresize.3/
RocketAware.com is a service of Mib Software Copyright 1999, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|