Home  /  Autodocs  /  reaction.lib

NAME

LibDoGadgetMethodA
DoGadgetMethodA for V37 machines

LibDoGadgetMethod
Varargs stub for LibDoGadgetMethodA

SYNOPSIS

result = LibDoGadgetMethodA( Gadget, Window, Requester, Message )
D0 A0 A1 A2 A3

ULONG LibDoGadgetMethodA( struct Gadget *, struct Window *,
struct Requester *, Msg );

result = LibDoGadgetMethod( Gadget, Window, Requester, MethodID, ...)

ULONG LibDoGadgetMethod( struct Gadget *, struct Window *,
struct Requester *, ULONG, ... );

FUNCTION

Same as the DoGadgetMethod() function of intuition.library V39, this function invokes a BOOPSI method and provides context information for classes which implement custom Intuition gadgets.

INPUTS

Gadget
abstract pointer to a boopsi gadget

Window
window gadget has been added to using AddGList() or AddGadget()

Requester
for REQGADGETs, requester containing the gadget

Msg
the boopsi message to send

WARNING

This function is provided only as a convenience for building legacy ReAction code which would work with Kickstart 2.x. LibDoGadgetMethodA() requires Kickstart 3.0 or a more recent version and will always return 0 for Kickstart 2.x.

RESULT

The object does whatever it wants with the message you sent, which might include updating its gadget visuals.

The return value is defined per-method.

Will always return 0 for V37 machines.

SEE ALSO

NewObject(), DisposeObject(), GetAttr(), MakeClass(), Document "Basic Object-Oriented Programming System for Intuition" and the "boopsi Class Reference" document.