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 in front of all other screens.
9 #include "intuition_intern.h"
11 /*****************************************************************************
14 #include <proto/intuition.h>
16 AROS_LH1(void, ScreenToFront
,
19 AROS_LHA(struct Screen
*, screen
, A0
),
22 struct IntuitionBase
*, IntuitionBase
, 42, Intuition
)
25 Move a screen in front of all other screens. If the screen is in a
26 group, the screen will be moved in front of 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 front.
31 screen - Move this screen.
34 You will see the screen move in front of all other screens.
43 ScreenToBack(), ScreenDepth()
47 *****************************************************************************/
51 ScreenDepth ( screen
, SDEPTH_TOFRONT
, NULL
);