note description: "This class represents a MS_IMPcheck box" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class CHECK_BOX_IMP inherit CHECK_BOX_I BOX_WINDOWS rename make as row_column_make redefine class_name end create make feature {NONE} -- Initalization make (a_check_box: CHECK_BOX; man: BOOLEAN; oui_parent: COMPOSITE) -- Make a check box. do create private_attributes parent ?= oui_parent.implementation create toggle_list.make initialize managed := man end feature {NONE} -- Implementation class_name: STRING -- Class name once Result := "EvisionCheckBox" 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 CHECK_BOX_IMP