indexing
	description: "Possible flags of the results of a hit test on aheader control"
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_HHT_CONSTANTS

feature -- Access

	hht_nowhere: INTEGER
			-- The point is inside the bounding rectangle of the header control but
			-- is not over a header item.

	hht_on_div_open: INTEGER
			-- The point is on the divider of an item that has a width of zero.
			-- Dragging the divider reveals the item instead of resizing the item
			-- to the left of the divider.

	hht_on_divider: INTEGER
			-- The point is on the divider between two header items.

	hht_on_header: INTEGER
			-- The point is inside the bounding rectangle of the header control.

	hht_to_left: INTEGER
			-- The point is to the left of the bounding rectangle of the header control.

	hht_to_right: INTEGER
			-- The point is to the right of the bounding rectangle of the header control.
	
invariant

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

end -- class WEL_HHT_CONSTANTS