note description: "Action sequences for EV_ITEM_I." legal: "See notice at end of class." status: "See notice at end of class." keywords: "event, action, sequence" date: "Generated!" revision: "Generated!" deferred class EV_ITEM_ACTION_SEQUENCES_I feature -- Event handling pointer_motion_actions: EV_POINTER_MOTION_ACTION_SEQUENCE -- Actions to be performed when screen pointer moves. do if attached pointer_motion_actions_internal as l_result then Result := l_result else create Result pointer_motion_actions_internal := Result end ensure not_void: Result /= Void end feature {EV_ANY_I} -- Implementation pointer_motion_actions_internal: detachable EV_POINTER_MOTION_ACTION_SEQUENCE -- Implementation of once per object `pointer_motion_actions'. note option: stable attribute end; feature -- Event handling pointer_button_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE -- Actions to be performed when screen pointer button is pressed. do if attached pointer_button_press_actions_internal as l_result then Result := l_result else create Result pointer_button_press_actions_internal := Result end ensure not_void: Result /= Void end feature {EV_ANY_I} -- Implementation pointer_button_press_actions_internal: detachable EV_POINTER_BUTTON_ACTION_SEQUENCE -- Implementation of once per object `pointer_button_press_actions'. note option: stable attribute end; feature -- Event handling pointer_double_press_actions: EV_POINTER_BUTTON_ACTION_SEQUENCE -- Actions to be performed when screen pointer is double clicked. do if attached pointer_double_press_actions_internal as l_result then Result := l_result else create Result pointer_double_press_actions_internal := Result end ensure not_void: Result /= Void end feature {EV_ANY_I} -- Implementation pointer_double_press_actions_internal: detachable EV_POINTER_BUTTON_ACTION_SEQUENCE -- Implementation of once per object `pointer_double_press_actions'. note option: stable attribute end; note 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