indexing
	description: "[
		Widget which is a combination of an EV_TREE and an EV_MULTI_COLUMN_LIST.
		MSWindows implementation.
	]"
	legal: "See notice at end of class."
	status: "See notice at end of class."
	date: "$Date: 2006-09-20 09:46:19 -0700 (Wed, 20 Sep 2006) $"
	revision: "$Revision: 63727 $"

class interface
	EV_GRID_IMP

create 
	make (an_interface: like interface)
			-- Create `Current'.
			-- (from EV_CELL_IMP)
		require -- from EV_ANY_I
			an_interface_not_void: an_interface /= Void
		ensure -- from EV_ANY_I
			interface_assigned: interface = an_interface
			base_make_called: base_make_called

feature -- Access

	accept_cursor: EV_POINTER_STYLE
			-- Accept cursor set by user.
			-- To be displayed when the screen pointer is over a target that accepts
			-- pebble during pick and drop.
			-- (from EV_PICK_AND_DROPABLE_I)

	actual_drop_target_agent: FUNCTION [ANY, TUPLE [INTEGER_32, INTEGER_32], EV_ABSTRACT_PICK_AND_DROPABLE]
			-- Overrides default drop target on a certain position.
			-- If `Void', will use the default drop target.
			-- Always void if `Current' is not a widget.
			-- (from EV_WIDGET_I)

	are_tree_node_connectors_shown: BOOLEAN
			-- Are connectors between tree nodes shown in `Current'?
			-- (from EV_GRID_I)

	awaiting_movement: BOOLEAN
			-- Are we currently awaiting the movement threshold to
			-- be reached for as drag and drop or dockable move?
			-- (from EV_SHARED_TRANSPORT_IMP)

	background_color: EV_COLOR
			-- Color used for the background of `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_COLORIZABLE_I
			True

	background_pixmap: EV_PIXMAP
			-- `Result' is pixmap used for background.
			-- (from EV_CONTAINER_IMP)
		require -- from  EV_PIXMAPABLE_I
			True

	background_pixmap_imp: EV_PIXMAP_IMP
			-- Pixmap used for the background of the widget
			-- (from EV_CONTAINER_IMP)

	capture_enabled: BOOLEAN
			-- Is the mouse currently captured?
			-- See constants Capture_xxxx at the end of the class.
			-- (from EV_PICK_AND_DROPABLE_IMP)

	children: LIST [WEL_WINDOW]
			-- Construct a linear representation of children.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
		ensure -- from WEL_COMPOSITE_WINDOW
			result_not_void: Result /= Void

	client_height: INTEGER_32
			-- Height of the client area of container
			-- `Result' in pixels.
			-- (from EV_CONTAINER_IMP)
		require -- from  EV_CONTAINER_I
			True
		ensure -- from EV_CONTAINER_I
			positive: Result >= 0

	client_width: INTEGER_32
			-- Width of the client area of container.
			-- `Result' in pixels.
			-- (from EV_CONTAINER_IMP)
		require -- from  EV_CONTAINER_I
			True
		ensure -- from EV_CONTAINER_I
			positive: Result >= 0

	client_x: INTEGER_32
			-- Left of the client area.
			-- `Result' in pixels.
			-- (from EV_CONTAINER_IMP)

	client_y: INTEGER_32
			-- Top of the client area.
			-- `Result' in pixels.
			-- (from EV_CONTAINER_IMP)

	column (a_column: INTEGER_32): EV_GRID_COLUMN
			-- Column at index `a_column'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_positive: a_column > 0
			a_column_not_greater_than_column_count: a_column <= column_count
		ensure -- from EV_GRID_I
			column_not_void: Result /= Void

	column_at_virtual_position (a_virtual_x: INTEGER_32): EV_GRID_COLUMN
			-- Column at virtual x position `a_virtual_x'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			virtual_x_valid: a_virtual_x >= 0 and a_virtual_x <= virtual_width

	commands: WEL_COMMAND_MANAGER
			-- Command manager associated to the current window.
			-- (from WEL_WINDOW)

	conforming_pick_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Actions to be performed when a pebble that fits here is picked.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			True
		ensure -- from EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			not_void: Result /= Void

	cursor_on_widget: CELL [EV_WIDGET_IMP]
			-- This cell contains the widget_imp that currently
			-- has the pointer of the mouse. As it is a once
			-- feature, it is a shared data.
			-- it is used for the `mouse_enter' and `mouse_leave'
			-- events.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_PICK_AND_DROPABLE_IMP
			True
		ensure then -- from EV_WIDGET_IMP
			result_exists: Result /= Void

	default_key_processing_handler: PREDICATE [ANY, TUPLE [EV_KEY]]
			-- Agent used to determine whether the default key processing should occur for `Current'.
			-- If agent returns `True' then default key processing continues as normal, False prevents
			-- default key processing from occuring.
			-- (from EV_WIDGET_I)

	default_parent: EV_INTERNAL_SILLY_WINDOW_IMP
			-- A default parent for creation of `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_WEL_CONTROL_CONTAINER_IMP
			True
		ensure -- from EV_WIDGET_IMP
			valid_parent: Result /= Void

	default_processing: BOOLEAN
			-- (from WEL_RETURN_VALUE)

	deny_cursor: EV_POINTER_STYLE
			-- Deny cursor set by user.
			-- To be displayed when the screen pointer is not over a valid target.
			-- (from EV_PICK_AND_DROPABLE_I)

	displayed_column (i: INTEGER_32): EV_GRID_COLUMN
			-- `i'-th displayed column. May not correspond
			-- to column if one or more columns have been
			--- hidden via hide.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			i_positive: i > 0
			i_column_not_greater_than_displayed_column_count: i <= displayed_column_count
		ensure -- from EV_GRID_I
			column_not_void: Result /= Void

	drag_and_drop_starting_movement: INTEGER_32 is 3
			-- Pointer movement in pixels required to start a drag and drop.
			-- (from EV_SHARED_TRANSPORT_IMP)

	drop_actions: EV_PND_ACTION_SEQUENCE
			-- Actions to be performed when a pebble is dropped here.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			True
		ensure -- from EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			not_void: Result /= Void

	dynamic_content_function: FUNCTION [ANY, TUPLE [INTEGER_32, INTEGER_32], EV_GRID_ITEM]
			-- Function which computes the item that resides in a particular position of the
			-- grid while is_content_partially_dynamic or `is_content_completely_dynamic.
			-- (from EV_GRID_I)

	focus_on_widget: CELL [EV_WIDGET_IMP]
			-- Widget that has currently the focus.
			-- (from EV_WIDGET_IMP)

	font: WEL_FONT
			-- Font with which the control is drawing its text.
			-- (from WEL_CONTROL_WINDOW)
		require -- from WEL_CONTROL_WINDOW
			exists: exists
		ensure -- from WEL_CONTROL_WINDOW
			result_not_void: Result /= Void

	foreground_color: EV_COLOR
			-- Color used for the foreground of `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_COLORIZABLE_I
			True

	generating_type: STRING_8
			-- Name of current object's generating type
			-- (type of which it is a direct instance)
			-- (from ANY)

	generator: STRING_8
			-- Name of current object's generating class
			-- (base class of the type of which it is a direct instance)
			-- (from ANY)

	has_capture: BOOLEAN
			-- Does `Current' have capture?
			-- (from EV_GRID_I)
		require -- from  EV_WIDGET_I
			True

	has_focus: BOOLEAN
			-- Does `Current' have focus?
			-- (from EV_GRID_I)
		require -- from  EV_WIDGET_I
			True
		require -- from WEL_WINDOW
			exists: exists

	has_return_value: BOOLEAN
			-- Should the window procedure return a value?
			-- (from WEL_RETURN_VALUE)

	height: INTEGER_32
			-- Height of `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from  EV_POSITIONED_I
			True

	help_context: FUNCTION [ANY, TUPLE, EV_HELP_CONTEXT]
			-- Agent that evaluates to help context sent to help engine when help is requested
			-- (from EV_HELP_CONTEXTABLE_I)
		ensure -- from EV_HELP_CONTEXTABLE_I
			current_if_exists: internal_help_context /= Void implies Result = internal_help_context

	internal_pointer_style: EV_POINTER_STYLE
			-- Cursor displayed when screen pointer is over current widget,
			-- as seen from interface.
			-- (from EV_WIDGET_I)

	is_column_resize_immediate: BOOLEAN
			-- Is the user resizing of a reflected immediately in `Current'?
			-- If `False', the column width is only updated upon completion of the resize.
			-- (from EV_GRID_I)

	is_content_partially_dynamic: BOOLEAN
			-- Is the content of `Current' partially dynamic? If `True' then
			-- whenever an item must be re-drawn and it is not already set within `Current',
			-- then it is queried via `content_requested_actions'. The returned item is added
			-- to `Current' so the query only occurs once.
			-- (from EV_GRID_I)

	is_dock_executing: BOOLEAN
			-- Is `Current' in the process of a dockable transport?
			-- (from EV_DOCKABLE_SOURCE_I)

	is_dockable: BOOLEAN
			-- Is `Current' dockable?
			-- (from EV_DOCKABLE_SOURCE_I)

	is_external_docking_enabled: BOOLEAN
			-- Is `Current' able to be docked into an EV_DOCKABLE_DIALOG
			-- When there is no valid EV_DRAGABLE_TARGET upon completion
			-- of the transport?
			-- (from EV_DOCKABLE_SOURCE_I)

	is_external_docking_relative: BOOLEAN
			-- Will dockable dialog displayed when `Current' is docked externally
			-- be displayed relative to parent window of `Current'?
			-- Otherwise displayed as a standard window.
			-- (from EV_DOCKABLE_SOURCE_I)

	is_header_displayed: BOOLEAN
			-- Is the header displayed in `Current'.
			-- (from EV_GRID_I)

	is_horizontal_overscroll_enabled: BOOLEAN
			-- Does the virtual width of `Current' include the
			-- position of the final column plus the viewable_width.
			-- If `True', this enables horizontal scrolling until the last column
			-- is at the very left of the viewable area. If `False', scrolling
			-- may be performed until the last column is at the left of the viewable
			-- area.
			-- (from EV_GRID_I)

	is_horizontal_scrolling_per_item: BOOLEAN
			-- Is horizontal scrolling performed on a per-item basis?
			-- If `True', each change of the horizontal scroll bar increments the horizontal
			-- offset by the current column width.
			-- If `False', the scrolling is smooth on a per-pixel basis.
			-- (from EV_GRID_I)

	is_resizing_divider_enabled: BOOLEAN
			-- Is a vertical divider displayed during column resizing?
			-- (from EV_GRID_I)

	is_resizing_divider_solid: BOOLEAN
			-- Is resizing divider displayed during column resizing drawn as a solid line?
			-- If `False', a dashed line style is used.
			-- (from EV_GRID_I)

	is_row_height_fixed: BOOLEAN
			-- Must all rows in `Current' have the same height?
			-- (from EV_GRID_I)

	is_vertical_overscroll_enabled: BOOLEAN
			-- Does the virtual height of `Current' include the
			-- position of the final row plus the viewable_height.
			-- If `True', this enables vertical scrolling until the last row
			-- is at the very top of the viewable area. If `False', scrolling
			-- may be performed until the last row is at the bottom of the viewable
			-- area.
			-- (from EV_GRID_I)

	is_vertical_scrolling_per_item: BOOLEAN
			-- Is vertical scrolling performed on a per-item basis?
			-- If `True', each change of the vertical scroll bar increments the vertical
			-- offset by the current row height.
			-- If `False', the scrolling is smooth on a per-pixel basis.
			-- (from EV_GRID_I)

	cell_item: EV_WIDGET
			-- The child of `Current'.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)

	wel_item: POINTER
			-- Generic Windows handle or structure pointer.
			-- Can be a HWND, HICON, RECT *, WNDCLASS *, etc...
			-- (from WEL_ANY)

	item (a_column: INTEGER_32; a_row: INTEGER_32): EV_GRID_ITEM
			-- Cell at `a_column' and `a_row' position, Void if none.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_positive: a_column > 0
			a_column_less_than_column_count: a_column <= column_count
			a_row_positive: a_row > 0
			a_row_less_than_row_count: a_row <= row_count

	item_at_virtual_position (a_virtual_x, a_virtual_y: INTEGER_32): EV_GRID_ITEM
			-- Cell at virtual position `a_virtual_x', `a_virtual_y' or
			-- `Void' if none.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			virtual_x_valid: a_virtual_x >= 0 and a_virtual_x <= virtual_width
			virtual_y_valid: a_virtual_y >= 0 and a_virtual_y <= virtual_height

	item_imp: EV_WIDGET_IMP
			-- item.`implementation'.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)

	key_code_from_key_string (key_string: STRING_GENERAL): INTEGER_32
			-- Key code value from `key_string'
			-- (from EV_KEY_CONSTANTS)
		require -- from EV_KEY_CONSTANTS
			key_string_not_void: key_string /= Void

	key_strings: ARRAY [STRING_32]
			-- String representations of all key codes.
			-- (from EV_KEY_CONSTANTS)

	locked_indexes: ARRAYED_LIST [EV_GRID_LOCKED_I]
			-- Sorted array of all columns and rows currently locked.
			-- (from EV_GRID_I)

	maximum_virtual_x_position: INTEGER_32
			-- Maximum permitted virtual x position based on current dimensions and properties.
			-- Properties that affect this value are is_vertical_scrolling_per_item and
			-- is_vertical_overscroll_enabled.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_non_negative: Result >= 0

	maximum_virtual_y_position: INTEGER_32
			-- Maximum permitted virtual y position based on current properties.
			-- Properties that affect this value are is_horizontal_scrolling_per_item and
			-- is_horizontal_overscroll_enabled.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_non_negative: Result >= 0

	menu: WEL_MENU
			-- Associated menu
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			has_menu: has_menu
		ensure -- from WEL_COMPOSITE_WINDOW
			result_not_void: Result /= Void

	merged_radio_button_groups: ARRAYED_LIST [EV_CONTAINER]
			-- `Result' is all other radio button groups
			-- merged with `Current'.
			-- (from EV_CONTAINER_I)
		ensure -- from EV_CONTAINER_I
			current_not_included: Result /= Void implies not Result.has (interface)

	message_return_value: POINTER
			-- Return value of the window procedure.
			-- (from WEL_RETURN_VALUE)
		require -- from WEL_RETURN_VALUE
			has_return_value: has_return_value

	minimum_height: INTEGER_32
			-- Lower bound on height in pixels.
			-- (from EV_SIZEABLE_CONTAINER_IMP)
		require -- from  EV_POSITIONED_I
			True
		require -- from  EV_SIZEABLE_IMP
			True

	minimum_width: INTEGER_32
			-- Lower bound on width in pixels.
			-- (from EV_SIZEABLE_CONTAINER_IMP)
		require -- from  EV_POSITIONED_I
			True
		require -- from  EV_SIZEABLE_IMP
			True

	not_external_docking_enabled: BOOLEAN
			-- Attribute used for `is_externally_dockable'. We must implement
			-- `is_externally_dockable' this way as we have no easy solution to
			-- assign `True' to `is_externally_dockable'.
			-- (from EV_DOCKABLE_SOURCE_I)

	not_is_external_docking_relative: BOOLEAN
			-- Will dockable dialog displayed when `Current' is docked externally
			-- be displayed relative to parent window of `Current'?
			-- Otherwise displayed as a standard window.
			-- Internal reversed value of is_external_docking_relative as we cannot
			-- easily initialize a BOOLE to True in this case.
			-- (from EV_DOCKABLE_SOURCE_I)

	original_parent_position: INTEGER_32
			-- Original position in parent. Required
			-- to restore widget later.
			-- (from EV_DOCKABLE_SOURCE_I)

	original_pressure: REAL_64
			-- Hold the values passed to start transport so when a transport
			-- actually starts, with real_start_transport,these can be passed
			-- as arguments.
			-- (from EV_SHARED_TRANSPORT_IMP)

	original_x: INTEGER_32
			-- (from EV_SHARED_TRANSPORT_IMP)

	original_x_tilt: REAL_64
			-- Hold the values passed to start transport so when a transport
			-- actually starts, with real_start_transport,these can be passed
			-- as arguments.
			-- (from EV_SHARED_TRANSPORT_IMP)

	original_y: INTEGER_32
			-- (from EV_SHARED_TRANSPORT_IMP)

	original_y_tilt: REAL_64
			-- Hold the values passed to start transport so when a transport
			-- actually starts, with real_start_transport,these can be passed
			-- as arguments.
			-- (from EV_SHARED_TRANSPORT_IMP)

	parent: EV_CONTAINER
			-- Parent of `Current'
			-- (from EV_WIDGET_IMP)
		require -- from  EV_WIDGET_I
			True

	wel_parent: WEL_WINDOW
			-- Parent window
			-- (from WEL_WINDOW)

	pebble: ANY
			-- Data to be transported by pick and drop mechanism.
			-- (from EV_PICK_AND_DROPABLE_I)

	pebble_function: FUNCTION [ANY, TUPLE, ANY]
			-- Returns data to be transported by pick and drop mechanism.
			-- (from EV_PICK_AND_DROPABLE_I)

	pebble_positioning_enabled: BOOLEAN
			-- If `True' then pick and drop start coordinates are
			-- pebble_x_position, pebble_y_position.
			-- If `False' then pick and drop start coordinates are
			-- the pointer coordinates.
			-- (from EV_PICK_AND_DROPABLE_I)

	pebble_x_position: INTEGER_32
			-- Initial x position for pick and drop relative to `Current'.
			-- (from EV_PICK_AND_DROPABLE_I)

	pebble_y_position: INTEGER_32
			-- Initial y position for pick and drop relative to `Current'.
			-- (from EV_PICK_AND_DROPABLE_I)

	pick_actions: EV_PND_START_ACTION_SEQUENCE
			-- Actions to be performed when pebble is picked up.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			True
		ensure -- from EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pick_ended_actions: EV_PND_FINISHED_ACTION_SEQUENCE
			-- Actions to be performed when a transport from `Current' ends.
			-- If transport completed successfully, then event data
			-- is target. If cancelled, then event data is Void.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			True
		ensure -- from EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pixels_displayed_after_final_column: INTEGER_32
			-- Width in pixels displayed after the final column of `Current'.
			-- If `is_horizontal_overdraw_enabled' this is viewable_width less the final column width.
			-- If not `is_horizontal_overdraw_enabled' and is_horizontal_scrolling_per_item this is
			-- the number of pixels required to ensure the first visible column is flush to the left of the
			-- viewable area of `Current'.
			-- (from EV_GRID_I)

	pixels_displayed_after_final_row: INTEGER_32
			-- Height in pixels displayed after the final row of `Current'.
			-- If `is_vertical_overdraw_enabled' this is viewable_height less the final row height.
			-- If not `is_vertical_overdraw_enabled' and is_vertical_scrolling_per_item this is
			-- the number of pixels required to ensure the first visible row is flush to the top of the
			-- viewable area of `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_non_negative: Result >= 0
			result_no_more_than_viewable_height: Result <= viewable_height
			no_rows_contained_implies_result_is_viewable_height: row_count = 0 implies Result = viewable_height
			valid_result_with_rows_with_overdraw_with_fixed_row_height: row_count > 0 and is_row_height_fixed and is_vertical_overscroll_enabled implies Result = viewable_height - row_height
			valid_result_with_rows_when_per_pixel_scrolling_with_no_overdraw: row_count > 0 and is_vertical_scrolling_per_item = False and is_vertical_overscroll_enabled = False implies Result = 0
			valid_result_with_fixed_height_rows_when_per_item_scrolling_and_no_overdraw: row_count > 0 and is_row_height_fixed and is_vertical_scrolling_per_item and is_vertical_scrolling_per_item and row (row_count).virtual_y_position + row_height > viewable_height and not is_vertical_overscroll_enabled implies Result <= row_height

	pointer_position: EV_COORDINATE
			-- Position of the screen pointer relative to `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_WIDGET_I
			True
		ensure -- from EV_WIDGET_I
			result_not_void: Result /= Void

	pointer_style: EV_POINTER_STYLE
			-- Pointer displayed when the pointing device is over `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_DOCKABLE_SOURCE_IMP
			True
		require -- from  EV_WIDGET_I
			True

	real_source: EV_DOCKABLE_SOURCE
			-- `Result' is EV_DOCKABLE_SOURCE which should be
			-- dragged when docking begins on `Current'.
			-- (from EV_DOCKABLE_SOURCE_I)

	real_target: EV_DOCKABLE_TARGET
			-- `Result' is target used during a dockable transport if
			-- mouse pointer is above `Current'.
			-- (from EV_WIDGET_I)

	remove_selection
			-- Ensure that selected_rows and selected_items are empty.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			selected_items_empty: selected_items.is_empty
			selected_rows_empty: selected_rows.is_empty
			selected_columns_empty: selected_columns.is_empty

	row (a_row: INTEGER_32): EV_GRID_ROW
			-- Row at index `a_row'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_row_positive: a_row > 0
			a_row_not_greater_than_row_count: a_row <= row_count
		ensure -- from EV_GRID_I
			row_not_void: Result /= Void

	row_at_virtual_position (a_virtual_y: INTEGER_32; ignore_locked_rows: BOOLEAN): EV_GRID_ROW
			-- Row at virtual y position `a_virtual_y'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			virtual_y_valid: a_virtual_y >= 0 and a_virtual_y <= virtual_height

	row_height: INTEGER_32
			-- Height of all rows within `Current'. Only has an effect on `Current'
			-- while is_row_height_fixed, otherwise the individual height of each
			-- row is used directly.
			-- (from EV_GRID_I)

	screen_x: INTEGER_32
			-- Horizontal offset of `Current' relative to screen
			-- (from EV_WIDGET_IMP)
		require -- from  EV_POSITIONED_I
			True

	screen_y: INTEGER_32
			-- Vertical offset of `Current' relative to screen.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_POSITIONED_I
			True

	scroller: WEL_SCROLLER
			-- Scroller object for processing scroll messages.
			-- (from WEL_COMPOSITE_WINDOW)

	selected_columns: ARRAYED_LIST [EV_GRID_COLUMN]
			-- All columns selected in `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_not_void: Result /= Void

	selected_items: ARRAYED_LIST [EV_GRID_ITEM]
			-- All items selected in `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_not_void: Result /= Void

	selected_rows: ARRAYED_LIST [EV_GRID_ROW]
			-- All rows selected in `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_not_void: Result /= Void

	set_default_key_processing_handler (a_handler: like default_key_processing_handler)
			-- Assign default_key_processing_handler to `a_handler'.
			-- (from EV_GRID_I)
		require -- from  EV_WIDGET_I
			True

	string_size (s: STRING_GENERAL; f: EV_FONT; tuple: TUPLE [INTEGER_32, INTEGER_32])
			-- `Result' contains width and height required to
			-- fully display string `s' in font `f'.
			-- This should be used instead of string_size from EV_FONT
			-- as we can perform an optimized implementation which does
			-- not include the horizontal overhang or underhang. This can
			-- make quite a difference on certain platforms.
		require -- from EV_GRID_I
			s_not_void: s /= Void
			f_not_void: f /= Void

	subrow_indent: INTEGER_32
			-- Number of pixels horizontally by which each subrow is indented
			-- from its `parent_row'.
			-- (from EV_GRID_I)

	system_menu: WEL_MENU
			-- Associated system menu
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			has_system_menu: has_system_menu
		ensure -- from WEL_COMPOSITE_WINDOW
			result_not_void: Result /= Void

	tooltip: STRING_32
			-- Tooltip displayed on `Current'.
			-- (from EV_GRID_I)

	top_level_window: EV_WINDOW
			-- Top level window that contains `Current'.
			-- (from EV_WIDGET_IMP)

	transport_executing: BOOLEAN
			-- Is a pick and drop or drag and drop currently
			-- being executed?
			-- (from EV_PICK_AND_DROPABLE_IMP)

	unlock_column (a_column: EV_GRID_COLUMN_I)
			-- Ensure column `a_column' is unlocked.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			column_not_locked: not a_column.is_locked

	unlock_row (a_row: EV_GRID_ROW_I)
			-- Ensure row `a_row' is unlocked.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			a_row_not_locked: not a_row.is_locked

	viewable_height: INTEGER_32
			-- Height of `Current' available to view displayed items. Does
			-- not include width of any displayed scroll bars and/or header if shown.
			-- Is equivalent to `viewport.height' and by storing this, multiple queries are far quicker
			-- as the grid is only resized periodically and we no longer have to call EiffelVision for the value.
			-- (from EV_GRID_I)

	viewable_width: INTEGER_32
			-- Width of `Current' available to view displayed items. Does
			-- not include width of any displayed scroll bars. Is equivalent to `viewport.width' and
			-- by storing this, multiple queries are far quicker as the grid is only resized periodically
			-- and we no longer have to call EiffelVision for the value.
			-- (from EV_GRID_I)

	viewable_x_offset: INTEGER_32
			-- Horizontal distance in pixels from the left edge of `Current' to
			-- the left edge of the viewable area (defined by viewable_width, viewable_height)
			-- in which all content is displayed.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			viewable_x_offset_valid: Result >= 0 and Result <= width

	viewable_y_offset: INTEGER_32
			-- Vertical distance in pixels from the top edge of `Current' to
			-- the top edge of the viewable area (defined by viewable_width, viewable_height)
			-- in which all content is displayed.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			viewable_y_offset_valid: Result >= 0 and Result <= height

	virtual_height: INTEGER_32
			-- Height of virtual area in pixels.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_non_negative: Result >= 0

	virtual_width: INTEGER_32
			-- Width of virtual area in pixels.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_non_negative: Result >= 0

	virtual_x_position: INTEGER_32
			-- Horizontal offset of viewable area in relation to the left edge of
			-- the virtual area in pixels.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			valid_result: Result >= 0 and Result <= maximum_virtual_x_position

	virtual_y_position: INTEGER_32
			-- Vertical offset of viewable area in relation to the top edge of
			-- the virtual area in pixels.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			valid_result: Result >= 0 and Result <= maximum_virtual_y_position

	vk_0: INTEGER_32 is 48
			-- (from WEL_VK_CONSTANTS)

	vk_1: INTEGER_32 is 49
			-- (from WEL_VK_CONSTANTS)

	vk_2: INTEGER_32 is 50
			-- (from WEL_VK_CONSTANTS)

	vk_3: INTEGER_32 is 51
			-- (from WEL_VK_CONSTANTS)

	vk_4: INTEGER_32 is 52
			-- (from WEL_VK_CONSTANTS)

	vk_5: INTEGER_32 is 53
			-- (from WEL_VK_CONSTANTS)

	vk_6: INTEGER_32 is 54
			-- (from WEL_VK_CONSTANTS)

	vk_7: INTEGER_32 is 55
			-- (from WEL_VK_CONSTANTS)

	vk_8: INTEGER_32 is 56
			-- (from WEL_VK_CONSTANTS)

	vk_9: INTEGER_32 is 57
			-- Vk_a thru Vk_z are the same as their ASCII equivalents: 'A' thru 'Z'.
			-- (from WEL_VK_CONSTANTS)

	vk_a: INTEGER_32 is 65
			-- (from WEL_VK_CONSTANTS)

	vk_add: INTEGER_32 is 107
			-- Declared in Windows as VK_ADD
			-- (from WEL_VK_CONSTANTS)

	vk_alt: INTEGER_32 is 18
			-- Declared in Windows as VK_MENU
			-- Was declared in WEL_VK_CONSTANTS as synonym of Vk_menu.
			-- (from WEL_VK_CONSTANTS)

	vk_apps: INTEGER_32 is 93
			-- Declared in Windows as VK_APPS
			-- Vk_0 thru Vk_9 are the same as their ASCII equivalents: '0' thru '9'.
			-- (from WEL_VK_CONSTANTS)

	vk_b: INTEGER_32 is 66
			-- (from WEL_VK_CONSTANTS)

	vk_back: INTEGER_32 is 8
			-- Declared in Windows as VK_BACK
			-- (from WEL_VK_CONSTANTS)

	vk_c: INTEGER_32 is 67
			-- (from WEL_VK_CONSTANTS)

	vk_cancel: INTEGER_32 is 3
			-- Declared in Windows as VK_CANCEL
			-- (from WEL_VK_CONSTANTS)

	vk_capital: INTEGER_32 is 20
			-- Declared in Windows as VK_CAPITAL
			-- (from WEL_VK_CONSTANTS)

	vk_clear: INTEGER_32 is 12
			-- Declared in Windows as VK_CLEAR
			-- (from WEL_VK_CONSTANTS)

	vk_control: INTEGER_32 is 17
			-- Declared in Windows as VK_CONTROL
			-- (from WEL_VK_CONSTANTS)

	vk_d: INTEGER_32 is 68
			-- (from WEL_VK_CONSTANTS)

	vk_decimal: INTEGER_32 is 110
			-- Declared in Windows as VK_DECIMAL
			-- (from WEL_VK_CONSTANTS)

	vk_delete: INTEGER_32 is 46
			-- Declared in Windows as VK_DELETE
			-- (from WEL_VK_CONSTANTS)

	vk_divide: INTEGER_32 is 111
			-- Declared in Windows as VK_DIVIDE
			-- (from WEL_VK_CONSTANTS)

	vk_down: INTEGER_32 is 40
			-- Declared in Windows as VK_DOWN
			-- (from WEL_VK_CONSTANTS)

	vk_e: INTEGER_32 is 69
			-- (from WEL_VK_CONSTANTS)

	vk_end: INTEGER_32 is 35
			-- Declared in Windows as VK_END
			-- (from WEL_VK_CONSTANTS)

	vk_escape: INTEGER_32 is 27
			-- Declared in Windows as VK_ESCAPE
			-- (from WEL_VK_CONSTANTS)

	vk_execute: INTEGER_32 is 43
			-- Declared in Windows as VK_EXECUTE
			-- (from WEL_VK_CONSTANTS)

	vk_f: INTEGER_32 is 70
			-- (from WEL_VK_CONSTANTS)

	vk_f1: INTEGER_32 is 112
			-- Declared in Windows as VK_F1
			-- (from WEL_VK_CONSTANTS)

	vk_f10: INTEGER_32 is 121
			-- Declared in Windows as VK_F10
			-- (from WEL_VK_CONSTANTS)

	vk_f11: INTEGER_32 is 122
			-- Declared in Windows as VK_F11
			-- (from WEL_VK_CONSTANTS)

	vk_f12: INTEGER_32 is 123
			-- Declared in Windows as VK_F12
			-- (from WEL_VK_CONSTANTS)

	vk_f13: INTEGER_32 is 124
			-- Declared in Windows as VK_F13
			-- (from WEL_VK_CONSTANTS)

	vk_f14: INTEGER_32 is 125
			-- Declared in Windows as VK_F14
			-- (from WEL_VK_CONSTANTS)

	vk_f15: INTEGER_32 is 126
			-- Declared in Windows as VK_F15
			-- (from WEL_VK_CONSTANTS)

	vk_f16: INTEGER_32 is 127
			-- Declared in Windows as VK_F16
			-- (from WEL_VK_CONSTANTS)

	vk_f17: INTEGER_32 is 128
			-- Declared in Windows as VK_F17
			-- (from WEL_VK_CONSTANTS)

	vk_f18: INTEGER_32 is 129
			-- Declared in Windows as VK_F18
			-- (from WEL_VK_CONSTANTS)

	vk_f19: INTEGER_32 is 130
			-- Declared in Windows as VK_F19
			-- (from WEL_VK_CONSTANTS)

	vk_f2: INTEGER_32 is 113
			-- Declared in Windows as VK_F2
			-- (from WEL_VK_CONSTANTS)

	vk_f20: INTEGER_32 is 131
			-- Declared in Windows as VK_F20
			-- (from WEL_VK_CONSTANTS)

	vk_f21: INTEGER_32 is 132
			-- Declared in Windows as VK_F21
			-- (from WEL_VK_CONSTANTS)

	vk_f22: INTEGER_32 is 133
			-- Declared in Windows as VK_F22
			-- (from WEL_VK_CONSTANTS)

	vk_f23: INTEGER_32 is 134
			-- Declared in Windows as VK_F23
			-- (from WEL_VK_CONSTANTS)

	vk_f24: INTEGER_32 is 135
			-- Declared in Windows as VK_F24
			-- (from WEL_VK_CONSTANTS)

	vk_f3: INTEGER_32 is 114
			-- Declared in Windows as VK_F3
			-- (from WEL_VK_CONSTANTS)

	vk_f4: INTEGER_32 is 115
			-- Declared in Windows as VK_F4
			-- (from WEL_VK_CONSTANTS)

	vk_f5: INTEGER_32 is 116
			-- Declared in Windows as VK_F5
			-- (from WEL_VK_CONSTANTS)

	vk_f6: INTEGER_32 is 117
			-- Declared in Windows as VK_F6
			-- (from WEL_VK_CONSTANTS)

	vk_f7: INTEGER_32 is 118
			-- Declared in Windows as VK_F7
			-- (from WEL_VK_CONSTANTS)

	vk_f8: INTEGER_32 is 119
			-- Declared in Windows as VK_F8
			-- (from WEL_VK_CONSTANTS)

	vk_f9: INTEGER_32 is 120
			-- Declared in Windows as VK_F9
			-- (from WEL_VK_CONSTANTS)

	vk_g: INTEGER_32 is 71
			-- (from WEL_VK_CONSTANTS)

	vk_h: INTEGER_32 is 72
			-- (from WEL_VK_CONSTANTS)

	vk_help: INTEGER_32 is 47
			-- Declared in Windows as VK_HELP
			-- (from WEL_VK_CONSTANTS)

	vk_home: INTEGER_32 is 36
			-- Declared in Windows as VK_HOME
			-- (from WEL_VK_CONSTANTS)

	vk_i: INTEGER_32 is 73
			-- (from WEL_VK_CONSTANTS)

	vk_insert: INTEGER_32 is 45
			-- Declared in Windows as VK_INSERT
			-- (from WEL_VK_CONSTANTS)

	vk_j: INTEGER_32 is 74
			-- (from WEL_VK_CONSTANTS)

	vk_k: INTEGER_32 is 75
			-- (from WEL_VK_CONSTANTS)

	vk_l: INTEGER_32 is 76
			-- (from WEL_VK_CONSTANTS)

	vk_lbutton: INTEGER_32 is 1
			-- Declared in Windows as VK_LBUTTON
			-- (from WEL_VK_CONSTANTS)

	vk_lcontrol: INTEGER_32 is 162
			-- Declared in Windows as VK_LCONTROL
			-- (from WEL_VK_CONSTANTS)

	vk_left: INTEGER_32 is 37
			-- Declared in Windows as VK_LEFT
			-- (from WEL_VK_CONSTANTS)

	vk_lmenu: INTEGER_32 is 164
			-- Declared in Windows as VK_LMENU
			-- (from WEL_VK_CONSTANTS)

	vk_lshift: INTEGER_32 is 160
			-- Declared in Windows as VK_LSHIFT
			-- (from WEL_VK_CONSTANTS)

	vk_m: INTEGER_32 is 77
			-- (from WEL_VK_CONSTANTS)

	vk_mbutton: INTEGER_32 is 4
			-- Declared in Windows as VK_MBUTTON
			-- (from WEL_VK_CONSTANTS)

	vk_menu: INTEGER_32 is 18
			-- Declared in Windows as VK_MENU
			-- Was declared in WEL_VK_CONSTANTS as synonym of Vk_alt.
			-- (from WEL_VK_CONSTANTS)

	vk_multiply: INTEGER_32 is 106
			-- Declared in Windows as VK_MULTIPLY
			-- (from WEL_VK_CONSTANTS)

	vk_n: INTEGER_32 is 78
			-- (from WEL_VK_CONSTANTS)

	vk_next: INTEGER_32 is 34
			-- Declared in Windows as VK_NEXT
			-- (from WEL_VK_CONSTANTS)

	vk_numlock: INTEGER_32 is 144
			-- Declared in Windows as VK_NUMLOCK
			-- (from WEL_VK_CONSTANTS)

	vk_numpad0: INTEGER_32 is 96
			-- Declared in Windows as VK_NUMPAD0
			-- (from WEL_VK_CONSTANTS)

	vk_numpad1: INTEGER_32 is 97
			-- Declared in Windows as VK_NUMPAD1
			-- (from WEL_VK_CONSTANTS)

	vk_numpad2: INTEGER_32 is 98
			-- Declared in Windows as VK_NUMPAD2
			-- (from WEL_VK_CONSTANTS)

	vk_numpad3: INTEGER_32 is 99
			-- Declared in Windows as VK_NUMPAD3
			-- (from WEL_VK_CONSTANTS)

	vk_numpad4: INTEGER_32 is 100
			-- Declared in Windows as VK_NUMPAD4
			-- (from WEL_VK_CONSTANTS)

	vk_numpad5: INTEGER_32 is 101
			-- Declared in Windows as VK_NUMPAD5
			-- (from WEL_VK_CONSTANTS)

	vk_numpad6: INTEGER_32 is 102
			-- Declared in Windows as VK_NUMPAD6
			-- (from WEL_VK_CONSTANTS)

	vk_numpad7: INTEGER_32 is 103
			-- Declared in Windows as VK_NUMPAD7
			-- (from WEL_VK_CONSTANTS)

	vk_numpad8: INTEGER_32 is 104
			-- Declared in Windows as VK_NUMPAD8
			-- (from WEL_VK_CONSTANTS)

	vk_numpad9: INTEGER_32 is 105
			-- Declared in Windows as VK_NUMPAD9
			-- (from WEL_VK_CONSTANTS)

	vk_o: INTEGER_32 is 79
			-- (from WEL_VK_CONSTANTS)

	vk_p: INTEGER_32 is 80
			-- (from WEL_VK_CONSTANTS)

	vk_pause: INTEGER_32 is 19
			-- Declared in Windows as VK_PAUSE
			-- (from WEL_VK_CONSTANTS)

	vk_print: INTEGER_32 is 42
			-- Declared in Windows as VK_PRINT
			-- (from WEL_VK_CONSTANTS)

	vk_prior: INTEGER_32 is 33
			-- Declared in Windows as VK_PRIOR
			-- (from WEL_VK_CONSTANTS)

	vk_q: INTEGER_32 is 81
			-- (from WEL_VK_CONSTANTS)

	vk_r: INTEGER_32 is 82
			-- (from WEL_VK_CONSTANTS)

	vk_rbutton: INTEGER_32 is 2
			-- Declared in Windows as VK_RBUTTON
			-- (from WEL_VK_CONSTANTS)

	vk_rcontrol: INTEGER_32 is 163
			-- Declared in Windows as VK_RCONTROL
			-- (from WEL_VK_CONSTANTS)

	vk_return: INTEGER_32 is 13
			-- Declared in Windows as VK_RETURN
			-- (from WEL_VK_CONSTANTS)

	vk_right: INTEGER_32 is 39
			-- Declared in Windows as VK_RIGHT
			-- (from WEL_VK_CONSTANTS)

	vk_rmenu: INTEGER_32 is 165
			-- Declared in Windows as VK_RMENU
			-- (from WEL_VK_CONSTANTS)

	vk_rshift: INTEGER_32 is 161
			-- Declared in Windows as VK_RSHIFT
			-- (from WEL_VK_CONSTANTS)

	vk_s: INTEGER_32 is 83
			-- (from WEL_VK_CONSTANTS)

	vk_scroll: INTEGER_32 is 145
			-- Declared in Windows as VK_SCROLL
			-- (from WEL_VK_CONSTANTS)

	vk_select: INTEGER_32 is 41
			-- Declared in Windows as VK_SELECT
			-- (from WEL_VK_CONSTANTS)

	vk_separator: INTEGER_32 is 108
			-- Declared in Windows as VK_SEPARATOR
			-- (from WEL_VK_CONSTANTS)

	vk_shift: INTEGER_32 is 16
			-- Declared in Windows as VK_SHIFT
			-- (from WEL_VK_CONSTANTS)

	vk_snapshot: INTEGER_32 is 44
			-- Declared in Windows as VK_SNAPSHOT
			-- (from WEL_VK_CONSTANTS)

	vk_space: INTEGER_32 is 32
			-- Declared in Windows as VK_SPACE
			-- (from WEL_VK_CONSTANTS)

	vk_subtract: INTEGER_32 is 109
			-- Declared in Windows as VK_SUBTRACT
			-- (from WEL_VK_CONSTANTS)

	vk_t: INTEGER_32 is 84
			-- (from WEL_VK_CONSTANTS)

	vk_tab: INTEGER_32 is 9
			-- Declared in Windows as VK_TAB
			-- (from WEL_VK_CONSTANTS)

	vk_u: INTEGER_32 is 85
			-- (from WEL_VK_CONSTANTS)

	vk_up: INTEGER_32 is 38
			-- Declared in Windows as VK_UP
			-- (from WEL_VK_CONSTANTS)

	vk_v: INTEGER_32 is 86
			-- (from WEL_VK_CONSTANTS)

	vk_w: INTEGER_32 is 87
			-- (from WEL_VK_CONSTANTS)

	vk_x: INTEGER_32 is 88
			-- (from WEL_VK_CONSTANTS)

	vk_y: INTEGER_32 is 89
			-- (from WEL_VK_CONSTANTS)

	vk_z: INTEGER_32 is 90
			-- (from WEL_VK_CONSTANTS)

	widget_imp_at_pointer_position: EV_WIDGET_IMP
			-- `Result' is implementation of widget at current
			-- pointer position or Void if none.
			-- (from EV_SHARED_TRANSPORT_IMP)
		require -- from  EV_DOCKABLE_SOURCE_I
			True

	width: INTEGER_32
			-- Width of `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from  EV_POSITIONED_I
			True

	x_position: INTEGER_32
			-- `Result' is x_position of `Current' in pixels.
			-- If wel_parent not Void then `Result' is relative to wel_parent else
			-- `Result' is relative to screen.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from  EV_POSITIONED_I
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			wel_parent = Void implies Result = absolute_x

	y_position: INTEGER_32
			-- `Result' is x_position of `Current' in pixels.
			-- If wel_parent not Void then `Result' is relative to wel_parent else
			-- `Result' is relative to screen.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from  EV_POSITIONED_I
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			wel_parent = Void implies Result = absolute_y
	
