2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
6 Add a single gadget to a window.
9 #include <proto/layers.h>
10 #include "intuition_intern.h"
12 /*****************************************************************************
15 #include <intuition/intuition.h>
16 #include <proto/intuition.h>
18 AROS_LH3(UWORD
, AddGadget
,
21 AROS_LHA(struct Window
*, window
, A0
),
22 AROS_LHA(struct Gadget
*, gadget
, A1
),
23 AROS_LHA(ULONG
, position
, D0
),
26 struct IntuitionBase
*, IntuitionBase
, 7, Intuition
)
29 Adds a single gadget to a window.
32 window - Add gadget to this window
33 gadget - Add this gadget
34 position - The position to add the gadget in the list of
35 gadgets already in the window. Use 0 to insert the
36 gadget before all others or ~0 to append it to the
40 The position where the gadget was really inserted.
43 This just adds the gadget to the list. It will not be visible
44 until you refresh the window.
56 *****************************************************************************/
63 EXTENDUWORD(position
);
65 DEBUG_ADDGADGET(dprintf("AddGadget: Window 0x%lx Gadget 0x%lx Pos %ld\n",
66 window
, gadget
, position
));
68 if (!window
) return 0;
69 if (!gadget
) return 0;
71 gadget
->GadgetType
&= ~GTYP_REQGADGET
;
73 pred
= (struct Gadget
*)&window
->FirstGadget
;
76 /* Send all GA_RelSpecial BOOPSI gadgets in the list the GM_LAYOUT msg */
77 DoGMLayout(gadget
, window
, NULL
, 1, TRUE
, IntuitionBase
);
79 //obtain semaphore here. gadget list must NOT be accessed while it's being modified!
83 LOCKWINDOWLAYERS(window
);
86 while (position
&& pred
->NextGadget
)
89 pred
= pred
->NextGadget
;
93 gadget
->NextGadget
= pred
->NextGadget
;
94 pred
->NextGadget
= gadget
;
99 UNLOCKWINDOWLAYERS(window
);
102 DEBUG_ADDGADGET(dprintf("AddGadget: Pos %ld\n", count
));