indexing description: "Objects that ..." legal: "See notice at end of class." status: "See notice at end of class." author: "" date: "$Date$" revision: "$Revision$" class STANDARD_DIALOG_TAB inherit ANY_TAB redefine make, current_widget end create make feature -- Initialization make(par: EV_CONTAINER) is -- Create the tab and initalise the objects. local cmd1,cmd2: EV_ROUTINE_COMMAND -- Commands used by the tab. do Precursor {ANY_TAB} (Void) set_parent (par) end feature -- Access name:STRING is -- Returns the name of the tab. do Result:="Standard Dialog" ensure then result_exists: Result /= Void end current_widget: EV_LIST -- The current demo. f1: TEXT_FEATURE_MODIFIER -- A feature modifier for the action window. b1: EV_BUTTON -- A button for the action window. feature -- Execution Feature indexing 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 STANDARD_DIALOG_TAB