(C) 1998 AROS - The Amiga Research OS


NAME
#include <clib/intuition_protos.h>

void ScreenDepth (screen , flags , reserved)

LOCATION
In IntuitionBase at offset 131

SYNOPSIS
struct Screen * screen
ULONG flags
APTR reserved

FUNCTION
Move the specified screen to the front or back, based on passed flag. If the screen is in a group, the screen will change its position in the group only. If the screen is the parent of a group, the whole group will be moved.

INPUTS
screen
Move this screen.
flags
SDEPTH_TOFRONT or SDEPTH_TOBACK for bringing the screen to front or back. If the screen is a child of another screen you may specify SDEPTH_INFAMILY to move the screen within the family. If not specified the whle family will move.
reserved
For future use. MUST be NULL by now.

RESULT
None.

EXAMPLE

SEE ALSO
ScreenToBack(), ScreenToFront()

NOTES
Only the owner of the screen should use SDEPTH_INFAMILY. Intentionally commodities should not change the internal arrangement of screen families.

BUGS

INTERNALS

HISTORY
27.01.1999 hkiel
Handles screen families now
25.01.1999 hkiel
Implemented functions