2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
6 Move a screen behind all other screens.
9 #include "intuition_intern.h"
11 /*****************************************************************************
14 #include <proto/intuition.h>
16 AROS_LH1(void, ScreenToBack
,
19 AROS_LHA(struct Screen
*, screen
, A0
),
22 struct IntuitionBase
*, IntuitionBase
, 41, Intuition
)
25 Move a screen behind all other screens. If the screen is in a
26 group, the screen will be moved behind all other screens in the
27 group only. If the screen is the parent of a group, the whole
28 group will be moved in the back.
31 screen - Move this screen.
34 You will see the screen move behind all other screens. If some
35 screen before this screen occupies the whole display, then it
36 will disappear completely. If all other screens occupy only part
37 of the display, the screen will appear behind the screens.
46 ScreenToFront(), ScreenDepth()
50 *****************************************************************************/
54 ScreenDepth ( screen
, SDEPTH_TOBACK
, NULL
);