feature -- Comparison

	frozen deep_equal (some: ANY; other: like arg #1): BOOLEAN
			-- Are `some' and `other' either both void
			-- or attached to isomorphic object structures?
			-- (from ANY)
		ensure -- from ANY
			shallow_implies_deep: standard_equal (some, other) implies Result
			both_or_none_void: (some = Void) implies (Result = (other = Void))
			same_type: (Result and (some /= Void)) implies some.same_type (other)
			symmetric: Result implies deep_equal (other, some)

	frozen equal (some: ANY; other: like arg #1): BOOLEAN
			-- Are `some' and `other' either both void or attached
			-- to objects considered equal?
			-- (from ANY)
		ensure -- from ANY
			definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.is_equal (other))

	is_equal (other: like Current): BOOLEAN
			-- Is `other' attached to an object considered
			-- equal to current object?
			-- (from ANY)
		require -- from ANY
			other_not_void: other /= Void
		ensure -- from ANY
			symmetric: Result implies other.is_equal (Current)
			consistent: standard_is_equal (other) implies Result

	frozen standard_equal (some: ANY; other: like arg #1): BOOLEAN
			-- Are `some' and `other' either both void or attached to
			-- field-by-field identical objects of the same type?
			-- Always uses default object comparison criterion.
			-- (from ANY)
		ensure -- from ANY
			definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.standard_is_equal (other))

	frozen standard_is_equal (other: like Current): BOOLEAN
			-- Is `other' attached to an object of the same type
			-- as current object, and field-by-field identical to it?
			-- (from ANY)
		require -- from ANY
			other_not_void: other /= Void
		ensure -- from ANY
			same_type: Result implies same_type (other)
			symmetric: Result implies other.standard_is_equal (Current)
	
feature -- Status report

	absolute_x: INTEGER_32
			-- Absolute x position
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			Result = window_rect.x

	absolute_y: INTEGER_32
			-- Absolute y position
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			Result = window_rect.y

	are_columns_drawn_above_rows: BOOLEAN
			-- For drawing purposes, are columns drawn above rows?
			-- If `True', for all cells within `Current' whose column and row have non-Void
			-- foreground or background colors, the column colors are given priority.
			-- If `False', the colors of the row are given priority.
			-- (from EV_GRID_I)

	captured_window: WEL_WINDOW
			-- Current window which has been captured.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			window_captured: window_captured

	child_window_from_point (point: WEL_POINT): POINTER
			-- `Result' is pointer to child window as position `point'.
			-- Only checks children and their children and returns a child even
			-- if over a HTTRANSPARENT area of the child. Corresponds to
			-- the ChildWindowFromPoint Windows API call.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			point_not_void: point /= Void

	client_rect: WEL_RECT
			-- Client rectangle
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			result_not_void: Result /= Void

	closeable: BOOLEAN
			-- Can the user close the window?
			-- Yes by default.
			-- (from WEL_COMPOSITE_WINDOW)

	closest_dockable_target: EV_DOCKABLE_TARGET
			-- `Result' is first dockable target that is_dockable found by recursively
			-- searching up through the parenting structure from the widget
			-- currently underneath the pointer position.
			-- `Result' will be `Void' if a dockable target is not found.
			-- (from EV_DOCKABLE_SOURCE_I)
		ensure -- from EV_DOCKABLE_SOURCE_I
			result_is_dockable: Result /= Void implies Result.is_docking_enabled

	column_displayed (a_column: INTEGER_32): BOOLEAN
			-- May column `a_column' be displayed when `Current' is?
			-- Will return False if hide has been called on column `a_column'.
			-- A value of True does not signify that column `a_column' is visible on screen at that particular time.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_within_bounds: a_column > 0 and a_column <= column_count

	command (message: INTEGER_32): WEL_COMMAND
			-- Command associated to `message'
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			positive_message: message >= 0
			command_exists: command_exists (message)
		ensure -- from WEL_WINDOW
			result_not_void: Result /= Void

	command_argument (message: INTEGER_32): ANY
			-- Command argument associated to `message'
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			positive_message: message >= 0
			command_exists: command_exists (message)

	command_exists (message: INTEGER_32): BOOLEAN
			-- Does a command associated to `message' exist?
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			positive_message: message >= 0

	commands_enabled: BOOLEAN
			-- Is the commands execution enabled?
			-- (from WEL_WINDOW)

	conforms_to (other: ANY): BOOLEAN
			-- Does type of current object conform to type
			-- of `other' (as per Eiffel: The Language, chapter 13)?
			-- (from ANY)
		require -- from ANY
			other_not_void: other /= Void

	destroyed: BOOLEAN
			-- Is `Current' destroyed ?
			-- (from EV_WIDGET_IMP)

	disable_capture
			-- Release the user input.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_I
			True
		require -- from  EV_DOCKABLE_SOURCE_IMP
			True

	displayed_background_color (a_column, a_row: INTEGER_32): EV_COLOR
			-- `Result' is background color to be displayed for item at position `a_column', `a_row'
			-- on parts of the cell space in which the item is not displayed. i.e. for the background
			-- area of a tree structure.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			valid_column: a_column >= 1 and a_column <= column_count
			valid_row: a_row >= 1 and a_row <= row_count
		ensure -- from EV_GRID_I
			result_not_void: Result /= Void

	drawables_have_focus: BOOLEAN
			-- Does drawable or any of the drawables representing locked rows currently
			-- have the focus? If `False' then selection should be grayed.
			-- (from EV_GRID_I)

	enable_capture
			-- Grab the user input.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_I
			True

	is_sensitive: BOOLEAN
			-- Is the window enabled for mouse and keyboard input?
			-- (from WEL_WINDOW)
		require -- from  EV_SENSITIVE_I
			True
		require -- from WEL_WINDOW
			exists: exists

	ex_style: INTEGER_32
			-- Window ex_style
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	exists: BOOLEAN
			-- Does the item exist?
			-- (from WEL_ANY)
		require -- from  EV_WIDGET_IMP
			True
		ensure -- from WEL_ANY
			Result = (wel_item /= default_pointer)

	first_visible_column: EV_GRID_COLUMN
			-- First column visible in `Current' or Void if column_count = 0
			-- If is_horizontal_scrolling_per_item, the first visible column may be only partially visible.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			is_displayed: is_displayed
		ensure -- from EV_GRID_I
			has_columns_implies_result_not_void: column_count > 0 implies Result /= Void
			no_columns_implies_result_void: column_count = 0 implies Result = Void

	first_visible_row: EV_GRID_ROW
			-- First row visible in `Current' or Void if row_count = 0
			-- If is_vertical_scrolling_per_item, the first visible row may be only partially visible.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			is_displayed: is_displayed
		ensure -- from EV_GRID_I
			has_rows_implies_result_not_void: row_count > 0 implies Result /= Void
			no_rows_implies_result_void: row_count = 0 implies Result = Void

	focused_selection_color: EV_COLOR
			-- Color used to show selection within items while focused.
			-- (from EV_GRID_I)

	focused_selection_text_color: EV_COLOR
			-- Color used to show selection within items while focused.
			-- (from EV_GRID_I)

	focused_window: WEL_WINDOW
			-- Current window which has the focus.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	foreground_window: WEL_WINDOW
			-- Foreground window (window with focus)
			-- (from WEL_WINDOWS_ROUTINES)

	get_next_target (a_widget: EV_WIDGET): EV_DOCKABLE_TARGET
			-- `Result' is next dockable target that is is_dockable found by
			-- recursively seraching up the parenting structure from `current_target'.
			-- `Result' will be `Void' if none.
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			a_widget_not_void: a_widget /= Void
		ensure -- from EV_DOCKABLE_SOURCE_I
			result_is_dockable: Result /= Void implies Result.is_docking_enabled

	wel_has_capture: BOOLEAN
			-- Does this window have the capture?
			-- (from WEL_WINDOW)
		require -- from  EV_DOCKABLE_SOURCE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	has_heavy_capture: BOOLEAN
			-- Does this window have the heavy capture?
			-- (from WEL_WINDOW)

	has_horizontal_scroll_bar: BOOLEAN
			-- Does this window have a horizontal scroll bar?
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	has_menu: BOOLEAN
			-- Does the window have a menu?
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists

	has_system_font: BOOLEAN
			-- Does the control use the system font?
			-- (from WEL_CONTROL_WINDOW)
		require -- from WEL_CONTROL_WINDOW
			exists: exists

	has_system_menu: BOOLEAN
			-- Does the window have a system menu?
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists

	has_vertical_scroll_bar: BOOLEAN
			-- Does this window have a vertical scroll bar?
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	heavy_capture_activated: BOOLEAN
			-- Is the heavy capture currently running?
			-- (i.e. is there a window in the current program
			-- with has_heavy_capture to True?)
			-- (from WEL_WINDOW)

	wel_height: INTEGER_32
			-- Window height
			-- (from WEL_WINDOW)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	horizontal_position: INTEGER_32
			-- Current position of the horizontal scroll box
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
		ensure -- from WEL_COMPOSITE_WINDOW
			result_small_enough: Result <= maximal_horizontal_position
			result_large_enough: Result >= minimal_horizontal_position

	internal_non_sensitive: BOOLEAN
			-- Is `Current' not sensitive to input as seen
			-- from interface?
			-- (from EV_SENSITIVE_I)

	is_docking_enabled: BOOLEAN
			-- May `Current' be docked to?
			-- (from EV_DOCKABLE_TARGET_I)

	is_in_min_height: BOOLEAN
			-- Is current recomputing its minimum height?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	is_in_min_width: BOOLEAN
			-- Is current recomputing its minimum width?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	is_in_notify: BOOLEAN_REF
			-- Is current already notified from a change in its children?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	is_inside: BOOLEAN
			-- Is the current window inside another window?
			-- (from WEL_WINDOW)

	is_minheight_recomputation_needed: BOOLEAN
			-- Does minimum height need to be recomputed?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	is_minwidth_recomputation_needed: BOOLEAN
			-- Does minimum width need to be recomputed?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	is_multiple_item_selection_enabled: BOOLEAN
			-- Does clicking or keyboard navigating via arrow keys select an item, with multiple
			-- item selection permitted via the use of Ctrl and Shift keys?
			-- (from EV_GRID_I)

	is_multiple_row_selection_enabled: BOOLEAN
			-- Does clicking or keyboard navigating via arrow keys select a row, with multiple
			-- row selection permitted via the use of Ctrl and Shift keys?
			-- (from EV_GRID_I)

	is_multiple_selection_enabled: BOOLEAN
			-- Is `Current' in either multiple item or row selection mode?
			-- (from EV_GRID_I)

	is_notify_originator: BOOLEAN
			-- Did Current launch `notification process'?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	is_row_selection_enabled: BOOLEAN
			-- Is `Current' in either single or multiple row selection mode?
			-- (from EV_GRID_I)

	is_selection_keyboard_handling_enabled: BOOLEAN
			-- May an item be selected via the keyboard?
			-- (from EV_GRID_I)

	is_selection_on_click_enabled: BOOLEAN
			-- Will an item be selected if clicked upon by the user?
			-- (from EV_GRID_I)

	is_selection_on_single_button_click_enabled: BOOLEAN
			-- Will an item be selected if clicked upon via mouse button `1' only.
			-- Mouse buttons `1' and `2' will leave selection unchanged.
			-- (from EV_GRID_I)

	is_show_requested: BOOLEAN
			-- Is `Current' displayed in its parent?
			-- (from EV_WIDGET_IMP)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from  EV_WIDGET_I
			True

	is_single_item_selection_enabled: BOOLEAN
			-- Does clicking or keyboard navigating via arrow keys select an item, unselecting
			-- any previously selected items?
			-- (from EV_GRID_I)

	is_single_row_selection_enabled: BOOLEAN
			-- Does clicking or keyboard navigating via arrow keys select a row, unselecting
			-- any previously selected row?
			-- (from EV_GRID_I)

	is_transport_enabled: BOOLEAN
			-- Is the transport mechanism enabled?
			-- (from EV_PICK_AND_DROPABLE_I)

	is_tree_enabled: BOOLEAN
			-- Is tree functionality enabled?
			-- (from EV_GRID_I)

	is_window (hwnd: POINTER): BOOLEAN
			-- Does `hwnd' point to a valid Window?
			-- (from WEL_WINDOWS_ROUTINES)

	key_down (virtual_key: INTEGER_32): BOOLEAN
			--Is 'virtual' key pressed
			-- (from WEL_WINDOWS_ROUTINES)

	key_locked (virtual_key: INTEGER_32): BOOLEAN
			--Is 'virtual' key locked
			-- (from WEL_WINDOWS_ROUTINES)

	key_to_string (key_data: INTEGER_32): STRING_32
			-- Give the string associated with the key given by
			-- `virtual_key'.
			-- (from WEL_WINDOWS_ROUTINES)

	last_visible_column: EV_GRID_COLUMN
			-- Last column visible in `Current' or Void if column_count = 0
			-- The last visible column may be only partially visible.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			is_displayed: is_displayed
		ensure -- from EV_GRID_I
			has_columns_implies_result_not_void: column_count > 0 implies Result /= Void
			no_columns_implies_result_void: column_count = 0 implies Result = Void

	last_visible_row: EV_GRID_ROW
			-- Last row visible in `Current' or Void if row_count = 0
			-- The last visible row may be only partially visible.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			is_displayed: is_displayed
		ensure -- from EV_GRID_I
			has_rows_implies_result_not_void: row_count > 0 implies Result /= Void
			no_rows_implies_result_void: row_count = 0 implies Result = Void

	managed: BOOLEAN is True
			-- All widgets are managed.
			-- (from EV_WIDGET_IMP)

	maximal_height: INTEGER_32
			-- Maximal height allowed for the window
			-- (from WEL_CONTROL_WINDOW)
		ensure -- from WEL_WINDOW
			result_large_enough: Result >= minimal_height

	maximal_horizontal_position: INTEGER_32
			-- Maxium position of the horizontal scroll box
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
		ensure -- from WEL_COMPOSITE_WINDOW
			result_large_enough: Result >= minimal_horizontal_position

	maximal_vertical_position: INTEGER_32
			-- Maxium position of the vertical scroll box
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
		ensure -- from WEL_COMPOSITE_WINDOW
			result_large_enough: Result >= minimal_vertical_position

	maximal_width: INTEGER_32
			-- Maximal width allowed for the window
			-- (from WEL_CONTROL_WINDOW)
		ensure -- from WEL_WINDOW
			result_large_enough: Result >= minimal_width

	maximized: BOOLEAN
			-- Is the window maximized?
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	minimal_height: INTEGER_32
			-- Minimal height allowed for the window
			-- (from WEL_CONTROL_WINDOW)
		require -- from  WEL_WINDOW
			True
		ensure -- from WEL_WINDOW
			positive_result: Result >= 0
			result_small_enough: Result <= maximal_height

	minimal_horizontal_position: INTEGER_32
			-- Minimum position of the horizontal scroll box
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
		ensure -- from WEL_COMPOSITE_WINDOW
			result_small_enough: Result <= maximal_horizontal_position

	minimal_vertical_position: INTEGER_32
			-- Minimum position of the vertical scroll box
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
		ensure -- from WEL_COMPOSITE_WINDOW
			result_small_enough: Result <= maximal_vertical_position

	minimal_width: INTEGER_32
			-- Minimal width allowed for the window
			-- (from WEL_CONTROL_WINDOW)
		require -- from  WEL_WINDOW
			True
		ensure -- from WEL_WINDOW
			positive_result: Result >= 0
			result_small_enough: Result <= maximal_width

	minimized: BOOLEAN
			-- Is the window minimized?
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	mode_is_drag_and_drop: BOOLEAN
			-- Is the transport mechanism drag and drop?
			-- (from EV_PICK_AND_DROPABLE_I)

	mode_is_pick_and_drop: BOOLEAN
			-- Is the transport mechanism pick and drop?
			-- (from EV_PICK_AND_DROPABLE_I)

	mode_is_target_menu: BOOLEAN
			-- Is the transport mechanism target menu?
			-- (from EV_PICK_AND_DROPABLE_I)

	non_focused_selection_color: EV_COLOR
			-- Color used to show selection within items while not focused.
			-- (from EV_GRID_I)

	non_focused_selection_text_color: EV_COLOR
			-- Color used for text of selected items while not focused.
			-- (from EV_GRID_I)

	placement: WEL_WINDOW_PLACEMENT
			-- Window placement information
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			result_not_void: Result /= Void

	same_type (other: ANY): BOOLEAN
			-- Is type of current object identical to type of `other'?
			-- (from ANY)
		require -- from ANY
			other_not_void: other /= Void
		ensure -- from ANY
			definition: Result = (conforms_to (other) and other.conforms_to (Current))

	shared: BOOLEAN
			-- Is item shared by another object?
			-- If False (by default), item will
			-- be destroyed by destroy_item.
			-- If True, item will not be destroyed.
			-- (from WEL_ANY)

	is_displayed: BOOLEAN
			-- Is the window shown?
			-- (from WEL_WINDOW)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from  EV_WIDGET_I
			True
		require -- from WEL_WINDOW
			exists: exists

	style: INTEGER_32
			-- Window style
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	system_directory: STRING_32
			-- Path of the Windows system directory
			-- (from WEL_WINDOWS_ROUTINES)
		ensure -- from WEL_WINDOWS_ROUTINES
			result_not_void: Result /= Void

	wel_text: STRING_32
			-- Window text
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			result_not_void: Result /= Void

	text_length: INTEGER_32
			-- Text length
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			positive_result: Result >= 0

	tick_count: INTEGER_32
			-- Number of milliseconds that have
			-- elapsed since Windows was started.
			-- (from WEL_WINDOWS_ROUTINES)
		ensure -- from WEL_WINDOWS_ROUTINES
			positive_result: Result >= 0

	tree_node_connector_color: EV_COLOR
			-- Color of connectors drawn between tree nodes within `Current'.
			-- (from EV_GRID_I)

	user_is_sensitive: BOOLEAN
			-- Is the object sensitive to user input.
			-- (from EV_SENSITIVE_I)

	vertical_position: INTEGER_32
			-- Current position of the vertical scroll box
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
		ensure -- from WEL_COMPOSITE_WINDOW
			result_small_enough: Result <= maximal_vertical_position
			result_large_enough: Result >= minimal_vertical_position

	veto_dock_function: FUNCTION [ANY, TUPLE [EV_DOCKABLE_SOURCE], BOOLEAN]
			-- Function used to veto transport.
			-- (from EV_DOCKABLE_TARGET_I)

	viewable_row_indexes: ARRAYED_LIST [INTEGER_32]
			-- Row indexes that are currently viewable in the grid in its present state.
			-- For example, if the first node is a non expanded tree that has 10 subrows, the contents
			-- would be 1, 11, 12, 13, 14, ...
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			result_not_void: Result /= Void

	visible_column_indexes: ARRAYED_LIST [INTEGER_32]
			-- All columns that are currently visible in `Current'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			is_displayed: is_displayed
		ensure -- from EV_GRID_I
			result_not_void: Result /= Void

	visible_row_indexes: ARRAYED_LIST [INTEGER_32]
			-- All rows that are currently visible in `Current'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			is_displayed: is_displayed
		ensure -- from EV_GRID_I
			result_not_void: Result /= Void

	wel_width: INTEGER_32
			-- Window width
			-- (from WEL_WINDOW)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	window_captured: BOOLEAN
			-- Has a window been captured?
			-- (from WEL_WINDOW)

	window_of_item (hwnd: POINTER): WEL_WINDOW
			-- Retrieve Eiffel object associated with `hwnd' pointer.
			-- (from WEL_WINDOWS_ROUTINES)
		require -- from WEL_WINDOWS_ROUTINES
			hwnd_not_null: hwnd /= default_pointer
			is_window_pointer: is_window (hwnd)
		ensure -- from WEL_WINDOWS_ROUTINES
			is_wel_window: Result /= Void implies (create {INTERNAL}).type_conforms_to ((create {INTERNAL}).dynamic_type (Result), (create {INTERNAL}).dynamic_type_from_string ("WEL_WINDOW"))

	window_rect: WEL_RECT
			-- Window rectangle (absolute position)
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			result_not_void: Result /= Void

	windows_directory: STRING_32
			-- Path of the Windows directory
			-- (from WEL_WINDOWS_ROUTINES)
		ensure -- from WEL_WINDOWS_ROUTINES
			result_not_void: Result /= Void
	
