Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

overlay(3cur) [ultrix man page]

overlay(3cur)															     overlay(3cur)

Name
       overlay, overwrite - overlay windows

Syntax
       #include <cursesX.h>

       int overlay(srcwin, dstwin)
       WINDOW *srcwin, *dstwin;

       int overwrite(srcwin, dstwin)
       WINDOW *srcwin, *dstwin;

Description
       The  routine  copies  all  the text from the source window on top of the destination window The two windows are not required to be the same
       size.  The copy starts at (0, 0) on both windows.  The copy is non-destructive, so blanks are not copied.

       The routine copies all of on top of The copy starts at (0, 0) on both windows.  This is a destructive copy as blanks are copied.

Return Values
       The and functions return OK on success and ERR on error.

																     overlay(3cur)

Check Out this Related Man Page

curs_overlay(3X)														  curs_overlay(3X)

NAME
overlay, overwrite, copywin - overlay and manipulate overlapped curses windows SYNOPSIS
#include <curses.h> int overlay(const WINDOW *srcwin, WINDOW *dstwin); int overwrite(const WINDOW *srcwin, WINDOW *dstwin); int copywin(WINDOW *srcwin, WINDOW *dstwin, int sminrow, int smincol, int dminrow, int dmincol, int dmaxrow, int dmaxcol, int overlay); DESCRIPTION
The overlay and overwrite routines overlay srcwin on top of dstwin. scrwin and dstwin are not required to be the same size; only text where the two windows overlap is copied. The difference is that overlay is non-destructive (blanks are not copied) whereas overwrite is destructive. The copywin routine provides a finer granularity of control over the overlay and overwrite routines. Like in the prefresh routine, a rec- tangle is specified in the destination window, (dminrow, dmincol) and (dmaxrow, dmaxcol), and the upper-left-corner coordinates of the source window, (sminrow, smincol). If the argument overlay is true, then copying is non-destructive, as in overlay. RETURN VALUE
Routines that return an integer return ERR upon failure, and OK (SVr4 only specifies "an integer value other than ERR") upon successful completion. NOTES
Note that overlay and overwrite may be macros. PORTABILITY
The XSI Curses standard, Issue 4 describes these functions (adding the const qualifiers). It further specifies their behavior in the pres- ence of characters with multibyte renditions (not yet supported in this implementation). SEE ALSO
curses(3X), curs_pad(3X), curs_refresh(3X) curs_overlay(3X)
Man Page

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

vfstab overlay mount

How can I specify and the -O (overlay option) in the vfstab ? Also can you specify the overlay option to the mount options for a Vertias cluster NFS service group ? (0 Replies)
Discussion started by: wjones
0 Replies

2. UNIX and Linux Applications

xlib: allow overlay of other windows in full-screen

Hi, I am using the feh slideshow program in full-screen mode. While the slide show is in progress I would like to draw some other windows (something like clock or calendar from gdesklets) on top of this slideshow. Currently feh does not allow me to do that. Below is the code that feh uses to... (0 Replies)
Discussion started by: aerosmith
0 Replies

3. UNIX for Dummies Questions & Answers

Text file + image/form/overlay file to PDF

Hi, We have an app specific legacy environment running SCO Openserver 5.0.7. I need to be able to (1) scan a pre-existing “form” consisting of logo/boxes/lines/static text as an image , (2) lay a print file from the app "on top of the image" and (3) output the "merge" as a PDF file. Scanning... (1 Reply)
Discussion started by: 65bit
1 Replies

4. Shell Programming and Scripting

overlay graph on stack section

i want to overlay graph on stack section , but there are problem with color. this is my script: awk '{print $2,$1}' ofsettTWT2.data > data && a2b n1=2 < data > data.bin && psgraph n=537 x2beg=0 d2num=0.0 x2end=13000 x1beg=0 x1end=5 < data.bin linewidth=0 marksize=8 style=seismic wbox=20... (0 Replies)
Discussion started by: indah
0 Replies

5. IP Networking

FreePastry overlay

Hello, I work with Freepastry API (overlay: pastry) I would like someone to explain me this situation I have a machine A: ip = @ 196.205.x.y ifconfig: eth0 = 196.205.x.y and lo I can ping this address 196.205.xy from another machine -> I run freepastry it work on this @ I have... (0 Replies)
Discussion started by: chercheur857
0 Replies

6. IP Networking

FreePastry overlay

Hello ; Is there anybody who works with freepastry API, I have a question please? Thank you (0 Replies)
Discussion started by: chercheur857
0 Replies

7. Programming

Client Server on Pastry Overlay

Hello, Please, I have a little problem, I hope you propose a solution. Thank you very much. I developed a client task in C and a server task in C. The client needs the server IP address to connect to the server. With Freepastry , I don't know in advance which machine will run the client and... (0 Replies)
Discussion started by: chercheur111
0 Replies