indexing
	description: "Information about message Wm_notify which informs the parent window of a control that an event has occurred in the control or that the control requires some kind of information."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"
class interface
	WEL_NOTIFY_MESSAGE
create 
	make (a_window: WEL_WINDOW; a_message, a_w_param, a_l_param: INTEGER)
			windowmessagew_paraml_param
			a_windowa_messagea_w_parama_l_param
			 WEL_MESSAGE_INFORMATION
		ensure  WEL_MESSAGE_INFORMATION
			window_set: window = a_window
			message_set: message = a_message
			w_param_set: w_param = a_w_param
			l_param_set: l_param = a_l_param
feature 
	make (a_window: WEL_WINDOW; a_message, a_w_param, a_l_param: INTEGER)
			windowmessagew_paraml_param
			a_windowa_messagea_w_parama_l_param
			 WEL_MESSAGE_INFORMATION
		ensure  WEL_MESSAGE_INFORMATION
			window_set: window = a_window
			message_set: message = a_message
			w_param_set: w_param = a_w_param
			l_param_set: l_param = a_l_param
	
feature 
	id: INTEGER
			
	l_param: INTEGER
			message
			message
			 WEL_MESSAGE_INFORMATION
	message: INTEGER
			WEL_WM_CONSTANTS
			
			 WEL_MESSAGE_INFORMATION
	nmhdr: WEL_NMHDR
			
		ensure
			result_not_void: Result /= void
	w_param: INTEGER
			message
			message
			 WEL_MESSAGE_INFORMATION
	window: WEL_WINDOW
			message
			 WEL_MESSAGE_INFORMATION
	
invariant
		 ANY
	reflexive_equality: standard_is_equal (Current)
	reflexive_conformance: conforms_to (Current)
end -- WEL_NOTIFY_MESSAGE