(C) 1998 AROS - The Amiga Research OS


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

void GT_BeginRefresh (win)

LOCATION
In GadToolsBase at offset 15

SYNOPSIS
struct Window * win

FUNCTION
Refreshes the given window. This function must be used instead of BeginRefresh(), if gadtools-gadgets are used. When you are finished with refreshing the window, you must call GT_EndRefresh().

INPUTS
win
window to refresh

RESULT

EXAMPLE
case IDCMP_REFRESHWINDOW:
    GT_BeginRefresh(mywin);
    GT_EndRefresh(mywin, TRUE);
SEE ALSO
GT _EndRefresh(), intuition.library/ BeginRefresh()

NOTES
Due to the internal structure of gadtools, it is not possible to use WFLG_NOCAREREFRESH with windows, which use gadtools- gadgets. You should simple rendering functions between GT_BeginRefresh() and GT_EndRefresh() only. Do not render or change any gadgets.

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
04.04.1997 ldp
Gadtools -> GadTools
25.03.1997 srittau
Initial revision