INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "MDI child window to insert into a MDI client window. ", "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_MDI_CHILD_WINDOW
inherit

WEL_FRAME_WINDOW
rename
make_child as make
redefine
call_default_window_procedure,
class_background,
class_name,
destroy,
internal_window_make,
move,
move_absolute,
move_and_resize,
parent
end
creation

make
feature -- Access

parent: WEL_MDI_FRAME_WINDOW
feature -- Basic operations

move_and_resize (a_x, a_y, a_width, a_height: INTEGER; repaint: BOOLEAN)
-- Move the window to `a_x', `a_y' position and
-- resize it with `a_width', `a_height'.

move (a_x, a_y: INTEGER)
-- Move the window to `a_x', `a_y' position.

move_absolute (a_x, a_y: INTEGER)
-- Move the window to `a_x', `a_y' absolute position.

destroy
-- Destroy the window.
end -- class WEL_MDI_CHILD_WINDOW

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES