indexing
	description: "Raster capabilities (RC) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_RASTER_CAPABILITIES_CONSTANTS

feature -- Access

	rc_banding: INTEGER
			-- Supports banding

	rc_bigfont: INTEGER
			-- Supports fonts larger then 64K

	rc_bitblt: INTEGER
			-- Transfers bitmaps

	rc_bitmap64: INTEGER
			-- Supports bitmaps larger than 64K

	rc_devbits: INTEGER
			-- Supports device bitmaps

	rc_di_bitmap: INTEGER
			-- Supports the set_di_bits feature

	rc_dibtodev: INTEGER
			-- Supports the set_di_bits_to_device feature

	rc_floodfill: INTEGER
			-- Performs flood fills

	rc_gdi20_output: INTEGER
			-- Supports Windows version 2.0 features

	rc_gdi20_state: INTEGER
			-- Includes a state block in the device context

	rc_op_dx_output: INTEGER
			-- Supports dev opaque and DX array

	rc_palette: INTEGER
			-- Specifies a palette-based device

	rc_savebitmap: INTEGER
			-- Saves bitmaps locally

	rc_scaling: INTEGER
			-- Supports scaling

	rc_stretchblt: INTEGER
			-- Supports the stretch_blt feature

	rc_stretchdib: INTEGER
			-- Supports the stretch_di_bits feature
	
invariant

		-- from ANY
	reflexive_equality: standard_is_equal (Current)
	reflexive_conformance: conforms_to (Current)

end -- class WEL_RASTER_CAPABILITIES_CONSTANTS