2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include <proto/layers.h>
8 #include "intuition_intern.h"
9 #include "inputhandler_actions.h"
11 #ifdef ChangeLayerShape
13 struct ChangeWindowShapeActionMsg
15 struct IntuiActionMsg msg
;
16 struct Window
*window
;
18 struct Hook
*callback
;
21 static VOID
int_changewindowshape(struct ChangeWindowShapeActionMsg
*msg
,
22 struct IntuitionBase
*IntuitionBase
);
26 /*****************************************************************************
29 #include <proto/intuition.h>
31 AROS_LH3(struct Region
*, ChangeWindowShape
,
34 AROS_LHA(struct Window
*, window
, A0
),
35 AROS_LHA(struct Region
*, newshape
, A1
),
36 AROS_LHA(struct Hook
*, callback
, A2
),
39 struct IntuitionBase
*, IntuitionBase
, 143, Intuition
)
42 Make a window invisible.
45 window - The window to affect.
61 *****************************************************************************/
64 AROS_LIBBASE_EXT_DECL(struct IntuitionBase
*,IntuitionBase
)
66 #ifdef ChangeLayerShape
67 struct ChangeWindowShapeActionMsg msg
;
69 ASSERT_VALID_PTR(window
);
71 if (IS_GZZWINDOW(window
)) return NULL
;
75 msg
.callback
= callback
;
76 DoSyncAction((APTR
)int_changewindowshape
, &msg
.msg
, IntuitionBase
);
81 /* shut up the compiler */
82 IntuitionBase
= IntuitionBase
;
92 } /* ChangeWindowShape */
95 #ifdef ChangeLayerShape
96 static VOID
int_changewindowshape(struct ChangeWindowShapeActionMsg
*msg
,
97 struct IntuitionBase
*IntuitionBase
)
99 struct Window
*window
= msg
->window
;
100 struct Region
*shape
= msg
->shape
;
101 struct Hook
*callback
= msg
->callback
;
102 struct Screen
*screen
= window
->WScreen
;
104 if (!ResourceExisting(window
, RESOURCE_WINDOW
, IntuitionBase
)) return;
106 LOCK_REFRESH(screen
);
107 msg
->shape
= ChangeLayerShape(window
->WLayer
, shape
, callback
);
108 UNLOCK_REFRESH(screen
);
110 CheckLayers(screen
, IntuitionBase
);