indexing description: "Objects that ..." author: "" date: "$Date$" revision: "$Revision$" class CHECK_BUTTON_TAB inherit ANY_TAB redefine make, current_widget end create make feature -- Initialization make (par: EV_CONTAINER) is -- Create the tab and initialise objects once Precursor {ANY_TAB} (Void) -- Creates the objects and their commands create label.make_with_text(Current, "All features are inherited from EV_TOGGLE_BUTTON,%Ntherefore there are no features unique to EV_CHECK_BUTTON to modify") set_child_position (label, 0, 0, 1, 1) set_parent(par) end feature -- Access name:STRING is -- Returns the name of the tab do Result:="Check Button" end feature -- Execution feature feature -- Access current_widget: EV_CHECK_BUTTON label: EV_LABEL end -- class CHECK_BUTTON_TAB --|---------------------------------------------------------------- --| EiffelVision2: library of reusable components for ISE Eiffel. --| Copyright (C) 1986-2001 Interactive Software Engineering Inc. --| All rights reserved. Duplication and distribution prohibited. --| May be used only with ISE Eiffel, under terms of user license. --| Contact ISE for any other use. --| --| Interactive Software Engineering Inc. --| ISE Building --| 360 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Electronic mail --| Customer support: http://support.eiffel.com> --| For latest info see award-winning pages: http://www.eiffel.com --|----------------------------------------------------------------