2 Copyright © 1995-2007, 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 *****************************************************************************/
65 #ifdef ChangeLayerShape
66 struct ChangeWindowShapeActionMsg msg
;
68 ASSERT_VALID_PTR(window
);
70 if (IS_GZZWINDOW(window
)) return NULL
;
74 msg
.callback
= callback
;
75 DoSyncAction((APTR
)int_changewindowshape
, &msg
.msg
, IntuitionBase
);
80 /* shut up the compiler */
81 IntuitionBase
= IntuitionBase
;
91 } /* ChangeWindowShape */
94 #ifdef ChangeLayerShape
95 static VOID
int_changewindowshape(struct ChangeWindowShapeActionMsg
*msg
,
96 struct IntuitionBase
*IntuitionBase
)
98 struct Window
*window
= msg
->window
;
99 struct Region
*shape
= msg
->shape
;
100 struct Hook
*callback
= msg
->callback
;
101 struct Screen
*screen
= window
->WScreen
;
103 if (!ResourceExisting(window
, RESOURCE_WINDOW
, IntuitionBase
)) return;
105 LOCK_REFRESH(screen
);
106 msg
->shape
= ChangeLayerShape(window
->WLayer
, shape
, callback
);
107 UNLOCK_REFRESH(screen
);
109 CheckLayers(screen
, IntuitionBase
);