Home  /  Autodocs  /  intuition.library

NAME

ActivateGadget
Activate a (string or custom) gadget.

SYNOPSIS

Success = ActivateGadget( Gadget, Window, Request )
D0 A0 A1 A2

BOOL ActivateGadget( struct Gadget *, struct Window *,
struct Requester * );

FUNCTION

Activates a string or custom gadget. If successful, this means that the user does not need to click in the gadget before typing.

The window parameter must point to the window which contains the gadget. If the gadget is actually in a requester, the window must contain the requester, and a pointer to the requester must also be passed. The requester parameter must only be valid if the gadget has the GTYP_REQGADGET flag set, a requirement for all requester gadgets.

The success of this function depends on a rather complex set of conditions. The intent is that the user is never interrupted from what interactions he may have underway.

The current set of conditions includes:

NOTE:
Don't try to activate a gadget which is disabled or

not attached to a window or requester.

INPUTS

Gadget
pointer to the gadget that you want activated.

Window
pointer to a window structure containing the gadget.

Requester
pointer to a requester (may by NULL if this isn't a requester gadget (i.e. GTYP_REQGADGET is not set)).

RESULT

If the conditions above are met, and the gadget is in fact a string gadget, then this function will return TRUE, else FALSE.

BUGS

At present, this function will not return FALSE if a custom gadget declines to be activated.

SEE ALSO