indexing
	description: "Brush style (BS) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_BRUSH_STYLE_CONSTANTS

feature -- Access

	Bs_dibpattern: INTEGER is 5
			-- A pattern brush defined by a device-independent
			-- bitmap (DIB) specification.

	Bs_dibpattern8x8: INTEGER is 8
			-- Same as Bs_dibpattern.

	Bs_dibpatternpt: INTEGER is 6
			-- A pattern brush defined by a device-independent
			-- bitmap (DIB) specification

	Bs_hatched: INTEGER is 2
			-- Hatched brush.

	Bs_hollow: INTEGER is 1
			-- Hollow brush.

	Bs_indexed: INTEGER is 4

	Bs_null: INTEGER is 1
			-- Same as Bs_hollow.

	Bs_pattern: INTEGER is 3
			-- Pattern brush defined by a memory bitmap.

	Bs_pattern8x8: INTEGER is 7
			-- Same as Bs_pattern.

	Bs_solid: INTEGER is 0
			-- Solid brush.
	
invariant

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

end -- class WEL_BRUSH_STYLE_CONSTANTS