PAD_$SET_FULL_WINDOW Domain/OS PAD_$SET_FULL_WINDOW
NAME
pad_$set_full_window - establish a window region
SYNOPSIS (C)
#include <apollo/base.h>
#include <apollo/pad.h>
void pad_$set_full_window(
ios_$id_t &stream_id,
short &window_no,
pad_$window_desc_t *window,
status_$t *status)
SYNOPSIS (Pascal)
%include '/sys/ins/base.ins.pas';
%include '/sys/ins/pad.ins.pas';
procedure pad_$set_full_window(
in stream_id: ios_$id_t;
in window_no: integer;
in window: pad_$window_desc_t;
out status: status_$t);
SYNOPSIS (FORTRAN)
%include '/sys/ins/base.ins.ftn'
%include '/sys/ins/pad.ins.ftn'
integer*4 status
integer*2 stream_id, window_no, window(4)
integer*2 top, left, width, height
equivalence (top, window(1)), (left, window(2)),
equivalence (width, window(3)), (height, window(4))
call pad_$set_full_window(stream_id, window_no, window, status)
DESCRIPTION
Pad_$set_full_window establishes the region occupied by the window speci-
fied by stream_id and window_no. If the window is currently full size
(that is, not an icon or invisible), the effect of pad_$set_full_window
is visible immediately. Otherwise, the region established by
pad_$set_full_window will be occupied whenever the window is next made
visible and full size.
stream_id
The stream ID of the pad viewed by the window.
window_no
The number of the window whose region is being established.
Window_no is an index into the window list returned by
pad_$inq_windows. A window_no of 1 refers to the first window
created to view the pad.
window
The region of the screen, in pad_$window_desc_t format, occupied by
the entire window, including borders and legend.
status
The completion status.
SEE ALSO
pad_$inq_full_window, pad_$select_window, pad_$set_border.