note description: "Information about message Wm_showwindow which is when a % %window is about to be hidden or shown." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class WEL_SHOW_WINDOW_MESSAGE inherit WEL_MESSAGE_INFORMATION WEL_SW_CONSTANTS export {NONE} all end create make feature -- Status report shown: BOOLEAN -- Is the window being shown? do Result := w_param.to_integer_32 = 1 end parent_opening: BOOLEAN -- Is window's owner window being restored? do Result := status = Sw_parentopening end parent_closing: BOOLEAN -- Is window's owner window being minimized? do Result := status = Sw_parentclosing end feature -- Access status: INTEGER -- Status of the window being shown. -- See class WEL_SW_CONSTANTS for differents values. do Result := l_param.to_integer_32 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 WEL_SHOW_WINDOW_MESSAGE