(C) 1998 AROS - The Amiga Research OS


NAME
#include <proto/intuition.h>

void ScrollWindowRaster (win , dx , dy , xmin , ymin , xmax , ymax)

LOCATION
In IntuitionBase at offset 133

SYNOPSIS
struct Window * win
WORD dx
WORD dy
WORD xmin
WORD ymin
WORD xmax
WORD ymax

FUNCTION
Scrolls the content of the rectangle defined by (xmin,ymin)- (xmax,ymax) by (dx,dy) towards (0,0). This function calls ScrollRasterBF(). The advantage of this function over calling ScrollRasterBF() is that the window will be informed about damages. A damage happens if in a simple window parts from concelealed areas are scrolled to visible areas. The visible areas will be blank as simple windows store no data for concealed areas. The blank parts that appear due to the scroll will be filled with EraseRect() and are not considered damaged areas.

INPUTS
win
pointer to window in which to scroll
dx,dy
scroll by (dx,dy) towards (0,0)
xmin,ymin
upper left corner of the rectangle that will be affected by the scroll
xmax,ymax
lower rigfht corner of the rectangle that will be affected by the scroll

RESULT

EXAMPLE

SEE ALSO

NOTES

BUGS

INTERNALS

HISTORY
04.04.1999 bergers
Initial revision.
23.03.1999 hkiel
Added empty skeletons