feature {ANY} -- Status report

	valid_hwnd_constant (c: POINTER): BOOLEAN
			-- Is `c' a valid hwnd constant?
			-- (from WEL_HWND_CONSTANTS)
	
feature -- Status setting

	activate_item (a_item: EV_GRID_ITEM)
			-- Setup `a_item' for user interactive editing.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_item_not_void: a_item /= Void

	activate_window: EV_POPUP_WINDOW
			-- Window used to edit grid item contents on `activate'.
			-- (from EV_GRID_I)

	check_drag_and_drop_release (a_x, a_y: INTEGER_32)
			-- End transport if in drag and drop.
			-- (from EV_PICK_AND_DROPABLE_IMP)

	check_dragable_release (a_x, a_y: INTEGER_32)
			-- End transport if in drag and drop.
			-- (from EV_DOCKABLE_SOURCE_IMP)

	connect_radio_grouping (a_container: EV_CONTAINER)
			-- Join radio grouping of `a_container' to `Current'.
			-- (from EV_CONTAINER_IMP)
		require -- from EV_CONTAINER_I
			a_container_not_void: a_container /= Void

	currently_active_item: EV_GRID_ITEM
			-- Item that is currently active.
			-- (from EV_GRID_I)

	deactivate_item (a_item: EV_GRID_ITEM)
			-- Cleanup from previous call to `activate'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_item_not_void: a_item /= Void

	disable
			-- Disable mouse and keyboard input
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			disabled: not is_sensitive

	disable_always_selected
			-- Allow the user to completely remove the selection from the grid by clicking on an item,
			-- clicking on a Void area or by Ctrl clicking the selected item itself.
			-- (from EV_GRID_I)

	disable_column_resize_immediate
			-- Ensure is_column_resize_immediate is `False'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			not_is_column_resize_immediate: not is_column_resize_immediate

	disable_column_separators
			-- Ensure are_column_separators_enabled is `False'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			column_separators_disabled: not are_column_separators_enabled

	disable_columns_drawn_above_rows
			-- Ensure are_columns_drawn_above_rows is `False'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			columns_drawn_below_rows: not are_columns_drawn_above_rows

	disable_commands
			-- Disable commands execution.
			-- (from WEL_WINDOW)
		ensure -- from WEL_WINDOW
			commands_disabled: not commands_enabled

	disable_default_processing
			-- Disable default window processing.
			-- The standard window procedure will not be called for
			-- each messages received by the window and then the
			-- normal behavior will not occur.
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		ensure -- from WEL_WINDOW
			default_processing_disabled: not default_processing

	disable_dockable
			-- Ensure `Current' is not dockable
			-- (from EV_DOCKABLE_SOURCE_I)
		ensure -- from EV_DOCKABLE_SOURCE_I
			not_is_dockable: not is_dockable

	disable_docking
			-- Ensure is_docking_enabled is False.
			-- `Current' will not accept docking.
			-- (from EV_DOCKABLE_TARGET_I)
		ensure -- from EV_DOCKABLE_TARGET_I
			not_dockable: not is_docking_enabled
			id_not_stored_in_application: not (create {EV_ENVIRONMENT}).application.implementation.dockable_targets.has (interface.object_id)

	disable_drag_accept_files
			-- Disallow `Current' from being a file drag and drop target.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists

	disable_dynamic_content
			-- Ensure contents of `Current' are not dynamic and are no longer retrieved as such.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			content_not_dynamic: not is_content_partially_dynamic

	disable_external_docking
			-- Forbid `Current' to be docked into an EV_DOCKABLE_DIALOG
			-- When there is no valid EV_DRAGABLE_TARGET upon completion
			-- of the transport?
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			is_dockable: is_dockable
		ensure -- from EV_DOCKABLE_SOURCE_I
			not_externally_dockable: not is_external_docking_enabled

	disable_external_docking_relative
			-- Assign `False' to is_external_docking_relative, ensuring that
			-- a dockable dialog displayed when `Current' is docked externally
			-- is displayed as a standard window.
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			external_docking_enabled: is_external_docking_enabled
		ensure -- from EV_DOCKABLE_SOURCE_I
			external_docking_not_relative: not is_external_docking_relative

	disable_full_redraw_on_virtual_position_change
			-- Ensure is_full_redraw_on_virtual_position_change_enabled is `False'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			not_is_full_redraw_on_virtual_position_change_enabled: not is_full_redraw_on_virtual_position_change_enabled

	disable_horizontal_overscroll
			-- Ensure is_horizontal_overscroll_enabled is `False'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			not_is_horizontal_overscroll_enabled: not is_horizontal_overscroll_enabled

	disable_horizontal_scrolling_per_item
			-- Ensure horizontal scrolling is performed on a per-pixel basis.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			horizontal_scrolling_performed_per_pixel: not is_horizontal_scrolling_per_item

	disable_pebble_positioning
			-- Assign `False' to pebble_positioning_enabled.
			-- (from EV_PICK_AND_DROPABLE_I)

	disable_resizing_divider
			-- Ensure no vertical divider is displayed during column resizing.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			resizing_divider_disabled: not is_resizing_divider_enabled

	disable_row_height_fixed
			-- Permit rows to have varying heights.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			not_dynamic_content_enabled_with_height_not_bounded: not (is_content_partially_dynamic and is_vertical_overscroll_enabled = False)

	disable_row_separators
			-- Ensure are_row_separators_enabled is `False'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			row_separators_disabled: not are_row_separators_enabled

	disable_selection_keyboard_handling
			-- Disable selection handling of items via the keyboard.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			selection_keyboard_handling_disabled: not is_selection_keyboard_handling_enabled

	disable_selection_on_click
			-- Disable selection handling when items are clicked upon.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			selection_on_click_disabled: not is_selection_on_click_enabled

	disable_sensitive
			-- Set item insensitive to user actions.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)
		require -- from  EV_SENSITIVE_I
			True

	disable_solid_resizing_divider
			-- Ensure resizing divider displayed during column resizing
			-- is displayed as a dashed line.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			dashed_resizing_divider: not is_resizing_divider_solid

	disable_transport
			-- Deactivate pick/drag and drop mechanism.
			-- (from EV_PICK_AND_DROPABLE_IMP)
		require -- from  EV_PICK_AND_DROPABLE_I
			True
		ensure -- from EV_PICK_AND_DROPABLE_I
			is_transport_disabled: not is_transport_enabled

	disable_tree
			-- Disable tree functionality for `Current'.
			-- All subrows of rows contained are unparented,
			-- which flattens the tree structure.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			tree_disabled: not is_tree_enabled

	disable_vertical_overscroll
			-- Ensure is_vertical_overscroll_enabled is `False'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			dynamic_content_not_enabled_with_variable_row_heights: not (is_content_partially_dynamic and not is_row_height_fixed)
		ensure -- from EV_GRID_I
			not_is_vertical_overscroll_enabled: not is_vertical_overscroll_enabled

	disable_vertical_scrolling_per_item
			-- Ensure vertical scrolling is performed on a per-pixel basis.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			vertical_scrolling_performed_per_pixel: not is_vertical_scrolling_per_item

	dragable_motion (a_x, a_y, a_screen_x, a_screen_y: INTEGER_32)
			-- If in drag/pick and drop then update.
			-- (from EV_DOCKABLE_SOURCE_IMP)

	dragable_press (a_x, a_y, a_button, a_screen_x, a_screen_y: INTEGER_32)
			-- Process `a_button' to start/stop the drag/pick and
			-- drop mechanism.
			-- (from EV_DOCKABLE_SOURCE_IMP)

	enable
			-- Enable mouse and keyboard input.
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			enabled: is_sensitive

	enable_always_selected
			-- Ensure that the user may not completely remove the selection from `Current'.
			-- (from EV_GRID_I)

	enable_column_resize_immediate
			-- Ensure is_column_resize_immediate is `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			is_column_resize_immediate: is_column_resize_immediate

	enable_column_separators
			-- Ensure are_column_separators_enabled is `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			column_separators_enabled: are_column_separators_enabled

	enable_columns_drawn_above_rows
			-- Ensure are_columns_drawn_above_rows is `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			columns_drawn_above_rows: are_columns_drawn_above_rows

	enable_commands
			-- Enable commands execution.
			-- (from WEL_WINDOW)
		ensure -- from WEL_WINDOW
			commands_enabled: commands_enabled

	enable_default_processing
			-- Enable default window processing.
			-- The standard window procedure will be called for
			-- each messages received by the window and then the
			-- normal behavior will occur.
			-- (from WEL_WINDOW)
		ensure -- from WEL_WINDOW
			default_processing_enabled: default_processing

	enable_dockable
			-- Allow `Current' to be dockable
			-- (from EV_DOCKABLE_SOURCE_I)
		ensure -- from EV_DOCKABLE_SOURCE_I
			is_dockable: is_dockable

	enable_docking
			-- Ensure is_docking_enabled is True.
			-- `Current' will accept docking from a
			-- compatible EV_DOCKABLE_SOURCE.
			-- (from EV_DOCKABLE_TARGET_I)
		ensure -- from EV_DOCKABLE_TARGET_I
			is_dockable: is_docking_enabled
			id_stored_in_application: (create {EV_ENVIRONMENT}).application.implementation.dockable_targets.has (interface.object_id)

	enable_drag_accept_files
			-- Allow `Current' to be a file drag and drop target.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists

	enable_external_docking
			-- Allow `Current' to be docked into an EV_DOCKABLE_DIALOG
			-- When there is no valid EV_DRAGABLE_TARGET upon completion
			-- of the transport?
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			is_dockable: is_dockable
		ensure -- from EV_DOCKABLE_SOURCE_I
			is_externally_dockable: is_external_docking_enabled

	enable_external_docking_relative
			-- Assign `True' to is_external_docking_relative, ensuring that
			-- a dockable dialog displayed when `Current' is docked externally
			-- is displayed relative to the top level window.
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			external_docking_enabled: is_external_docking_enabled
		ensure -- from EV_DOCKABLE_SOURCE_I
			external_docking_not_relative: is_external_docking_relative

	enable_full_redraw_on_virtual_position_change
			-- Ensure is_full_redraw_on_virtual_position_change_enabled is `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			is_full_redraw_on_virtual_position_change_enabled: is_full_redraw_on_virtual_position_change_enabled

	enable_horizontal_overscroll
			-- Ensure is_horizontal_overscroll_enabled is `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			is_horizontal_overscroll_enabled: is_horizontal_overscroll_enabled

	enable_horizontal_scrolling_per_item
			-- Ensure horizontal scrolling is performed on a per-item basis.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			horizontal_scrolling_performed_per_item: is_horizontal_scrolling_per_item

	enable_multiple_item_selection
			-- Allow the user to select more than one item via clicking or navigating using the keyboard arrow keys.
			-- Multiple items may be selected via Ctrl and Shift keys.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			multiple_item_selection_enabled: is_multiple_item_selection_enabled

	enable_multiple_row_selection
			-- Allow the user to select more than one row via clicking or navigating using the keyboard arrow keys.
			-- Multiple rows may be selected via Ctrl and Shift keys.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			multiple_row_selection_enabled: is_multiple_row_selection_enabled

	enable_partial_dynamic_content
			-- Ensure contents of `Current' must be retrieved when required via
			-- `content_requested_actions' only if the item is not already set
			-- in `Current'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			not_row_height_variable_and_vertical_overscroll_enabled: not (not is_row_height_fixed and is_vertical_overscroll_enabled)
			not_row_height_variable_and_vertical_scrolling_per_pixel: not (not is_row_height_fixed and not is_vertical_scrolling_per_item)
		ensure -- from EV_GRID_I
			content_partially_dynamic: is_content_partially_dynamic

	enable_pebble_positioning
			-- Assign `True' to pebble_positioning_enabled.
			-- (from EV_PICK_AND_DROPABLE_I)

	enable_resizing_divider
			-- Ensure a vertical divider is displayed during column resizing.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			resizing_divider_enabled: is_resizing_divider_enabled

	enable_row_height_fixed
			-- Ensure all rows have the same height.
			-- (from EV_GRID_I)

	enable_row_separators
			-- Ensure are_row_separators_enabled is `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			row_separators_enabled: are_row_separators_enabled

	enable_selection_keyboard_handling
			-- Enable selection handling of items via the keyboard.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			selection_keyboard_handling_enabled: is_selection_keyboard_handling_enabled

	enable_selection_on_click
			-- Enable selection handling of items when clicked upon.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			selection_on_click_enabled: is_selection_on_click_enabled

	enable_selection_on_single_button_click
			-- Enable selection handling of items when clicked upon via mouse button `1'.
			-- This is useful for implementing Contextual Menus where the selection may need
			-- to remain unchanged when using mouse button `3' for instance.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			selection_on_single_click_enabled: is_selection_on_single_button_click_enabled and then is_selection_on_click_enabled

	enable_sensitive
			-- Set item sensitive to user actions.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)
		require -- from  EV_SENSITIVE_I
			True

	enable_single_item_selection
			-- Allow the user to select a single item via clicking or navigating using the keyboard arrow keys.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			single_item_selection_enabled: is_single_item_selection_enabled

	enable_single_row_selection
			-- Allow the user to select a single row via clicking or navigating using the keyboard arrow keys.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			single_row_selection_enabled: is_single_row_selection_enabled

	enable_solid_resizing_divider
			-- Ensure resizing divider displayed during column resizing
			-- is displayed as a solid line.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			solid_resizing_divider: is_resizing_divider_solid

	enable_transport
			-- Activate pick/drag and drop mechanism.
			-- (from EV_PICK_AND_DROPABLE_IMP)
		require -- from EV_PICK_AND_DROPABLE_I
			pebble_not_void: pebble /= Void or pebble_function /= Void
		ensure -- from EV_PICK_AND_DROPABLE_I
			is_transport_enabled: interface.implementation.is_transport_enabled

	enable_tree
			-- Enable tree functionality for `Current'.
			-- Must be `True' to perform any tree structure functions on `Current'.
			-- Use enable_tree and disable_tree to set this state.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			tree_enabled: is_tree_enabled

	enable_vertical_overscroll
			-- Ensure is_vertical_overscroll_enabled is `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			is_vertical_overscroll_enabled: is_vertical_overscroll_enabled

	enable_vertical_scrolling_per_item
			-- Ensure vertical scrolling is performed on a per-item basis.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			vertical_scrolling_performed_per_item: is_vertical_scrolling_per_item

	escape_pnd
			-- Escape the pick and drop.
			-- (from EV_PICK_AND_DROPABLE_IMP)
		ensure -- from EV_PICK_AND_DROPABLE_IMP
			not_in_transport: not transport_executing

	has_horizontal_scrolling_per_item_just_changed: BOOLEAN
			-- Has the horizontal scrolling method just been changed between
			-- per item and per pixel? This is used to adjust the scroll bar's position
			-- to approximate it's original position during the recomputation of it's
			-- settings in recompute_horizontal_scroll_bar.
			-- (from EV_GRID_I)

	has_parent: BOOLEAN
			-- Is `Current' parented?
			-- (from EV_WIDGET_IMP)
		require -- from  EV_SENSITIVE_I
			True

	has_vertical_scrolling_per_item_just_changed: BOOLEAN
			-- Has the vertical scrolling method just been changed between
			-- per item and per pixel? This is used to adjust the scroll bar's position
			-- to approximate it's original position during the recomputation of it's
			-- settings in recompute_vertical_scroll_bar.
			-- (from EV_GRID_I)

	hide
			-- Hide `Current'.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_WIDGET_I
			True
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			hidden: not is_displayed

	hide_column (a_column: INTEGER_32)
			-- Ensure column `a_column' is not visible in `Current'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_within_bounds: a_column > 0 and a_column <= column_count
		ensure -- from EV_GRID_I
			column_not_displayed: not column_displayed (a_column)

	hide_header
			-- Ensure header is hidden.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			header_not_displayed: not is_header_displayed

	hide_horizontal_scroll_bar
			-- Ensure no horizontal scroll bar is displayed in `Current'
			-- at any time.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			not_is_horizontal_scroll_bar_show_requested: not is_horizontal_scroll_bar_show_requested

	hide_tree_node_connectors
			-- Ensure no connectors are displayed between nodes of tree structure in `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			tree_node_connectors_hidden: not are_tree_node_connectors_shown

	hide_vertical_scroll_bar
			-- Ensure no vertical scroll bar is displayed in `Current'
			-- at any time.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			not_is_vertical_scroll_bar_show_requested: not is_vertical_scroll_bar_show_requested

	horizontal_update (inc, position: INTEGER_32)
			-- Update the window and the horizontal scroll box with
			-- `inc' and `position'.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_not_void: scroller /= Void
			position_small_enough: scroller.valid_maximal_horizontal_position (position)
			position_large_enough: position >= minimal_horizontal_position
		ensure -- from WEL_COMPOSITE_WINDOW
			horizontal_position_set: horizontal_position = position

	is_always_selected: BOOLEAN
			-- Ensure that the user may not completely remove the selection from `Current'.
			-- (from EV_GRID_I)

	is_horizontal_scroll_bar_show_requested: BOOLEAN
			-- Will a horizontal scroll bar be displayed in `Current' when
			-- virtual_width exceeds viewable_width?	
			-- (from EV_GRID_I)

	is_item_height_changing: BOOLEAN
			-- Is height of items in `Current' changing?
			-- (from EV_GRID_I)

	is_vertical_scroll_bar_show_requested: BOOLEAN
			-- Will a vertical scroll bar be displayed in `Current' when
			-- virtual_height exceeds viewable_height?
			-- (from EV_GRID_I)

	item_pebble_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM], ANY]
			-- User pebble function
			-- (from EV_GRID_I)

	lock_update
			-- Ensure is_locked is `True', thereby preventing graphical
			-- updates until unlock_update is called.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			is_locked: is_locked

	maximize
			-- Maximize the window
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			maximized: maximized

	merge_radio_button_groups (other: EV_CONTAINER)
			-- Merge `Current' radio button group with that of `other'.
			-- (from EV_CONTAINER_I)

	minimize
			-- Minimize the window and display its icon
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			minimized: minimized

	parent_is_sensitive: BOOLEAN
			-- Is parent of `Current' sensitive?
			-- (from EV_WIDGET_IMP)
		require -- from  EV_SENSITIVE_I
			True

	pnd_motion (a_x, a_y, a_screen_x, a_screen_y: INTEGER_32)
			-- If in drag/pick and drop then update.
			-- (from EV_PICK_AND_DROPABLE_IMP)

	pnd_press (a_x, a_y, a_button, a_screen_x, a_screen_y: INTEGER_32)
			-- Process `a_button' to start/stop the drag/pick and
			-- drop mechanism.
			-- (from EV_PICK_AND_DROPABLE_IMP)

	redraw
			-- Force `Current' to be re-drawn when next idle.
			-- (from EV_GRID_I)

	release_capture
			-- Release the mouse capture after a call
			-- to set_capture.
			-- (from WEL_WINDOW)
		require -- from  EV_DOCKABLE_SOURCE_IMP
			True
		require -- from  EV_PICK_AND_DROPABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
			has_capture: wel_has_capture
		ensure -- from WEL_WINDOW
			not_has_capture: not wel_has_capture

	release_heavy_capture
			-- Release the mouse capture after a call
			-- to set_heavy_capture.
			-- (from WEL_WINDOW)
		require -- from  EV_PICK_AND_DROPABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
			has_heavy_capture: has_heavy_capture
			heavy_capture_activated: heavy_capture_activated
		ensure -- from WEL_WINDOW
			heavy_capture_set: not has_heavy_capture
			heavy_capture_deactivated: not heavy_capture_activated

	remove_default_key_processing_handler
			-- Ensure default_key_processing_handler is Void.
			-- (from EV_WIDGET_I)
		ensure -- from EV_WIDGET_I
			default_key_processing_handler_removed: default_key_processing_handler = Void

	remove_pebble
			-- Remove pebble.
			-- (from EV_PICK_AND_DROPABLE_I)
		ensure -- from EV_PICK_AND_DROPABLE_I
			pebble_removed: pebble = Void and pebble_function = Void
			is_transport_disabled: not is_transport_enabled

	remove_real_source
			-- Ensure real_source is `Void'.
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			is_dockable: is_dockable
		ensure -- from EV_DOCKABLE_SOURCE_I
			real_source_void: real_source = Void

	remove_real_target
			-- Ensure real_target is `Void'.
			-- (from EV_WIDGET_I)
		ensure -- from EV_WIDGET_I
			real_target_void: real_target = Void

	restore
			-- Restore the window to its
			-- original size and position after
			-- minimize or maximize
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	select_column (a_column: INTEGER_32)
			-- Ensure all items in `a_column' are selected.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_within_bounds: a_column > 0 and a_column <= column_count
			column_displayed: column_displayed (a_column)
		ensure -- from EV_GRID_I
			column_selected: column (a_column).is_selected

	select_row (a_row: INTEGER_32)
			-- Ensure all items in `a_row' are selected.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_row_within_bounds: a_row > 0 and a_row <= row_count
		ensure -- from EV_GRID_I
			row_selected: row (a_row).is_selected

	set_actual_drop_target_agent (an_agent: like actual_drop_target_agent)
			-- Assign `an_agent' to actual_drop_target_agent.
			-- (from EV_WIDGET_I)
		require -- from EV_WIDGET_I
			an_agent_not_void: an_agent /= Void
		ensure -- from EV_WIDGET_I
			assigned: actual_drop_target_agent = an_agent

	set_capture
			-- Set the mouse capture to the `Current' window.
			-- Once the window has captured the mouse, all
			-- mouse input is directed to this window, regardless
			-- of whether the cursor is over that window. Only
			-- one window can have the mouse capture at a time.
			--
			-- Works only for windows in the same thread as your
			-- application.
			-- (from WEL_WINDOW)
		require -- from  EV_DOCKABLE_SOURCE_IMP
			True
		require -- from  EV_PICK_AND_DROPABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
			has_not_capture: not wel_has_capture
			has_not_heavy_capture: not has_heavy_capture
		ensure -- from WEL_WINDOW
			has_capture: wel_has_capture

	set_column_count_to (a_column_count: INTEGER_32)
			-- Resize `Current' to have `a_column_count' columns.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_count_not_negative: a_column_count >= 0
		ensure -- from EV_GRID_I
			column_count_set: column_count = a_column_count

	set_default_colors
			-- Set foreground and background color to their default values.
			-- (from EV_GRID_I)
		require -- from  EV_COLORIZABLE_I
			True

	set_default_minimum_size
			-- Initialize the size of `Current'.
			-- Redefined by many widgets.
			-- (from EV_WIDGET_IMP)

	set_drag_and_drop_mode
			-- Set transport mechanism to drag and drop,
			-- (from EV_PICK_AND_DROPABLE_I)
		ensure -- from EV_PICK_AND_DROPABLE_I
			mode_is_drag_and_drop: mode_is_drag_and_drop

	set_dynamic_content_function (a_function: FUNCTION [ANY, TUPLE [INTEGER_32, INTEGER_32], EV_GRID_ITEM])
			-- Function which computes the item that resides in a particular position of the
			-- grid while is_content_partially_dynamic or `is_content_completely_dynamic.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_function_not_void: a_function /= Void
		ensure -- from EV_GRID_I
			dynamic_content_function_set: dynamic_content_function = a_function

	set_ex_style (an_ex_style: INTEGER_32)
			-- Set `an_ex_style' with ex_style.
			--
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	set_first_visible_row (a_row: INTEGER_32)
			-- Set `a_row' as the first row visible in `Current' as long
			-- as there are enough rows after `a_row' to fill the remainder of `Current'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			valid_row_index: a_row >= 1 and a_row <= row_count

	set_focus
			-- Grab keyboard focus.
			-- (from EV_GRID_I)
		require -- from  EV_WIDGET_I
			True
		require -- from WEL_WINDOW
			exists: exists

	set_focused_selection_color (a_color: EV_COLOR)
			-- Assign `a_color' to focused_selection_color.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_color_not_void: a_color /= Void
		ensure -- from EV_GRID_I
			focused_selection_color_set: focused_selection_color = a_color

	set_focused_selection_text_color (a_color: EV_COLOR)
			-- Assign `a_color' to focused_selection_text_color.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_color_not_void: a_color /= Void
		ensure -- from EV_GRID_I
			focused_selection_text_color_set: focused_selection_text_color = a_color

	set_heavy_capture
			-- Set the mouse capture to the `Current' window.
			-- Once the window has captured the mouse, all
			-- mouse input is directed to this window, regardless
			-- of whether the cursor is over that window. Only
			-- one window can have the mouse capture at a time.
			--
			-- Works for ALL windows.
			-- (from WEL_WINDOW)
		require -- from  EV_PICK_AND_DROPABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists
			has_not_heavy_capture: not has_heavy_capture
			heavy_capture_deactivated: not heavy_capture_activated
		ensure -- from WEL_WINDOW
			heavy_capture_set: has_heavy_capture implies heavy_capture_activated

	set_horizontal_position (position: INTEGER_32)
			-- Set horizontal_position with `position'.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
			position_small_enough: scroller.valid_maximal_horizontal_position (position)
			position_large_enough: position >= minimal_horizontal_position
		ensure -- from WEL_COMPOSITE_WINDOW
			horizontal_position_set: horizontal_position = position

	set_horizontal_range (minimum, maximum: INTEGER_32)
			-- Set minimal_horizontal_position and
			-- maximal_horizontal_position with `minimum' and
			-- `maximum'.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
			consistent_range: minimum <= maximum
		ensure -- from WEL_COMPOSITE_WINDOW
			minimal_horizontal_position_set: minimal_horizontal_position = minimum
			maximal_horizontal_position_set: maximal_horizontal_position = maximum

	set_icon (a_small_icon: WEL_ICON; a_big_icon: WEL_ICON)
			-- Set the small (16x16) and the normal (32x32) icon for this window.
			--
			-- Note: Set `a_small_icon' to Void to remove the small icon and
			--       `a_big_icon' to Void to remove the big icon.
			-- (from WEL_COMPOSITE_WINDOW)

	set_menu (a_menu: WEL_MENU)
			-- Set menu with `a_menu'.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			a_menu_not_void: a_menu /= Void
			a_menu_exists: a_menu.exists
		ensure -- from WEL_COMPOSITE_WINDOW
			has_menu: has_menu
			menu_set: menu.item = a_menu.item

	set_minheight_recomputation_needed (flag: BOOLEAN)
			-- Set is_minheight_recomputation_needed with `flag'?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	set_minwidth_recomputation_needed (flag: BOOLEAN)
			-- Set is_minwidth_recomputation_needed with `flag'?
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	set_node_pixmaps (an_expand_node_pixmap, a_collapse_node_pixmap: EV_PIXMAP)
			-- Assign `an_expand_node_pixmap' to expand_node_pixmap and `a_collapse_node_pixmap'
			-- to collapse_node_pixmap. These pixmaps are used in rows containing subrows for
			-- expanding/collapsing the row.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			pixmaps_not_void: an_expand_node_pixmap /= Void and a_collapse_node_pixmap /= Void
			pixmaps_dimensions_identical: an_expand_node_pixmap.width = a_collapse_node_pixmap.width and an_expand_node_pixmap.height = a_collapse_node_pixmap.height
		ensure -- from EV_GRID_I
			pixmaps_set: expand_node_pixmap = an_expand_node_pixmap and collapse_node_pixmap = a_collapse_node_pixmap

	set_non_focused_selection_color (a_color: EV_COLOR)
			-- Assign `a_color' to non_focused_selection_color.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_color_not_void: a_color /= Void
		ensure -- from EV_GRID_I
			non_focused_selection_color_set: non_focused_selection_color = a_color

	set_non_focused_selection_text_color (a_color: EV_COLOR)
			-- Assign `a_color' to non_focused_selection_text_color.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_color_not_void: a_color /= Void
		ensure -- from EV_GRID_I
			non_focused_selection_text_color_set: non_focused_selection_text_color = a_color

	set_pebble (a_pebble: like pebble)
			-- Assign `a_pebble' to pebble.
			-- (from EV_GRID_I)
		require -- from EV_PICK_AND_DROPABLE_I
			a_pebble_not_void: a_pebble /= Void
		ensure -- from EV_PICK_AND_DROPABLE_I
			pebble_assigned: interface.implementation.pebble = a_pebble
			is_transport_enabled: interface.implementation.is_transport_enabled

	set_pebble_function (a_function: FUNCTION [ANY, TUPLE, ANY])
			-- Assign `a_function' to pebble_function.
			-- (from EV_GRID_I)
		require -- from EV_PICK_AND_DROPABLE_I
			a_function_not_void: a_function /= Void
		ensure -- from EV_PICK_AND_DROPABLE_I
			pebble_function_assigned: interface.implementation.pebble_function = a_function
			is_transport_enabled: interface.implementation.is_transport_enabled

	set_pebble_position (a_x, a_y: INTEGER_32)
			-- Set the initial position for pick and drop relative to `Current'.
			-- (from EV_PICK_AND_DROPABLE_I)
		ensure -- from EV_PICK_AND_DROPABLE_I
			pick_x_assigned: pick_x = a_x
			pick_y_assigned: pick_y = a_y

	set_pick_and_drop_mode
			-- Set transport mechanism to pick and drop,
			-- (from EV_PICK_AND_DROPABLE_I)
		ensure -- from EV_PICK_AND_DROPABLE_I
			mode_is_pick_and_drop: mode_is_pick_and_drop

	set_real_source (dockable_source: EV_DOCKABLE_SOURCE)
			-- Set `dockable_source' to be the widget moved when a
			-- drag begins on `Current'.
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			is_dockable: is_dockable
			dockable_source_not_void: dockable_source /= Void
		ensure -- from EV_DOCKABLE_SOURCE_I
			real_source_assigned: real_source = dockable_source

	set_real_target (a_target: EV_DOCKABLE_TARGET)
			-- Assign `a_target' to real_target.
			-- (from EV_WIDGET_I)
		require -- from EV_WIDGET_I
			target_not_void: a_target /= Void
		ensure -- from EV_WIDGET_I
			assigned: real_target = a_target

	set_row_count_to (a_row_count: INTEGER_32)
			-- Resize `Current' to have `a_row_count' columns.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_row_count_non_negative: a_row_count >= 0
		ensure -- from EV_GRID_I
			row_count_set: row_count = a_row_count

	set_row_height (a_row_height: INTEGER_32)
			-- Set height of all rows within `Current' to `a_row_height
			-- If not is_row_height_fixed then use the height individually per row instead.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			is_row_height_fixed: is_row_height_fixed
			a_row_height_positive: a_row_height >= 1
		ensure -- from EV_GRID_I
			row_height_set: row_height = a_row_height

	set_separator_color (a_color: EV_COLOR)
			-- Set `a_color' as separator_color.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_color_not_void: a_color /= Void
		ensure -- from EV_GRID_I
			separator_color_set: separator_color = a_color

	set_shared
			-- Set shared to True.
			-- (from WEL_ANY)
		ensure -- from WEL_ANY
			shared: shared

	set_style (a_style: INTEGER_32)
			-- Set style with `a_style'.
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	set_subrow_indent (a_subrow_indent: INTEGER_32)
			-- Set subrow_indent to `a_subrow_indent'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_subrow_indent_non_negtive: a_subrow_indent >= 0
		ensure -- from EV_GRID_I
			subrow_indent_set: subrow_indent = a_subrow_indent

	set_target_menu_mode
			-- Set transport mechanism to target_menu.
			-- (from EV_PICK_AND_DROPABLE_I)
		ensure -- from EV_PICK_AND_DROPABLE_I
			mode_is_target_menu: mode_is_target_menu

	set_tree_node_connector_color (a_color: EV_COLOR)
			-- Set `a_color' as tree_node_connector_color.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_color_not_void: a_color /= Void
		ensure -- from EV_GRID_I
			tree_node_connector_color_set: tree_node_connector_color = a_color

	set_unshared
			-- Set shared to False.
			-- (from WEL_ANY)
		ensure -- from WEL_ANY
			unshared: not shared

	set_vertical_position (position: INTEGER_32)
			-- Set vertical_position with `position'.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
			position_small_enough: scroller.valid_maximal_vertical_position (position)
			position_large_enough: position >= minimal_vertical_position
		ensure -- from WEL_COMPOSITE_WINDOW
			vertical_position_set: vertical_position = position

	set_vertical_range (minimum, maximum: INTEGER_32)
			-- Set minimal_vertical_position and
			-- maximal_vertical_position with `minimum' and
			-- `maximum'.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_exists: scroller /= Void
			consistent_range: minimum <= maximum
		ensure -- from WEL_COMPOSITE_WINDOW
			minimal_vertical_position_set: minimal_vertical_position = minimum
			maximal_vertical_position_set: maximal_vertical_position = maximum

	set_veto_dock_function (a_function: FUNCTION [ANY, TUPLE [EV_DOCKABLE_SOURCE], BOOLEAN])
			-- Assign `a_function' to veto_dock_function.
			-- (from EV_DOCKABLE_TARGET_I)
		require -- from EV_DOCKABLE_TARGET_I
			a_function_not_void: a_function /= Void
		ensure -- from EV_DOCKABLE_TARGET_I
			veto_function_set: veto_dock_function = a_function

	set_virtual_position (virtual_x, virtual_y: INTEGER_32)
			-- Move `Current' to virtual position `virtual_x', `virtual_y'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			virtual_x_valid: virtual_x >= 0 and virtual_x <= maximum_virtual_x_position
			virtual_y_valid: virtual_y >= 0 and virtual_y <= maximum_virtual_y_position
		ensure -- from EV_GRID_I
			virtual_position_set: virtual_x_position = virtual_x and virtual_y_position = virtual_y

	show
			-- Show `Current'.
			-- Need to notify the parent.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_WIDGET_I
			True
		require -- from WEL_WINDOW
			exists: exists

	show_column (a_column: INTEGER_32)
			-- Ensure column `a_column' is visible in `Current'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_within_bounds: a_column > 0 and a_column <= column_count
		ensure -- from EV_GRID_I
			column_displayed: column_displayed (a_column)

	show_header
			-- Ensure header displayed.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			header_displayed: is_header_displayed

	show_horizontal_scroll_bar
			-- Ensure a horizontal scroll bar is displayed in `Current'
			-- when required. Note that this does not force the horizontal
			-- scroll bar to be visible, simply ensures that when virtual_width
			-- is greater than viewable_width, the scroll bar is displayed.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			is_horizontal_scroll_bar_show_requested: is_horizontal_scroll_bar_show_requested

	show_tree_node_connectors
			-- Ensure connectors are displayed between nodes of tree structure in `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			tree_node_connectors_shown: are_tree_node_connectors_shown

	show_vertical_scroll_bar
			-- Ensure a vertical scroll bar is displayed in `Current'
			-- when required. Note that this does not force the vertical
			-- scroll bar to be visible, simply ensures that when virtual_height
			-- is greater than viewable_height, the scroll bar is displayed.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			is_vertical_scroll_bar_show_requested: is_vertical_scroll_bar_show_requested

	unconnect_radio_grouping (a_container: EV_CONTAINER)
			-- Removed radio grouping of `a_container' from `Current'.
			-- (from EV_CONTAINER_IMP)
		require -- from EV_CONTAINER_I
			a_container /= Void

	unlock_update
			-- Ensure is_locked is `False', thereby ensuring graphical
			-- updates occur as normal. The complete client area
			-- is refreshed to synchronize the display with the contents.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			not_is_locked: not is_locked

	unmerge_radio_button_groups (other: EV_CONTAINER)
			-- Remove `other' from radio button group of `Current'.
			-- (from EV_CONTAINER_I)

	unset_menu
			-- Unset the current menu associated to the window.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
		ensure -- from WEL_COMPOSITE_WINDOW
			menu_unset: not has_menu

	update_cached_style (new_ex_style, old_ex_style: INTEGER_32)
			-- Update Window cache buffer for Window style.
			-- (from WEL_WINDOW)

	user_disable_sensitive
			-- Make object desensitive to user input.
			-- (from EV_SENSITIVE_I)
		ensure -- from EV_SENSITIVE_I
			is_desensitive: not user_is_sensitive

	user_enable_sensitive
			-- Make object sensitive to user input.
			-- (from EV_SENSITIVE_I)
		ensure -- from EV_SENSITIVE_I
			is_sensitive_if_parent_sensitive: (has_parent and then parent_is_sensitive) implies interface.implementation.is_sensitive
			is_sensitive_if_orphaned: not has_parent implies interface.implementation.is_sensitive

	vertical_update (inc, position: INTEGER_32)
			-- Update the window and the vertical scroll box with
			-- `inc' and `position'.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			scroller_not_void: scroller /= Void
			position_small_enough: scroller.valid_maximal_vertical_position (position)
			position_large_enough: position >= minimal_vertical_position
		ensure -- from WEL_COMPOSITE_WINDOW
			vertical_position_set: vertical_position = position
	
