note description: "This class represents a MS_IMPradio box" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class RADIO_BOX_IMP inherit RADIO_BOX_I BOX_WINDOWS rename make as row_column_make redefine class_name end create make feature -- Initialization make (a_radio_box: RADIO_BOX; man: BOOLEAN; oui_parent: COMPOSITE) -- Make a radio box. do create private_attributes parent ?= oui_parent.implementation create toggle_list.make initialize only_one := True managed := man end set_always_one (flag: BOOLEAN) -- Set `only_one' to `flag'. do only_one := flag end feature {NONE} -- Implementation only_one: BOOLEAN -- Can there be only one checked radio button? class_name: STRING_32 -- Class name once Result := "EvisionRadioBox" 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 RADIO_BOX_IMP