INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Information about messages Wm_mousemove, ", "Wm_lbuttondown, Wm_mbuttondown, Wm_rbuttondown, ", "Wm_lbuttonup, Wm_mbuttonup, Wm_rbuttonup, ", "Wm_lbuttondblclk, Wm_mbuttondblclk, Wm_rbuttondblclk. ", "Theses message are sent when the user clicks on the mouse. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_MOUSE_MESSAGE
inherit

WEL_MESSAGE_INFORMATION
end

WEL_MK_CONSTANTS
export
{NONE}
all
end

WEL_BIT_OPERATIONS
export
{NONE}
all
end
creation

make
feature -- Access

keys: INTEGER
-- Keys flags.
-- See class WEL_MK_CONSTANTS for different values.

x: INTEGER
-- Horizontal position of cursor

y: INTEGER
-- Vertical position of cursor
feature -- Status report

control_down: BOOLEAN
-- Is the CTRL key down?

shift_down: BOOLEAN
-- Is the SHIFT key down?

left_button_down: BOOLEAN
-- Is the left mouse button down?

right_button_down: BOOLEAN
-- Is the right mouse button down?

middle_button_down: BOOLEAN
-- Is the middle mouse button down?
end -- class WEL_MOUSE_MESSAGE

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES