INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Contains information about a window%'s maximized size and ", "position and its minimum and maximum tracking size. ", "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_MIN_MAX_INFO
inherit

WEL_STRUCTURE
end
creation

make,
make_by_pointer
feature -- Access

max_size: WEL_POINT
-- Maximized width and height of the window
ensure
result_not_void: Result /= void

max_position: WEL_POINT
-- Position of the left side of the maximized window
-- and the position of the top of the maximized window
ensure
result_not_void: Result /= void

min_track_size: WEL_POINT
-- Minimum tracking width and the minimum tracking
-- height of the window
ensure
result_not_void: Result /= void

max_track_size: WEL_POINT
-- Maximum tracking width and the minimum tracking
-- height of the window
ensure
result_not_void: Result /= void
feature -- Element change

set_max_size (point: WEL_POINT)
-- Set `max_size' with `point'.
require
point_not_void: point /= void
ensure
point_set: max_size.is_equal (point)

set_max_position (point: WEL_POINT)
-- Set `max_position' with `point'.
require
point_not_void: point /= void
ensure
point_set: max_position.is_equal (point)

set_min_track_size (point: WEL_POINT)
-- Set `min_track_size' with `point'.
require
point_not_void: point /= void
ensure
point_set: min_track_size.is_equal (point)

set_max_track_size (point: WEL_POINT)
-- Set `max_track_size' with `point'.
require
point_not_void: point /= void
ensure
point_set: max_track_size.is_equal (point)
feature -- Measurement

structure_size: INTEGER
-- Size to allocate (in bytes)
end -- class WEL_MIN_MAX_INFO

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES