indexing
	description: "Objects to retrieve WEL constants"
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_CONSTANTS

create 

feature -- Access

	wel_color_constants: WEL_COLOR_CONSTANTS
			-- Access to COLOR_xxx constants.

	wel_drawing_constants: WEL_DRAWING_CONSTANTS
			-- Drawing Constants
			-- Include constants:
			--   DI_xxxx
			--   DT_xxxx
			--   ...

	wel_ht_constants: WEL_HT_CONSTANTS
			-- Access to Ht_xxxconstnats

	wel_input_constants: WEL_INPUT_CONSTANTS
			-- Mouse Constants
			-- Include constants:
			--   MA_xxxx
			--   ...

	wel_list_view_constants: WEL_LIST_VIEW_CONSTANTS
			-- ListView Control Constants
			-- Include constants:
			--   LVM_xxxx
			--   LVS_xxxx
			--   LVN_xxxx
			--   ...

	wel_window_constants: WEL_WINDOW_CONSTANTS
			-- Window managment constants:
			-- Include constants:
			--   WM_xxxx
			--   ...
	
invariant

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

end -- class WEL_CONSTANTS