feature -- Element change

	disable_drawables_have_focus
			-- Ensure drawables_have_focus is set to `False'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			drawables_have_focus: drawables_have_focus = False

	disable_redraw
			-- Disable redrawing of `Current' until next call to enable_redraw.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	enable_drawables_have_focus
			-- Ensure drawables_have_focus is set to `True'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			drawables_have_focus: drawables_have_focus = True

	enable_redraw
			-- Ensure `Current' is redrawn as required.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	extend (an_item: like cell_item)
			-- Ensure that structure includes `an_item'.
			-- (from EV_CELL_I)
		require -- from EV_CONTAINER_I
			v_not_void: an_item /= Void

	has_system_window_locked: BOOLEAN
			-- Is there any window locked ?
			-- (from WEL_WINDOW)

	insert (v: like cell_item)
			-- Assign `v' to item.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)

	insert_new_column (a_index: INTEGER_32)
			-- Insert a new column at index `a_index'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_index_within_range: a_index > 0 and a_index <= column_count + 1
		ensure -- from EV_GRID_I
			column_count_set: column_count = old column_count + 1

	insert_new_rows (rows_to_insert, i: INTEGER_32)
			-- Insert `rows_to_insert' rows at index `i'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			i_within_range: i > 0 and i <= row_count + 1
			rows_to_insert_positive: rows_to_insert >= 1
			not_inserting_within_existing_subrow_structure: i <= row_count implies row (i).parent_row = Void
		ensure -- from EV_GRID_I
			row_count_set: row_count = old row_count + rows_to_insert

	insert_new_rows_parented (rows_to_insert, i: INTEGER_32; a_parent_row: EV_GRID_ROW)
			-- Insert `rows_to_insert' new rows at index `i' and make those rows subnodes of `a_parent_row'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			i_positive: i > 0
			tree_enabled: is_tree_enabled
			rows_to_insert_positive: row_count >= 1
			i_less_than_row_count: i <= row_count + 1
			a_parent_row_not_void: a_parent_row /= Void
			i_valid_for_parent: i > a_parent_row.index and i <= a_parent_row.index + a_parent_row.subrow_count_recursive + 1
			not_inserting_within_existing_subrow_structure: i < a_parent_row.index + a_parent_row.subrow_count_recursive implies row (i).parent_row = a_parent_row
		ensure -- from EV_GRID_I
			row_count_set: row_count = old row_count + rows_to_insert
			subrow_count_set: a_parent_row.subrow_count = old a_parent_row.subrow_count + rows_to_insert

	lock_window_update
			-- Disables drawing in the current window. A locked window cannot be moved.
			-- Only one window can be locked at a time. To unlock a window locked with
			-- lock_window_update , call 'unlock_window_update'.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			has_system_window_locked

	move_columns (i, j, n: INTEGER_32)
			-- Move `n' columns at index `i' to index `j'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			i_valid: i > 0 and then i <= column_count
			j_valid: j > 0 and then j <= column_count + 1
			n_valid: n > 0 and then i + n <= column_count + 1
			move_not_overlapping: n > 1 implies (j <= i or else j >= i + n)
		ensure -- from EV_GRID_I
			columns_moved: (j < i implies column (j) = old column (i) and then column (j + n - 1) = old column (i + n - 1)) and (j > i + n implies column (j - n) = old column (i) and then column (j - 1) = old column (i + n - 1))
			column_count_unchanged: column_count = old column_count

	move_rows_to_parent (i, j, n: INTEGER_32; a_parent_row: EV_GRID_ROW)
			-- All purpose row moving routine.
			-- Move `n' rows starting at index `i' immediately before row at index `j'.
			-- If `j' = `row_count + 1' the rows are moved to the very bottom of the grid.
			-- If is_tree_enabled, all rows moved that share the same tree structure depth
			-- as row `i' are reparented as a subrow of `a_parent_row'.
			-- If `a_parent_row' is Void then they are set as root nodes of the grid tree.
			-- All parent rows within the rows moved that have a tree structure depth
			-- greater than that of row `i' are left parented.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			i_valid: i > 0 and then i <= row_count
			j_valid: j > 0 and then j <= row_count + 1
			n_valid: n > 0 and then i + n <= row_count + 1
			move_not_overlapping: n > 1 implies (j <= i or else j >= i + n)
			not_breaking_existing_subrow_structure: j = row_count + 1 or else ((a_parent_row = Void and j <= row_count and (i + n <= row_count) and ((j = i or j = i + 1) implies row (i + n).parent_row = Void))) or else ((a_parent_row = Void and j <= row_count) implies row (j).parent_row = Void)
			j_valid_for_move_to_a_parent_row: a_parent_row /= Void implies ((j = i + n and then (i > a_parent_row.index and i <= a_parent_row.index + a_parent_row.subrow_count_recursive + 1)) or (j > a_parent_row.index and j <= a_parent_row.index + a_parent_row.subrow_count_recursive + 1))
			not_inserting_within_existing_subrow_structure: (a_parent_row /= Void and j <= a_parent_row.index + a_parent_row.subrow_count_recursive) implies row (j).parent_row = a_parent_row
		ensure -- from EV_GRID_I
			rows_moved: (j <= i implies row (j) = old row (i) and then row (j + n - 1) = old row (i + n - 1)) and (j > i + n implies row (j - n) = old row (i) and then row (j - 1) = old row (i + n - 1))
			row_count_unchanged: row_count = old row_count

	pixmap_equal_to (a_pixmap: EV_PIXMAP): BOOLEAN
			-- Is `a_pixmap' equal to `pixmap'?
			-- (from EV_PIXMAPABLE_I)

	put (v: like cell_item)
			-- Replace item with `v'.
			-- Was declared in EV_SINGLE_CHILD_CONTAINER_IMP as synonym of replace.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)

	remove
			-- Remove item from `Current' if present.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)

	remove_background_pixmap
			-- Remove background pixmap.
			-- (from EV_CONTAINER_IMP)
		require -- from  EV_PIXMAPABLE_I
			True
		ensure -- from EV_PIXMAPABLE_I
			pixmap_removed: background_pixmap = Void

	remove_help_context
			-- Remove key press action associated with `EV_APPLICATION.help_key'.
			-- (from EV_HELP_CONTEXTABLE_I)
		require -- from EV_HELP_CONTEXTABLE_I
			help_context_not_void: help_context /= Void
		ensure -- from EV_HELP_CONTEXTABLE_I
			no_help_context: internal_help_context = Void

	replace (v: like cell_item)
			-- Replace item with `v'.
			-- Was declared in EV_SINGLE_CHILD_CONTAINER_IMP as synonym of put.
			-- (from EV_SINGLE_CHILD_CONTAINER_IMP)
		require -- from  EV_CONTAINER_I
			True

	set_background_pixmap (pix: EV_PIXMAP)
			-- Set the background pixmap and redraw the container.
			-- (from EV_CONTAINER_IMP)
		require -- from EV_PIXMAPABLE_I
			pixmap_not_void: pix /= Void

	set_font (a_font: WEL_FONT)
			-- Set font with `a_font'.
			-- (from WEL_CONTROL_WINDOW)
		require -- from WEL_CONTROL_WINDOW
			exists: exists
			a_font_not_void: a_font /= Void
			a_font_exists: a_font.exists
		ensure -- from WEL_CONTROL_WINDOW
			font_set: not has_system_font implies font.item = a_font.item

	set_help_context (an_help_context: like help_context)
			-- Assign `a_help_context' to help_context.
			-- Assign `an_help_context' to help_context.
			-- (from EV_HELP_CONTEXTABLE_I)
		require -- from EV_HELP_CONTEXTABLE_I
			an_help_context_not_void: an_help_context /= Void
		ensure -- from EV_HELP_CONTEXTABLE_I
			help_context_assigned: help_context.is_equal (an_help_context)

	wel_set_item (an_item: POINTER)
			-- Set item with `an_item'
			-- (from WEL_ANY)
		ensure -- from WEL_ANY
			item_set: wel_item = an_item

	set_item (a_column, a_row: INTEGER_32; a_item: EV_GRID_ITEM)
			-- Set grid item at position (`a_column', `a_row') to `a_item'.
			-- If `a_item' is `Void', the current item (if any) is removed.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_positive: a_column > 0
			a_row_positive: a_row > 0
			a_item_not_parented: a_item /= Void implies a_item.parent = Void
			valid_tree_structure_on_item_insertion: a_item /= Void and is_tree_enabled and then a_row <= row_count and row (a_row).parent_row /= Void implies a_column >= row (a_row).parent_row.index_of_first_item
			item_may_be_added_if_row_is_a_subrow: a_item /= Void and then a_row <= row_count and then row (a_row).is_part_of_tree_structure implies row (a_row).is_index_valid_for_item_setting_if_tree_node (a_column)
			item_may_be_removed_if_row_is_a_subrow: a_item = Void and then a_row <= row_count and then row (a_row).is_part_of_tree_structure implies row (a_row).is_index_valid_for_item_removal_if_tree_node (a_column)
		ensure -- from EV_GRID_I
			item_set: item (a_column, a_row) = a_item

	set_parent (par: EV_CONTAINER)
			-- Make `par' the new parent of `Current'.
			-- `par' can be Void then the parent is the screen.
			-- (from EV_CONTAINER_IMP)

	wel_set_parent (a_parent: WEL_WINDOW)
			-- Change the parent of the current window.
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	set_placement (a_placement: WEL_WINDOW_PLACEMENT)
			-- Set placement with `a_placement'
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			a_placement_not_void: a_placement /= Void

	wel_set_text (a_text: STRING_GENERAL)
			-- Set the window text
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		ensure -- from WEL_WINDOW
			text_set_when_not_void: a_text /= Void implies wel_text.is_equal (a_text)
			text_set_when_void: a_text = Void implies wel_text.count = 0

	set_timer (timer_id, time_out: INTEGER_32)
			-- Set a timer identified by `timer_id' with a
			-- `time_out' value (in milliseconds).
			-- See also on_timer, kill_timer.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			positive_timer_id: timer_id > 0
			positive_time_out: time_out > 0

	set_tooltip (a_tooltip: STRING_GENERAL)
			-- Assign `a_tooltip' to `Current'.
			-- (from EV_GRID_I)
		require -- from EV_TOOLTIPABLE_I
			a_tooltip_not_void: a_tooltip /= Void

	set_top_level_window_imp (a_window: EV_WINDOW_IMP)
			-- Make `a_window' the new top_level_window_imp
			-- of `Current'.
			-- (from EV_CELL_IMP)

	set_x (a_x: INTEGER_32)
			-- Set `x' with `a_x'
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	set_y (a_y: INTEGER_32)
			-- Set `y' with `a_y'
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	top_level_window_imp: EV_WINDOW_IMP
			-- Top level window that contains `Current'.
			-- (from EV_CELL_IMP)

	unlock_window_update
			-- Unlock a locked window.	
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
	
feature -- Removal

	clear
			-- Remove all items from `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			to_implement_assertion ("EV_GRID_I.clear - All items positions return `Void'.")

	remove_column (a_column: INTEGER_32)
			-- Remove column `a_column'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_column_positive: a_column > 0
			a_column_less_than_column_count: a_column <= column_count
		ensure -- from EV_GRID_I
			column_count_updated: column_count = old column_count - 1
			old_column_removed: (old column (a_column)).parent = Void

	remove_row (a_row: INTEGER_32)
			-- Remove row `a_row' and all subrows recursively.
			-- If `row (a_row).subrow_count_recursive' is greater than 0 then
			-- all subrows of the row are also removed from `Current'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_row_positive: a_row > 0
			a_row_less_than_row_count: a_row <= row_count
		ensure -- from EV_GRID_I
			row_count_updated: row_count = old row_count - (old row (a_row).subrow_count_recursive + 1)
			old_row_removed: (old row (a_row)).parent = Void
			node_counts_correct_in_parent: old (row_internal (a_row).parent_row_i) /= Void implies (old row_internal (a_row).parent_row_i).node_counts_correct
			to_implement_assertion ("EV_GRID.remove_row%T%TAll old recursive subrows removed.")

	remove_rows (lower_index, upper_index: INTEGER_32)
			-- Remove all rows from `lower_index' to `upper_index' inclusive.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			valid_lower_index: lower_index >= 1 and lower_index <= row_count
			valid_upper_index: upper_index >= lower_index and upper_index <= row_count
		ensure -- from EV_GRID_I
			row_count_consistent: row_count = (old row_count) - (upper_index - lower_index + 1)
			lower_row_removed: (old row (lower_index)).parent = Void
			upper_row_removed: (old row (upper_index)).parent = Void
			to_implement_assertion (once "middle_rows_removed from lower to upper all old rows parent = Void")

	wipe_out
			-- Remove all columns and rows from `Current'.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			columns_removed: column_count = 0
			rows_removed: row_count = 0
	
feature -- Resizing

	set_height (value: INTEGER_32)
			-- Make `value' the new height of `Current'.
			-- (from EV_SIZEABLE_IMP)
		require -- from WEL_WINDOW
			exists: exists

	set_minimum_height (value: INTEGER_32)
			-- Make `value' the new minimum_height of `Current'.
			-- There is no need to grow `Current' if its size is
			-- too small, the parent will do it if necessary.
			-- (from EV_SIZEABLE_IMP)
		require -- from EV_WIDGET_I
			a_minimum_height_positive: value >= 0
		ensure -- from EV_WIDGET_I
			minimum_height_assigned: is_usable implies interface.minimum_height = value

	set_minimum_size (mw, mh: INTEGER_32)
			-- Make `mw' the new minimum_width and `mh' the new
			-- minimum_height of `Current'.
			-- (from EV_SIZEABLE_IMP)
		require -- from EV_WIDGET_I
			a_minimum_width_positive: mw >= 0
			a_minimum_height_positive: mh >= 0
		ensure -- from EV_WIDGET_I
			minimum_width_assigned: is_usable implies interface.minimum_width = mw
			minimum_height_assigned: is_usable implies interface.minimum_height = mh

	set_minimum_width (value: INTEGER_32)
			-- Make `value' the new minimum_width of `Current'.
			-- There is no need to grow `Current' if its size is
			-- too small, the parent will do it if necessary.
			-- (from EV_SIZEABLE_IMP)
		require -- from EV_WIDGET_I
			a_minimum_width_positive: value >= 0
		ensure -- from EV_WIDGET_I
			minimum_width_assigned: is_usable implies interface.minimum_width = value

	set_size (w, h: INTEGER_32)
			-- Resize `Current'.
			-- (from EV_SIZEABLE_IMP)

	set_width (value: INTEGER_32)
			-- Make `value' the new width of `Current'.
			-- (from EV_SIZEABLE_IMP)
		require -- from WEL_WINDOW
			exists: exists
	
feature -- Conversion

	key_code_from_wel (a_wel_code: INTEGER_32): INTEGER_32
			-- Corresponding key code for ``a_wel_code''.
			-- (from EV_WEL_KEY_CONVERSION)
		require -- from EV_WEL_KEY_CONVERSION
			a_wel_code_valid: valid_wel_code (a_wel_code)

	key_code_to_wel (a_key_code: INTEGER_32): INTEGER_32
			-- Corresponding WEL code for ``a_key_code''.
			-- (from EV_WEL_KEY_CONVERSION)
		require -- from EV_WEL_KEY_CONVERSION
			a_key_code_valid: valid_key_code (a_key_code)
	
feature -- Duplication

	copy (other: like Current)
			-- Update current object using fields of object attached
			-- to `other', so as to yield equal objects.
			-- (from ANY)
		require -- from ANY
			other_not_void: other /= Void
			type_identity: same_type (other)
		ensure -- from ANY
			is_equal: is_equal (other)

	frozen deep_copy (other: like Current)
			-- Effect equivalent to that of:
			--		copy (`other' . deep_twin)
			-- (from ANY)
		require -- from ANY
			other_not_void: other /= Void
		ensure -- from ANY
			deep_equal: deep_equal (Current, other)

	frozen deep_twin: like Current
			-- New object structure recursively duplicated from Current.
			-- (from ANY)
		ensure -- from ANY
			deep_equal: deep_equal (Current, Result)

	frozen standard_copy (other: like Current)
			-- Copy every field of `other' onto corresponding field
			-- of current object.
			-- (from ANY)
		require -- from ANY
			other_not_void: other /= Void
			type_identity: same_type (other)
		ensure -- from ANY
			is_standard_equal: standard_is_equal (other)

	frozen standard_twin: like Current
			-- New object field-by-field identical to `other'.
			-- Always uses default copying semantics.
			-- (from ANY)
		ensure -- from ANY
			standard_twin_not_void: Result /= Void
			equal: standard_equal (Result, Current)

	frozen twin: like Current
			-- New object equal to `Current'
			-- twin calls copy; to change copying/twining semantics, redefine copy.
			-- (from ANY)
		ensure -- from ANY
			twin_not_void: Result /= Void
			is_equal: Result.is_equal (Current)
	
feature -- Basic operations

	bring_to_top
			-- Bring this window to the top of the Z order.
			--
			-- Note:
			--  * If the window is a top-level window, it is activated.
			--  * If the window is a child window, the top-level parent window
			--    associated with the child window is activated.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	close_dockable_dialog (dockable_dialog: EV_DOCKABLE_DIALOG)
			-- Close request received by `dockable_dialog' so
			-- restore widget contained back to its original position
			-- in its old parent if possible.
			-- We must fire `dock_ended' actions.
			-- (from EV_DOCKABLE_SOURCE_I)
		ensure -- from EV_DOCKABLE_SOURCE_I
			dockable_dialog_destroyed: dockable_dialog.is_destroyed

	complete_dock
			-- Complete a dock from source_being_docked.
			-- (from EV_DOCKABLE_SOURCE_I)
		require -- from EV_DOCKABLE_SOURCE_I
			source_being_docked: source_being_docked /= Void
		ensure -- from EV_DOCKABLE_SOURCE_I
			not_dock_executing: not is_dock_executing
			insert_separator_not_parented: insert_sep.parent = Void
			insert_label_not_parented: insert_label.parent = Void

	frozen default: like Current
			-- Default value of object's type
			-- (from ANY)

	frozen default_pointer: POINTER
			-- Default value of type `POINTER'
			-- (Avoid the need to write `p'.default for
			-- some `p' of type `POINTER'.)
			-- (from ANY)

	default_rescue
			-- Process exception for routines with no Rescue clause.
			-- (Default: do nothing.)
			-- (from ANY)

	wel_destroy
			-- Destroy the window and quit the application
			-- if `Current' is the application's main window.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
		require -- from  EV_WIDGET_IMP
			True
		ensure -- from WEL_WINDOW
			not_exists: not exists

	disable_horizontal_scroll_bar
			-- Disable the horizontal scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	disable_vertical_scroll_bar
			-- Disable the vertical scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	frozen do_nothing
			-- Execute a null action.
			-- (from ANY)

	draw_menu
			-- Draw the menu bar associated with the window.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists
			has_menu: has_menu

	enable_horizontal_scroll_bar
			-- Enable the horizontal scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	enable_vertical_scroll_bar
			-- Enable the vertical scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	ev_set_minimum_height (value: INTEGER_32)
			-- Assign `value' to minimum_height.
			-- Should check if the user didn't set the minimum width
			-- before we set the new value.
			-- (from EV_SIZEABLE_CONTAINER_IMP)
		require -- from  EV_SIZEABLE_IMP
			True

	ev_set_minimum_size (a_width, a_height: INTEGER_32)
			-- Assign `mw' to minimum_width and `mh' to minimum_height.
			-- Should check if the user didn't set the minimum width
			-- before to set the new value.
			-- (from EV_SIZEABLE_CONTAINER_IMP)
		require -- from  EV_SIZEABLE_IMP
			True

	ev_set_minimum_width (value: INTEGER_32)
			-- Assign `value' to minimum_width.
			-- Should check if the user didn't set the minimum width
			-- before we set the new value.
			-- (from EV_SIZEABLE_CONTAINER_IMP)
		require -- from  EV_SIZEABLE_IMP
			True

	hide_cursor
			-- Hide the cursor.
			-- (from WEL_WINDOWS_ROUTINES)

	wel_hide_horizontal_scroll_bar
			-- Hide the horizontal scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	hide_scroll_bars
			-- Hide the horizontal and vertical scroll bars.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	wel_hide_vertical_scroll_bar
			-- Hide the vertical scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	insert_after (a_window: WEL_WINDOW)
			-- Insert the current window after `a_window'.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			a_window_not_void: a_window /= Void
			a_window_not_current: a_window /= Current
			a_window_exists: a_window.exists

	invalidate
			-- Invalide the entire client area of the window. The
			-- background will be erased before.
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	invalidate_rect (rect: WEL_RECT; erase_background: BOOLEAN)
			-- Invalidate the area `rect' and erase
			-- the background if `erase_background' is True.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			rect_not_void: rect /= Void

	invalidate_region (region: WEL_REGION; erase_background: BOOLEAN)
			-- Invalidate the area `region' and erase
			-- the background if `erase_background' is True.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			region_not_void: region /= Void
			region_exists: region.exists

	invalidate_without_background
			-- Invalidate the entire client area of the window. The
			-- background will not be erased.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	kill_timer (timer_id: INTEGER_32)
			-- Kill the timer identified by `timer_id'.
			-- See also set_timer, on_timer.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			positive_timer_id: timer_id > 0

	message_beep_asterisk
			-- Play the system asterisk waveform sound.
			-- (from WEL_WINDOWS_ROUTINES)

	message_beep_exclamation
			-- Play the system exclamation waveform sound.
			-- (from WEL_WINDOWS_ROUTINES)

	message_beep_hand
			-- Play the system hand waveform sound.
			-- (from WEL_WINDOWS_ROUTINES)

	message_beep_ok
			-- Play the system ok waveform sound.
			-- (from WEL_WINDOWS_ROUTINES)

	message_beep_question
			-- Play the system question waveform sound.
			-- (from WEL_WINDOWS_ROUTINES)

	wel_move (a_x, a_y: INTEGER_32)
			-- Move the window to `a_x', `a_y' position.
			-- (from WEL_CONTROL_WINDOW)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	move_absolute (a_x, a_y: INTEGER_32)
			-- Move the window to `a_x', `a_y' absolute position.
			-- (from WEL_COMPOSITE_WINDOW)
		require -- from WEL_COMPOSITE_WINDOW
			exists: exists

	wel_move_and_resize (a_x, a_y, a_width, a_height: INTEGER_32; repaint: BOOLEAN)
			-- Move the window to `a_x', `a_y' position and
			-- resize it with `a_width', `a_height'.
			-- (from WEL_CONTROL_WINDOW)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	notify_change (type: INTEGER_32; child: EV_SIZEABLE_IMP)
			-- Notify the current widget that the change identify by
			-- type have been done. For types, see `internal_changes'
			-- in class EV_SIZEABLE_IMP. If the container is shown,
			-- we integrate the changes immediatly, otherwise, we postpone
			-- them.
			-- Use the constants defined in EV_SIZEABLE_IMP
			-- (from EV_SIZEABLE_CONTAINER_IMP)

	output_debug_string (s: STRING_GENERAL)
			-- Send a string `s' to the system debugger.
			-- (from WEL_WINDOWS_ROUTINES)
		require -- from WEL_WINDOWS_ROUTINES
			s_not_void: s /= Void

	propagate_background_color
			-- Propagate the current background color of the
			-- container to the children.
			-- (from EV_CONTAINER_I)
		ensure -- from EV_CONTAINER_I
			background_color_propagated: interface.cell_background_color_propagated

	propagate_foreground_color
			-- Propagate the current foreground color of the
			-- container to the children.
			-- (from EV_CONTAINER_I)
		ensure -- from EV_CONTAINER_I
			foreground_color_propagated: interface.cell_foreground_color_propagated

	put_command (a_command: WEL_COMMAND; message: INTEGER_32; argument: ANY)
			-- Put `a_command' associated to `message'.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			a_command_not_void: a_command /= Void
			positive_message: message >= 0
		ensure -- from WEL_WINDOW
			command_added: command (message) = a_command and command_argument (message) = argument

	remove_command (message: INTEGER_32)
			-- Remove the command associated to `message'.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			positive_message: message >= 0
			command_exists: command_exists (message)
		ensure -- from WEL_WINDOW
			command_removed: not command_exists (message)

	wel_resize (a_width, a_height: INTEGER_32)
			-- Resize the window with `a_width', `a_height'.
			-- (from WEL_WINDOW)
		require -- from  EV_SIZEABLE_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	resource_string_id (an_id: INTEGER_32): STRING_32
			-- String identified by `an_id' in the resource file.
			-- (from WEL_WINDOWS_ROUTINES)
		ensure -- from WEL_WINDOWS_ROUTINES
			result_not_void: Result /= Void

	scroll (a_x, a_y: INTEGER_32)
			-- Scroll the contents of the window's client area.
			-- `a_x' and `a_y' specify the amount of horizontal
			-- and vertical scrolling.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	set_class_icon (new_icon: WEL_ICON)
			-- Replace the current icon for the class which this window
			-- belongs to.
			--
			-- The SetClassLong function replaces the specified 32-bit (long)
			-- value at the specified offset into the extra class memory
			-- or the WNDCLASSEX structure for the class to which the
			-- specified window belongs.
			-- (from WEL_WINDOW)

	set_class_small_icon (new_icon: WEL_ICON)
			-- Replace the current icon for the class which this window
			-- belongs to.
			--
			-- The SetClassLong function replaces the specified 32-bit (long)
			-- value at the specified offset into the extra class memory
			-- or the WNDCLASSEX structure for the class to which the
			-- specified window belongs.
			-- (from WEL_WINDOW)

	set_cursor_position_absolute (x, y: INTEGER_32)
			-- Set the cursor position to `x', `y'.
			-- (from WEL_WINDOWS_ROUTINES)

	set_z_order (z_order: POINTER)
			-- Set the z-order of the window.
			-- See class WEL_HWND_CONSTANTS for `z_order' values.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			valid_hwnd_constant: valid_hwnd_constant (z_order)

	show_cursor
			-- Show the cursor.
			-- (from WEL_WINDOWS_ROUTINES)

	wel_show_horizontal_scroll_bar
			-- Show the horizontal scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	show_scroll_bars
			-- Show the horizontal and vertical scroll bars.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	wel_show_vertical_scroll_bar
			-- Show the vertical scroll bar.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	show_with_option (cmd_show: INTEGER_32)
			-- Set the window's visibility with `cmd_show'.
			-- See class WEL_SW_CONSTANTS for `cmd_show' value.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			parent_shown: wel_parent /= Void implies wel_parent.exists and wel_parent.shown

	update
			-- Update the client area by sending a Wm_paint message.
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
		require -- from WEL_WINDOW
			exists: exists

	validate
			-- Validate the entire client area of the window.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists

	validate_rect (rect: WEL_RECT)
			-- Validate the area `rect'.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			rect_not_void: rect /= Void

	validate_region (region: WEL_REGION)
			-- Validate the area `region'.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			region_not_void: region /= Void
			region_exists: region.exists

	win_help (help_file: STRING_GENERAL; a_command, data: INTEGER_32)
			-- Start the Windows Help program with `help_file'.
			-- `a_command' specifies the type of help requested. See
			-- class WEL_HELP_CONSTANTS for `a_command' values.
			-- 'data' is depandant on 'a_command'.  Check MSDN for more details.
			-- (from WEL_WINDOW)
		require -- from WEL_WINDOW
			exists: exists
			help_file_not_void: help_file /= Void
	
feature -- Obsolete

	nc_minheight: INTEGER_32 is 2
			-- Used only in the notify_change feature to
			-- notify the parent that the minimum height of
			-- `Current' has changed.
			-- (from EV_SIZEABLE_IMP)

	nc_minsize: INTEGER_32 is 3
			-- Used only in the notify_change feature to
			-- notify the parent that both the minimum width
			-- and height of `Current' widget have changed.
			-- (from EV_SIZEABLE_IMP)

	nc_minwidth: INTEGER_32 is 1
			-- Used only in the notify_change feature to
			-- notify the parent that the minimum width of
			-- `Current' has changed.
			-- (from EV_SIZEABLE_IMP)
	
feature -- Inapplicable

	drag_cursor: EV_POINTER_STYLE
			-- Cursor used when `Current' is being transported.
			-- (from EV_DOCKABLE_SOURCE_I)
	
feature -- Implementation

	internal_disable_dockable
			-- Enable or disable dockable.
			-- This has no implementation on Windows, as we do not need it.
			-- On Gtk, this is necessary, so that the necessary signal
			-- connections may be performed.
			-- Was declared in EV_DOCKABLE_SOURCE_IMP as synonym of internal_enable_dockable.
			-- (from EV_DOCKABLE_SOURCE_IMP)
		require -- from  EV_DOCKABLE_SOURCE_I
			True

	internal_enable_dockable
			-- Enable or disable dockable.
			-- This has no implementation on Windows, as we do not need it.
			-- On Gtk, this is necessary, so that the necessary signal
			-- connections may be performed.
			-- Was declared in EV_DOCKABLE_SOURCE_IMP as synonym of internal_disable_dockable.
			-- (from EV_DOCKABLE_SOURCE_IMP)
		require -- from  EV_DOCKABLE_SOURCE_I
			True
	
feature 

	allocated_brushes: EV_GDI_ALLOCATED_BRUSHES
			-- (from EV_SHARED_GDI_OBJECTS)

	allocated_pens: EV_GDI_ALLOCATED_PENS
			-- (from EV_SHARED_GDI_OBJECTS)
	
feature {ANY} 

	disable_horizontal_offset_set_to_zero_when_items_smaller_than_viewable_width
			-- Ensure is_horizontal_offset_set_to_zero_when_items_smaller_than_viewable_width is `False'
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			set: is_horizontal_offset_set_to_zero_when_items_smaller_than_viewable_width = False

	is_horizontal_offset_set_to_zero_when_items_smaller_than_viewable_width: BOOLEAN
			-- This is required for cases where you have two grids, one acting as a header for another.
			-- If the vertical scroll bar of one is displayed, and the simulated header does not have
			-- scroll bars displayed, then the virtual positions permitted are not in synch and we wish
			-- to turn off the automatic scrolling of the header grid as it should always change in synch
			-- with the main grid. This should probably be moved into the interface of EV_GRID at some point.
			-- (from EV_GRID_I)

	recompute_horizontal_scroll_bar
			-- Recompute horizontal scroll bar positioning.
			-- (from EV_GRID_I)
	
feature -- Access EV_DRAGABLE_SOURCE.

	dockable_dialog_target: EV_DOCKABLE_DIALOG
			-- A dockable dialog that will be created as
			-- necessary. This is not a local, to avoid it
			-- being garbage collected.
			-- (from EV_SHARED_TRANSPORT_I)

	global_drag_targets: ARRAYED_LIST [INTEGER_32]
			-- Shortcut to EV_APPLICATION.pnd_targets.
			-- (from EV_SHARED_TRANSPORT_I)

	insert_label: EV_CELL
			-- Label used to indicate where `Current' will be placed in target.
			-- (from EV_SHARED_TRANSPORT_I)
		ensure -- from EV_SHARED_TRANSPORT_I
			result_not_void: Result /= Void

	insert_label_imp: EV_CELL_I
			-- Once access to implementation of Insert_label.
			-- (from EV_SHARED_TRANSPORT_I)
		ensure -- from EV_SHARED_TRANSPORT_I
			Result /= Void

	insert_sep: EV_TOOL_BAR_SEPARATOR
			-- Once access to a separator used to indicate the insertion position
			-- when moving tool bar items.
			-- (from EV_SHARED_TRANSPORT_I)

	insert_sep_imp: EV_TOOL_BAR_SEPARATOR_I
			-- Once access to implementation of Insert_sep.
			-- (from EV_SHARED_TRANSPORT_I)
		ensure -- from EV_SHARED_TRANSPORT_I
			Result /= Void

	internal_screen: EV_SCREEN
			-- Once access to an EV_SCREEN.
			-- (from EV_SHARED_TRANSPORT_I)

	original_x_offset: INTEGER_16
			-- Original x_offset and original_y_offset of transport
			-- realtive to widget. Only used for dragable transports.
			-- (from EV_SHARED_TRANSPORT_I)

	original_y_offset: INTEGER_16
			-- Original x_offset and original_y_offset of transport
			-- realtive to widget. Only used for dragable transports.
			-- (from EV_SHARED_TRANSPORT_I)

	originating_source: EV_DOCKABLE_SOURCE_I
			-- Dragable source that originated the transport of `source_being_dragged'.
			-- (from EV_SHARED_TRANSPORT_I)

	remove_insert_label
			-- Remove Insert_label from its current parent.
			-- We must handle a special case for cells. If the parent is a cell,
			-- then we remove the cell from its parent, and then restore it.
			-- Otherwise, when the label, removed, the cell keeps it size, and cells
			-- are normally used with real_target when the cell must
			-- not be visible.
			-- (from EV_SHARED_TRANSPORT_I)
		ensure -- from EV_SHARED_TRANSPORT_I
			not_parented: insert_label.parent = Void

	remove_insert_sep
			-- Ensure `inset_sep' is not parented.
			-- (from EV_SHARED_TRANSPORT_I)
		ensure -- from EV_SHARED_TRANSPORT_I
			not_parented: insert_sep.parent = Void

	source_being_docked: EV_DOCKABLE_SOURCE_I
			-- Dragable source currently being transported. May be a
			-- WIDGET_IMP or an EV_TOOL_BAR_BUTTON_IMP.
			-- (from EV_SHARED_TRANSPORT_I)
	
feature -- Access EV_PICK_AND_DROPABLE.

	default_accept_cursor: EV_POINTER_STYLE
			-- Used in lieu of a user defined accept_cursor.
			-- (from EV_SHARED_TRANSPORT_I)

	default_deny_cursor: EV_POINTER_STYLE
			-- Used in lieu of a user defined deny_cursor.
			-- (from EV_SHARED_TRANSPORT_I)

	default_pixmaps: EV_STOCK_PIXMAPS
			-- Default pixmaps
			-- (from EV_SHARED_TRANSPORT_I)

	global_pnd_targets: HASH_TABLE [INTEGER_32, INTEGER_32]
			-- Shortcut to EV_APPLICATION.pnd_targets.
			-- (from EV_SHARED_TRANSPORT_I)

	rubber_band_is_drawn: BOOLEAN
			-- Is a rubber band line currently on the screen?
			-- (from EV_SHARED_TRANSPORT_I)
	
feature -- Access common.

	pointer_x: INTEGER_16
			-- (from EV_SHARED_TRANSPORT_I)

	pointer_y: INTEGER_16
			-- (from EV_SHARED_TRANSPORT_I)
	
feature -- Assertion test

	child_added (a_child: EV_WIDGET_IMP): BOOLEAN
			-- Has `a_child' been added properly?
			-- (from EV_CONTAINER_IMP)
	
feature -- Basic Operations

	refresh_now
			-- Refresh now.
			-- (from EV_WIDGET_IMP)
		require -- from  EV_WIDGET_I
			True
	
feature -- Basic operation

	internal_set_minimum_height (value: INTEGER_32)
			-- Make `value' the new minimum_height of `Current'.
			-- Should check if the user didn't set the minimum width
			-- before to set the new value.
			-- (from EV_SIZEABLE_IMP)
		require -- from EV_SIZEABLE_IMP
			positive_value: value >= 0

	internal_set_minimum_size (mw, mh: INTEGER_32)
			-- Make `mw' the new minimum_width and `mh' the new
			-- minimum_height of `Current'.
			-- Should check if the user didn't set the minimum width
			-- before to set the new value.
			-- (from EV_SIZEABLE_IMP)
		require -- from EV_SIZEABLE_IMP
			positive_mw: mw >= 0
			positive_mh: mh >= 0

	internal_set_minimum_width (value: INTEGER_32)
			-- Make `value' the new minimum_width of `Current'.
			-- Should check if the user didn't set the minimum width
			-- before to set the new value.
			-- (from EV_SIZEABLE_IMP)
		require -- from EV_SIZEABLE_IMP
			positive_value: value >= 0

	internal_set_size (mw, mh: INTEGER_32)
			-- Set `size' of child_cell.
			-- (from EV_SIZEABLE_IMP)
		require -- from EV_SIZEABLE_IMP
			positive_mw: mw >= 0
			positive_mh: mh >= 0

	parent_ask_resize (a_width, a_height: INTEGER_32)
			-- Called by the parent when the size of `Current' has to be
			-- changed to `a_width', `a_height'.
			-- (from EV_SIZEABLE_IMP)

	set_move_and_size (a_x_position, a_y_position, a_width, a_height: INTEGER_32)
			-- Move and resize the widget. Only the parent can call this feature
			-- because it doesn't notify the parent of the change.
			-- Equivalent of parent_ask_resize with move.
			-- (from EV_SIZEABLE_IMP)
	
feature -- Constants

	key_0: INTEGER_32 is 1
			-- (from EV_KEY_CONSTANTS)

	key_1: INTEGER_32 is 2
			-- (from EV_KEY_CONSTANTS)

	key_2: INTEGER_32 is 3
			-- (from EV_KEY_CONSTANTS)

	key_3: INTEGER_32 is 4
			-- (from EV_KEY_CONSTANTS)

	key_4: INTEGER_32 is 5
			-- (from EV_KEY_CONSTANTS)

	key_5: INTEGER_32 is 6
			-- (from EV_KEY_CONSTANTS)

	key_6: INTEGER_32 is 7
			-- (from EV_KEY_CONSTANTS)

	key_7: INTEGER_32 is 8
			-- (from EV_KEY_CONSTANTS)

	key_8: INTEGER_32 is 9
			-- (from EV_KEY_CONSTANTS)

	key_9: INTEGER_32 is 10
			-- (from EV_KEY_CONSTANTS)

	key_a: INTEGER_32 is 68
			-- (from EV_KEY_CONSTANTS)

	key_alt: INTEGER_32 is 96
			-- (from EV_KEY_CONSTANTS)

	key_b: INTEGER_32 is 69
			-- (from EV_KEY_CONSTANTS)

	key_back_space: INTEGER_32 is 40
			-- (from EV_KEY_CONSTANTS)

	key_backquote: INTEGER_32 is 56
			-- (from EV_KEY_CONSTANTS)

	key_backslash: INTEGER_32 is 54
			-- (from EV_KEY_CONSTANTS)

	key_c: INTEGER_32 is 70
			-- (from EV_KEY_CONSTANTS)

	key_caps_lock: INTEGER_32 is 45
			-- (from EV_KEY_CONSTANTS)

	key_close_bracket: INTEGER_32 is 52
			-- (from EV_KEY_CONSTANTS)

	key_comma: INTEGER_32 is 47
			-- (from EV_KEY_CONSTANTS)

	key_ctrl: INTEGER_32 is 95
			-- (from EV_KEY_CONSTANTS)

	key_d: INTEGER_32 is 71
			-- (from EV_KEY_CONSTANTS)

	key_dash: INTEGER_32 is 57
			-- (from EV_KEY_CONSTANTS)

	key_delete: INTEGER_32 is 67
			-- (from EV_KEY_CONSTANTS)

	key_down_arrow: INTEGER_32 is 59
			-- (from EV_KEY_CONSTANTS)

	key_e: INTEGER_32 is 72
			-- (from EV_KEY_CONSTANTS)

	key_end: INTEGER_32 is 65
			-- (from EV_KEY_CONSTANTS)

	key_enter: INTEGER_32 is 41
			-- (from EV_KEY_CONSTANTS)

	key_equal: INTEGER_32 is 48
			-- (from EV_KEY_CONSTANTS)

	key_escape: INTEGER_32 is 42
			-- (from EV_KEY_CONSTANTS)

	key_f: INTEGER_32 is 73
			-- (from EV_KEY_CONSTANTS)

	key_f1: INTEGER_32 is 27
			-- (from EV_KEY_CONSTANTS)

	key_f10: INTEGER_32 is 36
			-- (from EV_KEY_CONSTANTS)

	key_f11: INTEGER_32 is 37
			-- (from EV_KEY_CONSTANTS)

	key_f12: INTEGER_32 is 38
			-- (from EV_KEY_CONSTANTS)

	key_f2: INTEGER_32 is 28
			-- (from EV_KEY_CONSTANTS)

	key_f3: INTEGER_32 is 29
			-- (from EV_KEY_CONSTANTS)

	key_f4: INTEGER_32 is 30
			-- (from EV_KEY_CONSTANTS)

	key_f5: INTEGER_32 is 31
			-- (from EV_KEY_CONSTANTS)

	key_f6: INTEGER_32 is 32
			-- (from EV_KEY_CONSTANTS)

	key_f7: INTEGER_32 is 33
			-- (from EV_KEY_CONSTANTS)

	key_f8: INTEGER_32 is 34
			-- (from EV_KEY_CONSTANTS)

	key_f9: INTEGER_32 is 35
			-- (from EV_KEY_CONSTANTS)

	key_g: INTEGER_32 is 74
			-- (from EV_KEY_CONSTANTS)

	key_h: INTEGER_32 is 75
			-- (from EV_KEY_CONSTANTS)

	key_home: INTEGER_32 is 64
			-- (from EV_KEY_CONSTANTS)

	key_i: INTEGER_32 is 76
			-- (from EV_KEY_CONSTANTS)

	key_insert: INTEGER_32 is 66
			-- (from EV_KEY_CONSTANTS)

	key_j: INTEGER_32 is 77
			-- (from EV_KEY_CONSTANTS)

	key_k: INTEGER_32 is 78
			-- (from EV_KEY_CONSTANTS)

	key_l: INTEGER_32 is 79
			-- (from EV_KEY_CONSTANTS)

	key_left: INTEGER_32 is 60
			-- (from EV_KEY_CONSTANTS)

	key_left_meta: INTEGER_32 is 97
			-- (from EV_KEY_CONSTANTS)

	key_m: INTEGER_32 is 80
			-- (from EV_KEY_CONSTANTS)

	key_menu: INTEGER_32 is 99
			-- (from EV_KEY_CONSTANTS)

	key_n: INTEGER_32 is 81
			-- (from EV_KEY_CONSTANTS)

	key_num_lock: INTEGER_32 is 24
			-- (from EV_KEY_CONSTANTS)

	key_numpad_0: INTEGER_32 is 11
			-- (from EV_KEY_CONSTANTS)

	key_numpad_1: INTEGER_32 is 12
			-- (from EV_KEY_CONSTANTS)

	key_numpad_2: INTEGER_32 is 13
			-- (from EV_KEY_CONSTANTS)

	key_numpad_3: INTEGER_32 is 14
			-- (from EV_KEY_CONSTANTS)

	key_numpad_4: INTEGER_32 is 15
			-- (from EV_KEY_CONSTANTS)

	key_numpad_5: INTEGER_32 is 16
			-- (from EV_KEY_CONSTANTS)

	key_numpad_6: INTEGER_32 is 17
			-- (from EV_KEY_CONSTANTS)

	key_numpad_7: INTEGER_32 is 18
			-- (from EV_KEY_CONSTANTS)

	key_numpad_8: INTEGER_32 is 19
			-- (from EV_KEY_CONSTANTS)

	key_numpad_9: INTEGER_32 is 20
			-- (from EV_KEY_CONSTANTS)

	key_numpad_add: INTEGER_32 is 21
			-- (from EV_KEY_CONSTANTS)

	key_numpad_decimal: INTEGER_32 is 26
			-- (from EV_KEY_CONSTANTS)

	key_numpad_divide: INTEGER_32 is 22
			-- (from EV_KEY_CONSTANTS)

	key_numpad_multiply: INTEGER_32 is 23
			-- (from EV_KEY_CONSTANTS)

	key_numpad_subtract: INTEGER_32 is 25
			-- (from EV_KEY_CONSTANTS)

	key_o: INTEGER_32 is 82
			-- (from EV_KEY_CONSTANTS)

	key_open_bracket: INTEGER_32 is 51
			-- (from EV_KEY_CONSTANTS)

	key_p: INTEGER_32 is 83
			-- (from EV_KEY_CONSTANTS)

	key_page_down: INTEGER_32 is 63
			-- (from EV_KEY_CONSTANTS)

	key_page_up: INTEGER_32 is 62
			-- (from EV_KEY_CONSTANTS)

	key_pause: INTEGER_32 is 44
			-- (from EV_KEY_CONSTANTS)

	key_period: INTEGER_32 is 49
			-- (from EV_KEY_CONSTANTS)

	key_q: INTEGER_32 is 84
			-- (from EV_KEY_CONSTANTS)

	key_quote: INTEGER_32 is 55
			-- (from EV_KEY_CONSTANTS)

	key_r: INTEGER_32 is 85
			-- (from EV_KEY_CONSTANTS)

	key_right: INTEGER_32 is 61
			-- (from EV_KEY_CONSTANTS)

	key_right_meta: INTEGER_32 is 98
			-- (from EV_KEY_CONSTANTS)

	key_s: INTEGER_32 is 86
			-- (from EV_KEY_CONSTANTS)

	key_scroll_lock: INTEGER_32 is 46
			-- (from EV_KEY_CONSTANTS)

	key_semicolon: INTEGER_32 is 50
			-- (from EV_KEY_CONSTANTS)

	key_shift: INTEGER_32 is 94
			-- (from EV_KEY_CONSTANTS)

	key_slash: INTEGER_32 is 53
			-- (from EV_KEY_CONSTANTS)

	key_space: INTEGER_32 is 39
			-- (from EV_KEY_CONSTANTS)

	key_t: INTEGER_32 is 87
			-- (from EV_KEY_CONSTANTS)

	key_tab: INTEGER_32 is 43
			-- (from EV_KEY_CONSTANTS)

	key_u: INTEGER_32 is 88
			-- (from EV_KEY_CONSTANTS)

	key_up_arrow: INTEGER_32 is 58
			-- (from EV_KEY_CONSTANTS)

	key_v: INTEGER_32 is 89
			-- (from EV_KEY_CONSTANTS)

	key_w: INTEGER_32 is 90
			-- (from EV_KEY_CONSTANTS)

	key_x: INTEGER_32 is 91
			-- (from EV_KEY_CONSTANTS)

	key_y: INTEGER_32 is 92
			-- (from EV_KEY_CONSTANTS)

	key_z: INTEGER_32 is 93
			-- (from EV_KEY_CONSTANTS)
	
feature -- Contract support

	valid_key_code (a_code: INTEGER_32): BOOLEAN
			-- Is ``a_code'' a valid key code?
			-- (from EV_KEY_CONSTANTS)

	valid_wel_code (a_wel_code: INTEGER_32): BOOLEAN
			-- Is ``a_wel_code'' valid?
			-- (from EV_WEL_KEY_CONVERSION)
	
feature -- Default creation values

	default_height: INTEGER_32
			-- Default position and dimension when the window is
			-- created.
			-- Was declared in WEL_FRAME_WINDOW as synonym of Default_x, Default_y and Default_width.
			-- (from WEL_FRAME_WINDOW)

	default_id: INTEGER_32
			-- Default window id.
			-- (Zero by default).
			-- (from WEL_FRAME_WINDOW)

	default_width: INTEGER_32
			-- Default position and dimension when the window is
			-- created.
			-- Was declared in WEL_FRAME_WINDOW as synonym of Default_x, Default_y and Default_height.
			-- (from WEL_FRAME_WINDOW)

	default_x: INTEGER_32
			-- Default position and dimension when the window is
			-- created.
			-- Was declared in WEL_FRAME_WINDOW as synonym of Default_y, Default_width and Default_height.
			-- (from WEL_FRAME_WINDOW)

	default_y: INTEGER_32
			-- Default position and dimension when the window is
			-- created.
			-- Was declared in WEL_FRAME_WINDOW as synonym of Default_x, Default_width and Default_height.
			-- (from WEL_FRAME_WINDOW)
	
feature -- Deferred features

	has_tabstop: BOOLEAN
			-- Does `Current' exhibit all attributes to permit it to receive the
			-- focus while tabbing?
			-- (from EV_WIDGET_IMP)

	next_dlggroupitem (hdlg, hctl: POINTER; previous: BOOLEAN): POINTER
			-- Encapsulation of the SDK GetNextDlgGroupItem,
			-- because we cannot do a deferred feature become an
			-- external feature.
			-- (from EV_WIDGET_IMP)

	next_dlgtabitem (hdlg, hctl: POINTER; previous: BOOLEAN): POINTER
			-- Encapsulation of the SDK GetNextDlgTabItem,
			-- because we cannot do a deferred feature become an
			-- external feature.
			-- (from EV_WIDGET_IMP)

	next_tabstop_widget_from_parent (start_widget: EV_WIDGET; search_pos: INTEGER_32; forwards: BOOLEAN): EV_WIDGET_IMP
			-- Return the next widget that may be tabbed to as a result of pressing the tab key from `start_widget'
			-- by visiting the parent of `Current' with a search index determined by `search_pos' and `forwards'.
			-- (from EV_WIDGET_IMP)
		require -- from EV_WIDGET_IMP
			start_widget_not_void: start_widget /= Void
		ensure -- from EV_WIDGET_IMP
			result_not_void: Result /= Void

	return_current_if_next_tabstop_widget (start_widget: EV_WIDGET; search_pos: INTEGER_32; forwards: BOOLEAN): EV_WIDGET_IMP
			-- If `Current' is not equal to `start_widget' then return `Current' but only if `search_pos' is 1 and `forwards' or
			-- `search_pos' is 0 and not `forwards. This ensures that we return a container in the correct order (before or after)
			-- its children dependent on the state of `forwards'.
			-- (from EV_WIDGET_IMP)
		require -- from EV_WIDGET_IMP
			start_widget_not_void: start_widget /= Void

	start_widget_searched_cell: CELL [INTEGER_32]
			-- A cell to hold the seach index that the item tabbed from started with.
			-- This is necessary to prevent infinite recursion in the
			-- case where there is no next item as if we return to the
			-- original widget with the same search position, then we know we have exhausted all other possibilities.
			-- (from EV_WIDGET_IMP)

	wel_background_color: WEL_COLOR_REF
			-- `Result' is background color of `Current'.
			-- (from EV_WIDGET_IMP)

	wel_foreground_color: WEL_COLOR_REF
			-- `Result' is foreground color of `Current'.
			-- (from EV_WIDGET_IMP)
	
feature -- Element Change

	set_default_processing (value: BOOLEAN)
			-- Enable or disable default processing of window messages.
			-- (from WEL_RETURN_VALUE)
		ensure -- from WEL_RETURN_VALUE
			value_set: default_processing = value

	set_message_return_value (value: POINTER)
			-- Set the window-procedure-return-value.
			-- (from WEL_RETURN_VALUE)
		require -- from  EV_WIDGET_IMP
			True
		ensure -- from WEL_RETURN_VALUE
			has_return_value: has_return_value
			value_set: message_return_value = value
	
feature -- Event handling

	column_deselect_actions: ACTION_SEQUENCE [TUPLE [EV_GRID_COLUMN]]
			-- Actions to be performed when a column is deselected.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	column_select_actions: ACTION_SEQUENCE [TUPLE [EV_GRID_COLUMN]]
			-- Actions to be performed when a column is selected.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	create_conforming_pick_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Create a conforming_pick action sequence.
			-- (from EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_IMP)
		require -- from  EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			True

	create_focus_in_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Create a focus_in action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_focus_out_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Create a focus_out action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_key_press_actions: EV_KEY_ACTION_SEQUENCE
			-- Create a key_press action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_key_press_string_actions: EV_KEY_STRING_ACTION_SEQUENCE
			-- Create a key_press_string action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_key_release_actions: EV_KEY_ACTION_SEQUENCE
			-- Create a key_release action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_mouse_wheel_actions: EV_INTEGER_ACTION_SEQUENCE
			-- Create a mouse_wheel action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_new_item_actions: EV_NEW_ITEM_ACTION_SEQUENCE
			-- Create a new_item action sequence.
			-- (from EV_CONTAINER_ACTION_SEQUENCES_IMP)
		require -- from  EV_CONTAINER_ACTION_SEQUENCES_I
			True

	create_pick_actions: EV_PND_START_ACTION_SEQUENCE
			-- Create a pick action sequence.
			-- (from EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_IMP)
		require -- from  EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			True

	create_pick_ended_actions: EV_PND_FINISHED_ACTION_SEQUENCE
			-- Create a pick ended action sequence.
			-- (from EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_IMP)
		require -- from  EV_PICK_AND_DROPABLE_ACTION_SEQUENCES_I
			True

	create_pointer_button_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
			-- Create a pointer_button_press action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_pointer_button_release_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
			-- Create a pointer_button_release action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_pointer_double_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
			-- Create a pointer_double_press action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_pointer_enter_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Create a pointer_enter action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_pointer_leave_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Create a pointer_leave action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_pointer_motion_actions: EV_POINTER_MOTION_ACTION_SEQUENCE
			-- Create a pointer_motion action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	create_resize_actions: EV_GEOMETRY_ACTION_SEQUENCE
			-- Create a resize action sequence.
			-- (from EV_WIDGET_ACTION_SEQUENCES_IMP)
		require -- from  EV_WIDGET_ACTION_SEQUENCES_I
			True

	dock_ended_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Actions to be performed after a dock completes from `Current'.
			-- Either to a dockable target or a dockable dialog.
			-- (from EV_DOCKABLE_SOURCE_ACTION_SEQUENCES_I)
		ensure -- from EV_DOCKABLE_SOURCE_ACTION_SEQUENCES_I
			not_void: Result /= Void

	dock_started_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Actions to be performed when pebble is picked up.
			-- (from EV_DOCKABLE_SOURCE_ACTION_SEQUENCES_I)
		ensure -- from EV_DOCKABLE_SOURCE_ACTION_SEQUENCES_I
			not_void: Result /= Void

	docked_actions: EV_DOCKABLE_SOURCE_ACTION_SEQUENCE
			-- Actions to be performed
			-- (from EV_DOCKABLE_TARGET_ACTION_SEQUENCES_I)
		ensure -- from EV_DOCKABLE_TARGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	file_drop_actions: ACTION_SEQUENCE [TUPLE [LIST [STRING_32]]]
			-- Actions to be performed when an OS file drop occurs on `Current'.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	fill_background_actions: ACTION_SEQUENCE [TUPLE [EV_DRAWABLE, INTEGER_32, INTEGER_32, INTEGER_32, INTEGER_32]]
			-- Actions to be performed when part of the background area of the grid that is outside of the
			-- area filled by row_count and column_count needs to be redrawn.
			-- By default, the grid fills the area in its background_color. If one or more agents are
			-- contained in this action sequence, the grid is no longer responsible for drawing its background
			-- and the agents must redraw this area, otherwise graphical glitches may appear.
			-- The five pieces of event data passed are:
			-- drawable: EV_DRAWABLE The drawable into which you must draw the background.
			-- virtual_x: INTEGER The virtual x position of the area to be redrawn.
			-- virtual_y: INTEGER The virtual y position of the area to be redrawn.
			-- width: INTEGER The width of the area that must be redrawn.
			-- height: INTEGER The height of the area that must be redrawn.
			-- The upper left corner of the drawing must start at 0x0 in drawable with an area given by width
			-- and height. The virtual coordinates specify the position of the area in relation to the grid's
			-- virtual positiion which is essential if you wish to draw something such as a texture which must be
			-- matched based on its position.
			-- Note that fill_background_actions may be fired multiple times to fill the complete area of the
			-- background that is invalid.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			not_void: Result /= Void

	focus_in_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Actions to be performed when keyboard focus is gained.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	focus_out_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Actions to be performed when keyboard focus is lost.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	item_activate_actions: ACTION_SEQUENCE [TUPLE [EV_GRID_ITEM, EV_POPUP_WINDOW]]
			-- Actions to be performed to setup an item that is currently activated.
			-- Overrides default setup of activatable items.
			-- Arguments of TUPLE (with names for clarity):
			--
			-- activate_item: EV_GRID_ITEM -- The item that is currently activated.
			-- popup_window: EV_WINDOW -- The popup window used to interactively edit activate_item, window has already been sized and positioned.
			-- (from EV_GRID_ACTION_SEQUENCES_I)

	item_deactivate_actions: EV_GRID_ITEM_ACTION_SEQUENCE
			-- Actions to be performed when an item is deactivated.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	item_deselect_actions: EV_GRID_ITEM_ACTION_SEQUENCE
			-- Actions to be performed when an item is deselected.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	item_drop_actions: ACTION_SEQUENCE [TUPLE [EV_GRID_ITEM, ANY]]
			-- Actions to be performed when a pebble is dropped here.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			not_void: Result /= Void

	item_select_actions: EV_GRID_ITEM_ACTION_SEQUENCE
			-- Actions to be performed when an item is selected.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	key_press_actions: EV_KEY_ACTION_SEQUENCE
			-- Actions to be performed when a keyboard key is pressed.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	key_press_string_actions: EV_KEY_STRING_ACTION_SEQUENCE
			-- Actions to be performed when a keyboard press generates a displayable character.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	key_release_actions: EV_KEY_ACTION_SEQUENCE
			-- Actions to be performed when a keyboard key is released.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	mouse_wheel_actions: EV_INTEGER_ACTION_SEQUENCE
			-- Actions to be performed when mouse wheel is rotated.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	new_item_actions: EV_NEW_ITEM_ACTION_SEQUENCE
			-- Actions to be performed when a new item is added.
			-- (from EV_CONTAINER_ACTION_SEQUENCES_I)
		ensure -- from EV_CONTAINER_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pointer_button_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
			-- Actions to be performed when screen pointer button is pressed.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pointer_button_press_item_actions: ACTION_SEQUENCE [TUPLE [INTEGER_32, INTEGER_32, INTEGER_32, EV_GRID_ITEM]]
			-- Actions to be performed when a pointer press event is received by a grid.
			-- Arguments (with names for clarity):
			--
			-- x_pos: INTEGER -- The x position of the press in grid virtual coordinates.
			-- y_pos: INTEGER -- The y position of the press in grid virtual coordinates.
			-- a_button: INTEGER -- The index of the pressed button.
			-- item: EV_GRID_ITEM -- If the press occurred above an item, this is the pointed item, otherwise argument is set to `Void'.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	pointer_button_release_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
			-- Actions to be performed when screen pointer button is released.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pointer_button_release_item_actions: ACTION_SEQUENCE [TUPLE [INTEGER_32, INTEGER_32, INTEGER_32, EV_GRID_ITEM]]
			-- Actions to be performed when a pointer release event is received by a grid.
			-- Arguments (with names for clarity):
			--
			-- x_pos: INTEGER -- The x position of the release in grid virtual coordinates.
			-- y_pos: INTEGER -- The y position of the release in grid virtual coordinates.
			-- a_button: INTEGER -- The index of the released button.
			-- item: EV_GRID_ITEM -- If the release occurred above an item, this is the pointed item, otherwise argument is set to `Void'.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	pointer_double_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
			-- Actions to be performed when screen pointer is double clicked.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pointer_double_press_item_actions: ACTION_SEQUENCE [TUPLE [INTEGER_32, INTEGER_32, INTEGER_32, EV_GRID_ITEM]]
			-- Actions to be performed when a pointer double press event is received by a grid.
			-- Arguments (with names for clarity):
			--
			-- x_pos: INTEGER -- The x position of the double press in grid virtual coordinates.
			-- y_pos: INTEGER -- The y position of the double press in grid virtual coordinates.
			-- a_button: INTEGER -- The index of the pressed button.
			-- item: EV_GRID_ITEM -- If the double press occurred above an item, this is the pointed item, otherwise argument is set to `Void'.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	pointer_enter_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Actions to be performed when screen pointer enters widget.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pointer_enter_item_actions: ACTION_SEQUENCE [TUPLE [BOOLEAN, EV_GRID_ITEM]]
			-- Actions to be performed when a pointer enter event is received by a grid or grid item
			-- Arguments (with names for clarity):
			--
			-- on_grid: BOOLEAN -- Did the enter event occur for the grid?
			-- item: EV_GRID_ITEM -- If the enter event occurred for an item, this is the item.
			--
			-- Note that `on_grid' may be set to `True' and item may be non-Void
			-- in the case where the pointer enters a grid at a location where there
			-- is an item contained.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	pointer_leave_actions: EV_NOTIFY_ACTION_SEQUENCE
			-- Actions to be performed when screen pointer leaves widget.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pointer_leave_item_actions: ACTION_SEQUENCE [TUPLE [BOOLEAN, EV_GRID_ITEM]]
			-- Actions to be performed when a pointer leave event is received by a grid or grid item
			-- Arguments (with names for clarity):
			--
			-- on_grid: BOOLEAN -- Did the leave event occur for the grid?
			-- item: EV_GRID_ITEM -- If the leave event occurred for an item, this is the item.
			--
			-- Note that `on_grid' may be set to `True' and item may be non-Void
			-- in the case where the pointer leaves a grid from a location where there.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	pointer_motion_actions: EV_POINTER_MOTION_ACTION_SEQUENCE
			-- Actions to be performed when screen pointer moves.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pointer_motion_item_actions: ACTION_SEQUENCE [TUPLE [INTEGER_32, INTEGER_32, EV_GRID_ITEM]]
			-- Actions to be performed when a screen pointer moves over a grid.
			-- Arguments (with names for clarity):
			--
			-- x_pos: INTEGER -- The x position of the motion in grid virtual coordinates.
			-- y_pos: INTEGER -- The y position of the motion in grid virtual coordinates.
			-- item: EV_GRID_ITEM -- If the motion occurred above an item, this is the pointed item, otherwise argument is set to `Void'.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	post_draw_overlay_actions: ACTION_SEQUENCE [TUPLE [EV_DRAWABLE, EV_GRID_ITEM, INTEGER_32, INTEGER_32]]
			-- Actions to be performed after an item cell in `Current'  has been drawn. The four pieces of event data are:
			-- drawable: EV_DRAWABLE The drawable into which you may draw to overlay onto the already drawn item.
			-- grid_item: EV_GRID_ITEM The item which has just been drawn, may be Void in the case that an
			-- item cell is being drawn which does not contain an item.
			-- a_column_index: INTEGER The column index of the grid cell that has just been drawn.
			-- a_row_index: INTEGER The row index of the grid cell that has just been drawn.
			-- This is useful for drawing additional border styles or other such effects. The upper left corner
			-- of the item cell starts at coordinates 0x0 in the passed drawable. All drawing Performed
			-- in the drawable is clipped to width of the column at `a_column_index' and height of row at `a_row_index'.
			-- Note that the upper left corner of drawable corresponds to the upper left corner of the item
			-- cell and not the actual items horizontal position within the cell which may be greater than 0 if
			-- the item is within a tree structure. Use `horizontal_indent' of the item to determine this.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			not_void: Result /= Void

	pre_draw_overlay_actions: ACTION_SEQUENCE [TUPLE [EV_DRAWABLE, EV_GRID_ITEM, INTEGER_32, INTEGER_32]]
			-- Actions to be performed before the features of an item cell in `Current' have been drawn but after the background of
			-- the cell has been drawn. The four pieces of event data are:
			-- drawable: EV_DRAWABLE The drawable into which you may draw to overlay onto the already drawn background.
			-- grid_item: EV_GRID_ITEM The item which has just been drawn, may be Void in the case that an
			-- item cell is being drawn which does not contain an item.
			-- a_column_index: INTEGER The column index of the grid cell that has just been drawn.
			-- a_row_index: INTEGER The row index of the grid cell that has just been drawn.
			-- This is useful for drawing additional border styles or other such effects. The upper left corner
			-- of the item cell starts at coordinates 0x0 in the passed drawable. All drawing Performed
			-- in the drawable is clipped to width of the column at `a_column_index' and height of row at `a_row_index'.
			-- Note that the upper left corner of drawable corresponds to the upper left corner of the item
			-- cell and not the actual items horizontal position within the cell which may be greater than 0 if
			-- the item is within a tree structure. Use `horizontal_indent' of the item to determine this.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			not_void: Result /= Void

	remove_item_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET]]
			-- Actions to be performed before an item is removed.
			-- (from EV_CONTAINER_IMP)

	resize_actions: EV_GEOMETRY_ACTION_SEQUENCE
			-- Actions to be performed when size changes.
			-- (from EV_WIDGET_ACTION_SEQUENCES_I)
		ensure -- from EV_WIDGET_ACTION_SEQUENCES_I
			not_void: Result /= Void

	row_collapse_actions: EV_GRID_ROW_ACTION_SEQUENCE
			-- Actions to be performed when a row is collapsed.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	row_deselect_actions: EV_GRID_ROW_ACTION_SEQUENCE
			-- Actions to be performed when a row is deselected.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	row_expand_actions: EV_GRID_ROW_ACTION_SEQUENCE
			-- Actions to be performed when a row is expanded.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	row_select_actions: EV_GRID_ROW_ACTION_SEQUENCE
			-- Actions to be performed when a row is selected.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
		ensure -- from EV_GRID_ACTION_SEQUENCES_I
			result_not_void: Result /= Void

	virtual_position_changed_actions: ACTION_SEQUENCE [TUPLE [INTEGER_32, INTEGER_32]]
			-- Actions to be performed upon next idle after virtual_x_position or virtual_y_position changed in grid.
			-- Arguments (with names for clarity)
			--
			-- a_virtual_x_position: INTEGER -- New virtual_x_position of grid.
			-- a_virtual_y_position: INTEGER -- New virtual_y_position of grid.
			-- (from EV_GRID_ACTION_SEQUENCES_I)

	virtual_size_changed_actions: ACTION_SEQUENCE [TUPLE [INTEGER_32, INTEGER_32]]
			-- Actions to be performed upon next idle after virtual_width or virtual_height changed in grid.
			-- Arguments (with names for clarity)
			--
			-- a_virtual_width: INTEGER -- New virtual_width of grid.
			-- a_virtual_height: INTEGER -- New virtual_height of grid.
			-- (from EV_GRID_ACTION_SEQUENCES_I)
	
feature -- Externals

	cwin_show_window (hwnd: POINTER; cmd_show: INTEGER_32)
			-- SDK ShowWindow
			-- (from WEL_WINDOW)
		require -- from  EV_WIDGET_IMP
			True
	
feature -- Feature that should be directly implemented by externals

	show_window (hwnd: POINTER; cmd_show: INTEGER_32)
			-- Encapsulation of the cwin_show_window function of
			-- WEL_WINDOW. Normaly, we should be able to have directly
			-- cwin_show_window deferred but it does not wotk because
			-- it would be implemented by an external.
			-- (from EV_WIDGET_IMP)
	
feature -- Features that should be directly implemented by externals.

	cwin_get_next_dlggroupitem (hdlg, hctl: POINTER; previous: BOOLEAN): POINTER
			-- SDK GetNextDlgGroupItem
			-- (from EV_WEL_CONTROL_CONTAINER_IMP)
		require -- from  EV_WIDGET_IMP
			True

	cwin_get_next_dlgtabitem (hdlg, hctl: POINTER; previous: BOOLEAN): POINTER
			-- SDK GetNextDlgGroupItem
			-- (from EV_WEL_CONTROL_CONTAINER_IMP)
		require -- from  EV_WIDGET_IMP
			True
	
feature -- Markers

	fixme (comment: STRING_8)
			-- Mark code that has to be "fixed" with `comment'.
			-- (from REFACTORING_HELPER)
		require -- from REFACTORING_HELPER
			comment_not_void: comment /= Void

	to_implement (comment: STRING_8)
			-- Mark code that has to be "implemented" with `comment'.
			-- (from REFACTORING_HELPER)
		require -- from REFACTORING_HELPER
			comment_not_void: comment /= Void

	to_implement_assertion (comment: STRING_8): BOOLEAN
			-- Mark assertion that has to be "implemented" with `comment'.
			-- (from REFACTORING_HELPER)
		require -- from REFACTORING_HELPER
			comment_not_void: comment /= Void
	
feature -- Measurements

	column_count: INTEGER_32
			-- Number of columns in Current.
			-- (from EV_GRID_I)

	displayed_column_count: INTEGER_32
			-- Number of non-hidden columns displayed in Current.
			-- Equal to column_count if no columns have been
			-- hidden via hide.
			-- (from EV_GRID_I)

	row_count: INTEGER_32
			-- Number of rows in Current.
			-- (from EV_GRID_I)

	visible_row_count: INTEGER_32
			-- Number of visible rows in `Current'. When is_tree_enabled,
			-- a number of rows may be within a collapsed parent row, so these
			-- are ignored
			-- (from EV_GRID_I)
	
feature -- Output

	io: STD_FILES
			-- Handle to standard file setup
			-- (from ANY)

	out: STRING_8
			-- New string containing terse printable representation
			-- of current object
			-- Was declared in ANY as synonym of tagged_out.
			-- (from ANY)

	print (some: ANY)
			-- Write terse external representation of `some'
			-- on standard output.
			-- (from ANY)

	frozen tagged_out: STRING_8
			-- New string containing terse printable representation
			-- of current object
			-- Was declared in ANY as synonym of out.
			-- (from ANY)
	
feature -- Pick and Drop

	are_column_separators_enabled: BOOLEAN
			-- Is a vertical separator displayed in color separator_color after each column?
			-- (from EV_GRID_I)

	are_row_separators_enabled: BOOLEAN
			-- Is a horizontal separator displayed in color separator_color after each row?
			-- (from EV_GRID_I)

	drop_action_intermediary (a_pebble: ANY)
			-- A PND drop has occured on a grid item.
			-- (from EV_GRID_I)

	item_accept_cursor_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM], EV_POINTER_STYLE]
			-- Function used to retrieve the PND accept cursor for a particular item.
			-- (from EV_GRID_I)

	item_accepts_pebble (a_item: EV_GRID_ITEM; a_pebble: ANY): BOOLEAN
			-- Do any actions accept `a_pebble' for `a_item'.
			-- (from EV_GRID_I)
		require -- from EV_GRID_I
			a_pebble_not_void: a_pebble /= Void

	item_deny_cursor_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM], EV_POINTER_STYLE]
			-- Function used to retrieve the PND deny cursor for a particular item.
			-- (from EV_GRID_I)

	item_target: EV_GRID_ITEM
			-- Item currently at pointer position.
			-- (from EV_GRID_I)

	item_veto_pebble_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM, ANY], BOOLEAN]
			-- User item veto function.
			-- (from EV_GRID_I)

	separator_color: EV_COLOR
			-- Color used to display column and row separators.
			-- (from EV_GRID_I)

	set_accept_cursor (a_cursor: like accept_cursor)
			-- Set `a_cursor' to be displayed when the screen pointer is over a
			-- target that accepts pebble during pick and drop.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_I
			True

	set_deny_cursor (a_cursor: like deny_cursor)
			-- Set `a_cursor' to be displayed when the screen pointer is over a
			-- target that doesn't accept pebble during pick and drop.
			-- (from EV_GRID_I)
		require -- from  EV_PICK_AND_DROPABLE_I
			True

	set_item_accept_cursor_function (a_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM], EV_POINTER_STYLE])
			-- Assign `a_function' to item_accept_cursor_function.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			item_accept_cursor_function_set: item_accept_cursor_function = a_function

	set_item_deny_cursor_function (a_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM], EV_POINTER_STYLE])
			-- Assign `a_function' to item_deny_cursor_function.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			item_deny_cursor_function_set: item_deny_cursor_function = a_function

	set_item_pebble_function (a_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM], ANY])
			-- Set `a_function' to compute pebble.
			-- It will be called once each time a pick on the item area of the grid occurs, the result
			-- will be assigned to pebble for the duration of transport.
			-- When a pick occurs on an item, the item itself is passed.
			-- If a pick occurs and no item is present, then Void is passed.
			-- To handle this data use `a_function' of type
			-- FUNCTION [ANY, TUPLE [EV_GRID_ITEM], ANY] and return the
			-- pebble as a function of EV_GRID_ITEM.
			-- (from EV_GRID_I)

	set_item_veto_pebble_function (a_function: FUNCTION [ANY, TUPLE [EV_GRID_ITEM, ANY], BOOLEAN])
			-- Assign `a_function' to item_veto_pebble_function.
			-- (from EV_GRID_I)
		ensure -- from EV_GRID_I
			item_veto_pebble_function_set: item_veto_pebble_function = a_function

	user_pebble_function_intermediary (a_x, a_y: INTEGER_32): ANY
			-- Intermediary function used for grid item pick and drop.
			-- (from EV_GRID_I)

	user_pebble_function_intermediary_locked (a_x, a_y: INTEGER_32; locked: EV_GRID_LOCKED_I): ANY
			-- Intermediary function used for grid item pick and drop on the widgets comprising the locked columns and rows.
			-- (from EV_GRID_I)

	veto_pebble_function_intermediary (a_pebble: ANY): BOOLEAN
			-- Intermediary function used for pebble vetoing.
			-- (from EV_GRID_I)
	
feature -- Platform

	operating_environment: OPERATING_ENVIRONMENT
			-- Objects available from the operating system
			-- (from ANY)
	
feature -- Position

	set_position (new_x_position: INTEGER_32; new_y_position: INTEGER_32)
			-- Put at horizontal position `new_x_position' and at
			-- vertical position `new_y_position' relative to parent.
			-- (from EV_SIZEABLE_IMP)
	
feature -- Registration

	is_registered: BOOLEAN
			-- Is `window' registered?
			-- (from WEL_WINDOW)

	frozen register_current_window
			-- Register `Current' in window manager.
			-- (from WEL_WINDOW)
		ensure -- from WEL_WINDOW
			registered: is_registered
	
feature -- Standard window class values

	class_cursor: WEL_CURSOR
			-- Standard arrow cursor used to create the window
			-- class.
			-- Can be redefined to return a user-defined cursor.
			-- (from WEL_FRAME_WINDOW)
		ensure -- from WEL_FRAME_WINDOW
			result_not_void: Result /= Void
			result_exists: Result.exists

	class_icon: WEL_ICON
			-- Standard application icon used to create the
			-- window class.
			-- Can be redefined to return a user-defined icon.
			-- (from WEL_FRAME_WINDOW)
		ensure -- from WEL_FRAME_WINDOW
			result_not_void: Result /= Void
			result_exists: Result.exists

	class_menu_name: STRING_32
			-- Window's menu used to create the window class.
			-- Can be redefined to return a user-defined menu.
			-- (None by default).
			-- (from WEL_FRAME_WINDOW)
		ensure -- from WEL_FRAME_WINDOW
			result_not_void: Result /= Void

	class_style: INTEGER_32
			-- Standard style used to create the window class.
			-- Can be redefined to return a user-defined style.
			-- (from WEL_FRAME_WINDOW)

	class_window_procedure: POINTER
			-- Standard window procedure
			-- (from WEL_FRAME_WINDOW)
		ensure -- from WEL_FRAME_WINDOW
			result_not_null: Result /= default_pointer
	
feature -- WEL Implementation

	background_brush: WEL_BRUSH
			-- Current window background color used to refresh the window when
			-- requested by the WM_ERASEBKGND windows message.
			-- By default there is no background
			-- (from EV_CONTAINER_IMP)
		require -- from  WEL_WINDOW
			True
		ensure -- from WEL_WINDOW
			new_object: Result /= Void implies Result /= background_brush

	default_style: INTEGER_32
			-- Default style used by windows at creation.
			-- (from EV_WEL_CONTROL_CONTAINER_IMP)
		require -- from  WEL_WINDOW
			True
		require -- from  EV_WIDGET_IMP
			True
	
invariant
		-- from EV_WIDGET_I
	is_displayed_implies_show_requested: is_usable and is_displayed implies is_show_requested

		-- from EV_PICK_AND_DROPABLE_I
	user_interface_modes_mutually_exclusive: mode_is_pick_and_drop.to_integer + mode_is_drag_and_drop.to_integer + mode_is_target_menu.to_integer = 1
	pebble_function_takes_two_integer_open_operands: pebble_function /= Void implies pebble_function.valid_operands ([1, 1])

		-- from EV_ANY_I
	interface_coupled: is_usable implies interface /= Void and then interface.implementation = Current
	base_make_called: base_make_called

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

		-- from EV_DOCKABLE_SOURCE_I
	widget_or_item_source: not (widget_source_being_docked /= Void and item_source_being_docked /= Void)
	dock_executing: is_dock_executing implies widget_source_being_docked /= Void or item_source_being_docked /= Void

		-- from EV_POSITIONED_I
	minimum_width_positive_or_zero: is_usable implies minimum_width >= 0
	minimum_height_positive_or_zero: is_usable implies minimum_height >= 0

		-- from EV_CONTAINER_IMP
	new_item_actions_not_void: is_usable implies new_item_actions /= Void
	remove_item_actions_not_void: is_usable implies remove_item_actions /= Void

		-- from EV_GRID_I
	drawer_not_void: is_initialized implies drawer /= Void
	drawable_not_void: is_initialized implies drawable /= Void
	header_positioned_corrently: is_initialized implies header_viewport.x_offset >= 0 and header_viewport.y_offset = 0
	internal_client_y_valid_while_vertical_scrollbar_hidden: is_initialized and then is_vertical_scroll_bar_show_requested and then not vertical_scroll_bar.is_show_requested implies internal_client_y = 0
	internal_client_y_valid_while_vertical_scrollbar_shown: is_initialized and then vertical_scroll_bar.is_show_requested implies internal_client_y >= 0
	internal_client_x_valid_while_horizontal_scrollbar_hidden: is_initialized and then is_horizontal_scroll_bar_show_requested and then not horizontal_scroll_bar.is_show_requested implies internal_client_x = 0
	internal_client_x_valid_while_horizontal_scrollbar_shown: is_initialized and then horizontal_scroll_bar.is_show_requested implies internal_client_x >= 0
	row_heights_fixed_implies_row_offsets_void: is_initialized and then not uses_row_offsets implies row_offsets = Void
	row_lists_count_equal: is_initialized implies internal_row_data.count = rows.count
	displayed_column_count_not_greater_than_column_count: is_initialized implies displayed_column_count <= column_count
	computed_visible_row_count_equals_row_when_not_users_row_offsets: is_initialized and then not uses_row_offsets implies visible_row_count = row_count
	computed_visible_row_count_no_greater_than_rows: is_initialized implies visible_row_count <= row_count
	tree_disabled_implies_visible_rows_equal_hidden_rows: is_initialized and then not is_tree_enabled implies row_count - non_displayed_row_count = visible_row_count
	internal_viewport_positions_equal_to_viewports: is_initialized implies (viewport.x_offset = viewport_x_offset and viewport.y_offset = viewport_y_offset)
	tree_node_connector_color_not_void: is_initialized implies tree_node_connector_color /= Void

indexing
	copyright: "Copyright (c) 1984-2006, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	source: "[
		Eiffel Software
		356 Storke Road, Goleta, CA 93117 USA
		Telephone 805-685-1006, Fax 805-685-6869
		Website http://www.eiffel.com
		Customer support http://support.eiffel.com
	]"

end -- class EV_GRID_IMP