PAD_$POP_PUSH_WINDOW Domain/OS PAD_$POP_PUSH_WINDOW
NAME
pad_$pop_push_window - pop or push a window
SYNOPSIS (C)
#include <apollo/base.h>
#include <apollo/pad.h>
void pad_$pop_push_window(
ios_$id_t &stream_id,
short &window_no,
boolean &pop_push,
status_$t *status)
SYNOPSIS (Pascal)
%include '/sys/ins/base.ins.pas';
%include '/sys/ins/pad.ins.pas';
procedure pad_$pop_push_window(
in stream_id: ios_$id_t;
in window_no: integer;
in pop_push: boolean;
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
logical pop_push
call pad_$pop_push_window(stream_id, window_no, pop_push, status)
DESCRIPTION
Pad_$pop_push_window changes how windows are overlayed on the display.
stream_id
The stream ID of the pad under the window to pop or push.
window_no
The number of the window to pop or push. 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.
pop_push
A Boolean argument indicating whether to pop or push the window. If
pop_push is true, the window is popped in front of all other windows
on the display, leaving it unobscured by any other window. If
pop_push is false, the window is pushed behind all other windows on
the display, leaving all other windows unobscured by it.
status
The completion status.
SEE ALSO
pad_$make_invisible, pad_$select_window.