(C) 1998 AROS - The Amiga Research OS


NAME
#include <intuition/intuition.h>
#include <proto/intuition.h>

void NewModifyProp (gadget , window , requester , flags , horizPot , vertPot , horizBody , vertBody , numGad)

LOCATION
In IntuitionBase at offset 78

SYNOPSIS
struct Gadget * gadget
struct Window * window
struct Requester * requester
ULONG flags
ULONG horizPot
ULONG vertPot
ULONG horizBody
ULONG vertBody
LONG numGad

FUNCTION
Changes the values in the PropInfo-structure of a proportional gadget and refreshes the specified number of gadgets beginning at the proportional gadget. If numGad is 0 (zero), then no refreshing is done.

INPUTS
gadget
Must be a PROPGADGET
window
The window which contains the gadget
requester
If the gadget has GTYP_REQGADGET set, this must be
non
NULL.
flags
New flags
horizPot
New value for the HorizPot field of the PropInfo
vertPot
New value for the VertPot field of the PropInfo
horizBody
New value for the HorizBody field of the PropInfo
vertBody
New value for the VertBody field of the PropInfo
numGad
How many gadgets to refresh. 0 means none (not even
and
1 means all of them.

RESULT
None.

EXAMPLE

SEE ALSO
NewModifyProp(), RefreshGadgets(), RefreshGList()

NOTES

BUGS

INTERNALS

HISTORY
19.07.1999 stegerg
prop gadgets now in amiga look
20.10.1998 hkiel
Amiga Research OS
27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
08.11.1996 aros
All OS function use now Amiga types

Moved intuition-driver protos to intuition_intern.h

24.10.1996 aros
Use the official AROS macros over the __AROS versions.
10.10.1996 digulla
New function: NewModifyProp()