indexing
description: "[
Grid items that do not redraw themselves.
Implementation interface.
]"
legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date: 2006-03-14 17:02:52 -0800 (Tue, 14 Mar 2006) $"
revision: "$Revision: 57471 $"
class interface
EV_GRID_DRAWABLE_ITEM_I
create
make (an_interface: like interface)
`par'
EV_GRID_ITEM_I
require EV_ANY_I
an_interface_not_void: an_interface /= Void
ensure EV_ANY_I
interface_assigned: interface = an_interface
base_make_called: base_make_called
feature
background_color: EV_COLOR
EV_GRID_ITEM_I
column: EV_GRID_COLUMN
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
is_parented: is_parented
ensure EV_GRID_ITEM_I
column_not_void: Result /= Void
foreground_color: EV_COLOR
EV_GRID_ITEM_I
generating_type: STRING_8
ANY
generator: STRING_8
ANY
height: INTEGER_32
`Current'
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: is_parented
ensure EV_GRID_ITEM_I
result_non_negative: Result >= 0
horizontal_indent: INTEGER_32
`Current'column
parentrow
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: parent /= Void
ensure EV_GRID_ITEM_I
not_parent_tree_enabled_implies_result_zero: not parent.is_tree_enabled implies Result = 0
parent_tree_enabled_implies_result_greater_or_equal_to_zero: parent.is_tree_enabled implies Result >= 0
parent: EV_GRID
`Current'
EV_GRID_ITEM_I
required_width: INTEGER_32
set_required_width
row: EV_GRID_ROW
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: is_parented
ensure EV_GRID_ITEM_I
row_not_void: Result /= Void
tooltip: STRING_32
`Current'
`Result'`Void'`is_empty'
EV_GRID_ITEM_I
virtual_x_position: INTEGER_32
`Current'
parent
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: parent /= Void
ensure EV_GRID_ITEM_I
valid_result: parent /= Void implies Result >= 0 and Result <= parent.virtual_width - column.width + horizontal_indent
virtual_y_position: INTEGER_32
`Current'
parent
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: parent /= Void
ensure EV_GRID_ITEM_I
valid_result_when_parent_row_height_fixed: parent /= Void and then parent.is_row_height_fixed implies Result >= 0 and Result <= parent.virtual_height - parent.row_height
valid_result_when_parent_row_height_not_fixed: parent /= Void and then not parent.is_row_height_fixed implies Result >= 0 and Result <= parent.virtual_height - row.height
width: INTEGER_32
`Current'
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: is_parented
ensure EV_GRID_ITEM_I
result_non_negative: Result >= 0
feature
frozen deep_equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure 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
`some'`other'
ANY
ensure 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
`other'
ANY
require ANY
other_not_void: other /= Void
ensure 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
`some'`other'
ANY
ensure 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
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
conforms_to (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
is_hashable: BOOLEAN
HASHABLE
ensure HASHABLE
ok_if_not_default: Result implies (Current /= default)
is_parented: BOOLEAN
EV_GRID_ITEM_I
is_selectable: BOOLEAN
`Current'
EV_GRID_ITEM_I
is_selected: BOOLEAN
`Current'
EV_GRID_ITEM_I
same_type (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
definition: Result = (conforms_to (other) and other.conforms_to (Current))
feature
activate
`Current'
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: is_parented
deactivate
activate
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: is_parented
disable_select
is_selected`False'
EV_GRID_ITEM_I
require EV_DESELECTABLE_I
is_selectable: is_selectable
ensure EV_DESELECTABLE_I
deselected: not is_selected
enable_select
is_selected`True'
EV_GRID_ITEM_I
require EV_SELECTABLE_I
is_selectable: is_selectable
ensure EV_SELECTABLE_I
selected: is_selected
ensure_visible
`Current'parent
EV_GRID_ITEM_I
require EV_GRID_ITEM_I
parented: parent /= Void
ensure EV_GRID_ITEM_I
virtual_x_position_not_changed_if_indent_greater_or_equal_to_column_width: old (horizontal_indent > column.width) implies old virtual_x_position = virtual_x_position
virtual_x_position_not_changed_if_item_already_visible: old (virtual_x_position >= parent.virtual_x_position) and old (virtual_x_position + width <= parent.virtual_x_position + parent.viewable_width) implies old (virtual_x_position = virtual_x_position)
virtual_y_position_not_changed_if_item_already_visible: old (virtual_y_position >= parent.virtual_y_position) and old (virtual_y_position + height <= parent.virtual_y_position + parent.viewable_height) implies old (virtual_y_position = virtual_y_position)
row_visible_when_heights_fixed_in_parent: parent.is_row_height_fixed implies row.virtual_y_position >= parent.virtual_y_position and virtual_y_position + parent.row_height <= parent.virtual_y_position + (parent.viewable_height).max (parent.row_height)
row_visible_when_heights_not_fixed_in_parent: not parent.is_row_height_fixed implies row.virtual_y_position >= parent.virtual_y_position and virtual_y_position + row.height <= parent.virtual_y_position + (parent.viewable_height).max (row.height)
virtual_x_position_visible_if_indent_less_than_row_indent: horizontal_indent < column.width implies virtual_x_position >= parent.virtual_x_position and virtual_x_position + width <= parent.virtual_x_position + (parent.viewable_width).max (width)
redraw
`Current'
EV_GRID_ITEM_I
feature
set_background_color (a_color: like background_color)
background_color`a_color'
EV_GRID_ITEM_I
set_foreground_color (a_color: like foreground_color)
foreground_color`a_color'
EV_GRID_ITEM_I
ensure EV_GRID_ITEM_I
foreground_color_assigned: foreground_color = a_color
set_tooltip (a_tooltip: STRING_GENERAL)
`a_tooltip'tooltip
`Void'
EV_GRID_ITEM_I
ensure EV_GRID_ITEM_I
tooltip_reset: a_tooltip = Void implies tooltip = Void
tooltip_set: a_tooltip /= Void implies ((tooltip.same_type (a_tooltip) implies tooltip = a_tooltip) or (not tooltip.same_type (a_tooltip) implies tooltip.is_equal (a_tooltip)))
feature
copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_equal: is_equal (other)
frozen deep_copy (other: like Current)
copy`other'deep_twin
ANY
require ANY
other_not_void: other /= Void
ensure ANY
deep_equal: deep_equal (Current, other)
frozen deep_twin: like Current
ANY
ensure ANY
deep_equal: deep_equal (Current, Result)
frozen standard_copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_standard_equal: standard_is_equal (other)
frozen standard_twin: like Current
`other'
ANY
ensure ANY
standard_twin_not_void: Result /= Void
equal: standard_equal (Result, Current)
frozen twin: like Current
`Current'
twincopycopy
ANY
ensure ANY
twin_not_void: Result /= Void
is_equal: Result.is_equal (Current)
feature
frozen default: like Current
ANY
frozen default_pointer: POINTER
`POINTER'
`p'default
`p'`POINTER'
ANY
default_rescue
ANY
frozen do_nothing
ANY
feature
activate_actions: ACTION_SEQUENCE [TUPLE [EV_POPUP_WINDOW]]
`Current'
`activate_item'
EV_GRID_ITEM_ACTION_SEQUENCES_I
deactivate_actions: EV_NOTIFY_ACTION_SEQUENCE
`Current'
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
result_not_void: Result /= Void
deselect_actions: EV_NOTIFY_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
result_not_void: Result /= Void
drop_actions: EV_PND_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_button_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_button_release_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_double_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_enter_actions: EV_NOTIFY_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_leave_actions: EV_NOTIFY_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_motion_actions: EV_POINTER_MOTION_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
not_void: Result /= Void
select_actions: EV_NOTIFY_ACTION_SEQUENCE
EV_GRID_ITEM_ACTION_SEQUENCES_I
ensure EV_GRID_ITEM_ACTION_SEQUENCES_I
result_not_void: Result /= Void
feature
fixme (comment: STRING_8)
`comment'
REFACTORING_HELPER
require REFACTORING_HELPER
comment_not_void: comment /= Void
to_implement (comment: STRING_8)
`comment'
REFACTORING_HELPER
require REFACTORING_HELPER
comment_not_void: comment /= Void
to_implement_assertion (comment: STRING_8): BOOLEAN
`comment'
REFACTORING_HELPER
require REFACTORING_HELPER
comment_not_void: comment /= Void
feature
io: STD_FILES
ANY
out: STRING_8
ANYtagged_out
ANY
print (some: ANY)
`some'
ANY
frozen tagged_out: STRING_8
ANYout
ANY
feature
operating_environment: OPERATING_ENVIRONMENT
ANY
feature
set_required_width (a_required_width: INTEGER_32)
`a_required_width'required_width
require
a_required_width_non_negative: a_required_width >= 0
ensure
required_width_set: required_width = a_required_width
invariant
EV_GRID_ITEM_I
is_parented_implies_parents_set: is_parented implies parent_i /= Void and then column_i /= Void and then row_i /= Void
not_is_parented_implies_parents_not_set: not is_parented implies parent_i = Void and then column_i = Void and then row_i = Void
hash_code_valid: is_initialized implies ((not is_parented and hash_code = -1) or (is_parented and then hash_code > 0))
EV_ANY_I
interface_coupled: is_usable implies interface /= Void and then interface.implementation = Current
base_make_called: base_make_called
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
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 EV_GRID_DRAWABLE_ITEM_I