[Contents] [Index] [Help] [Retrace] [browse <] [Browse >]


NAME
    DrawBevelBoxA -- Draws a bevelled box. (V36)
    DrawBevelBox -- Varargs stub for DrawBevelBox(). (V36)

SYNOPSIS
    DrawBevelBoxA(rport, left, top, width, height, taglist)
                  A0     D0    D1   D2     D3      A1

    VOID DrawBevelBoxA(struct rastport *, word, word, word, word,
        struct tagitem *taglist);

    DrawBevelBox(rport, left, top, width, height, firsttag, ...)

    VOID DrawBevelBox(struct rastport *, word, word, word, word,
        Tag, ...);

FUNCTION
    DrawBevelBoxA() renders a bevelled box of specified dimensions
    into the supplied rastport.

INPUTS
    rport - The rastport into which the box is to be drawn.
    left - The left edge of the box.
    top - The top edge of the box.
    width - The width of the box.
    height - The height of the box.
    taglist - Pointer to a tagitem list.

TAGS
    GTBB_Recessed (BOOL):  Set to anything for a recessed-looking box.
        If absent, the box defaults, it would be raised.
    GT_VisualInfo (APTR):  You MUST supply the value you obtained
        from an earlier call to getvisualinfoa().

RESULT
    None.

EXAMPLE

NOTES
    DrawBevelBox() is a rendering operation, not a gadget.  That
    means you must refresh it at the appropriate time, like any
    other rendering operation.

BUGS

SEE ALSO
    getvisualinfoa()