;
; redraw.sh
;
; Redrawing windows and icons
;
;  1995-1998 Straylight
;

;----- Licensing note -------------------------------------------------------
;
; This file is part of Straylight's Sculptrix.
;
; Sculptrix is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2, or (at your option)
; any later version.
;
; Sculptrix is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with Sculptrix.  If not, write to the Free Software Foundation,
; 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

;----- Overview -------------------------------------------------------------
;
; Functions provided:
;
;  redraw_window
;  redraw_icon
;  redraw_group
;  redraw_update

		[	:LNOT::DEF:redraw__dfn
		GBLL	redraw__dfn

; --- redraw_window ---
;
; On entry:	R1 == pointer to redraw block
;
; On exit:	May return an error
;
; Use:		Redraws all the icons in a window.

		IMPORT	redraw_window

; --- redraw_icon ---
;
; On entry:	R0 == pointer to icon block
;		R1 == pointer to redraw block
;
; On exit:	May return an error
;
; Use:		Redraws a single icon.

		IMPORT	redraw_icon

; --- redraw_group ---
;
; On entry:	R0 == pointer to icon block
;		R1 == pointer to redraw block
;		R2 == `border type' (ignored in Sculptrix 2.00)
;		R3 == pointer to title string
;
; On exit:	--
;
; Use:		Plots a group box.

		IMPORT	redraw_group

; --- redraw_update ---
;
; On entry:	R0 == window handle
;		R1 == icon handle
;
; On exit:	--
;
; Use:		Updates an icon.

		IMPORT	redraw_update

		]

;----- That's all, folks ----------------------------------------------------

		END
