note description: "Objects that represent action sequences for EV_HEADER" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" deferred class EV_HEADER_ACTION_SEQUENCES inherit EV_ACTION_SEQUENCES feature -- Access item_pointer_button_press_actions: EV_LITE_ACTION_SEQUENCE [TUPLE [header_item: detachable EV_HEADER_ITEM; x_pos: INTEGER; y_pos: INTEGER; button_number: INTEGER]] -- Actions to be performed when a mouse pointer is pressed on a header item. -- -- header_item: EV_HEADER_ITEM -- The header item the event occurred upon. -- 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. -- button_number: INTEGER -- The mouse button number. do Result := implementation.item_pointer_button_press_actions ensure not_void: Result /= Void end item_pointer_double_press_actions: EV_LITE_ACTION_SEQUENCE [TUPLE [header_item: detachable EV_HEADER_ITEM; x_pos: INTEGER; y_pos: INTEGER; button_number: INTEGER]] -- Actions to be performed when a mouse pointer is double-pressed on a header item. -- -- header_item: EV_HEADER_ITEM -- The header item the event occurred upon. -- 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. -- button_number: INTEGER -- The mouse button number. do Result := implementation.item_pointer_double_press_actions ensure not_void: Result /= Void end item_resize_start_actions: EV_HEADER_ITEM_ACTION_SEQUENCE -- Actions to be performed when resizing begins on a header item. do Result := implementation.item_resize_start_actions ensure not_void: Result /= Void end item_resize_actions: EV_HEADER_ITEM_ACTION_SEQUENCE -- Actions to be performed as a header item is resized. do Result := implementation.item_resize_actions ensure not_void: Result /= Void end item_resize_end_actions: EV_HEADER_ITEM_ACTION_SEQUENCE -- Actions to be performed when resizing completes on a header item. do Result := implementation.item_resize_end_actions ensure not_void: Result /= Void end feature {NONE} -- Implementation implementation: EV_HEADER_ACTION_SEQUENCES_I deferred end note copyright: "Copyright (c) 1984-2014, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end