INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Information about message Wm_syscommand which is sent ", "when the user chooses a command from the System menu (also ", "known as Control menu) or when the user chooses the Maximize", "button or Minimize button. ", "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_SYSTEM_COMMAND_MESSAGE
inherit

WEL_MESSAGE_INFORMATION
end

WEL_SC_CONSTANTS
export
{NONE}
all
end
creation

make
feature -- Access

type: INTEGER
-- Type of system command requested.
-- See class WEL_SC_CONSTANTS for different values.

x: INTEGER
-- Horizontal position in screen coordinates

y: INTEGER
-- Vertical position in screen coordinates
feature -- Status report

is_close: BOOLEAN
-- Is the command type "Close"?

is_size: BOOLEAN
-- Is the command type "Size"?

is_move: BOOLEAN
-- Is the command type "Move"?

is_minimize: BOOLEAN
-- Is the command type "Minimize"?

is_maximize: BOOLEAN
-- Is the command type "Maximize"?

is_next_window: BOOLEAN
-- Is the command type "Next window"?

is_previous_window: BOOLEAN
-- Is the command type "Previous window"?

is_vertical_scroll: BOOLEAN
-- Is the command type "Vertical scroll"?

is_horizontal_scroll: BOOLEAN
-- Is the command type "Horizontal scroll"?

is_mouse_menu: BOOLEAN
-- Is the command type "Mouse menu"?

is_key_menu: BOOLEAN
-- Is the command type "Key menu"?

is_arrange: BOOLEAN
-- Is the command type "Arrange"?

is_restore: BOOLEAN
-- Is the command type "Restore"?

is_task_list: BOOLEAN
-- Is the command type "Task list"?

is_screen_save: BOOLEAN
-- Is the command type "Screen save"?

is_hot_key: BOOLEAN
-- Is the command type "Hot key"?
end -- class WEL_SYSTEM_COMMAND_MESSAGE

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES