note description: "This class represents a scroll bar for scales" legal: "See notice at end of class."; status: "See notice at end of class."; date: "$Date$"; revision: "$Revision$" class SCALE_SCROLL_BAR_WINDOWS inherit WEL_SCROLL_BAR redefine parent, on_left_button_down, on_left_button_up, on_right_button_down, on_right_button_up, on_mouse_move end create make_vertical, make_horizontal feature -- Access parent: SCALE_IMP -- parent of current scroll bar on_left_button_down (keys, a_x, a_y: INTEGER) -- Respond to a 'left button down message'. do parent.on_left_button_down (keys, a_x + x, a_y + y) end on_left_button_up (keys, a_x, a_y: INTEGER) -- Respond to a 'left button up message'. do parent.on_left_button_up (keys, a_x + x, a_y + y) end on_right_button_down (keys, a_x, a_y: INTEGER) -- Respond to a `right button down message'. do parent.on_right_button_down (keys, a_x + x, a_y + y) end on_right_button_up (keys, a_x, a_y: INTEGER) -- Respond to a `right button up message'. do parent.on_right_button_up (keys, a_x + x, a_y + y) end on_mouse_move (keys, a_x, a_y: INTEGER) -- Respond to a `mouse move message'. do parent.on_mouse_move (keys, a_x + x, a_y + y) 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 -- class SCALE_SCROLLBAR_WINDOWS