note description : "All shared access windows." legal: "See notice at end of class." status: "See notice at end of class." date : "$Date$" revision : "$Revision $" class EB_SHARED_INTERFACE_TOOLS inherit EB_SHARED_OUTPUT_TOOLS SHARED_EIFFEL_PROJECT EB_SHARED_MANAGERS ES_SHARED_PROMPT_PROVIDER export {NONE} all end SHARED_FLAGS export {NONE} all end feature -- Access has_modified_classes: BOOLEAN -- Are there unsaved class texts in the interface? do if is_gui then Result := Window_manager.has_modified_windows end end feature {NONE} -- Element change set_external_output_manager (a_external_output_manager: EB_EXTERNAL_OUTPUT_MANAGER) -- Set `a_output_manager' as Output manager for development windows do External_output_manager_cell.put (a_external_output_manager) end set_recent_projects_manager (a_recent_projects_manager: EB_RECENT_PROJECTS_MANAGER) -- Set `a_recent_projects_manager' as Recent projects manager for $EiffelGraphicalCompiler$ do Recent_projects_manager_cell.put (a_recent_projects_manager) end feature {NONE} -- Shared tools access dynamic_lib_window: EB_DYNAMIC_LIB_WINDOW -- Unique assembly tool do Result := Dynamic_lib_window_cell.item end dynamic_lib_window_is_valid: BOOLEAN -- Is the dynamic_lib window valid? do Result := (dynamic_lib_window /= Void) and then (not dynamic_lib_window.destroyed) end execution_parameters_dialog: EB_EXECUTION_PARAMETERS_DIALOG -- Project argument dialog do Result := execution_parameters_dialog_cell.item end execution_parameters_dialog_is_valid: BOOLEAN -- Is `execution_parameters_dialog' valid? do Result := execution_parameters_dialog /= Void end feature {NONE} -- Shared tools change set_dynamic_lib_window (a_dynamic_lib_window: EB_DYNAMIC_LIB_WINDOW) -- Makes `a_dynamic_lib_window' shared dynamic library tool. do Dynamic_lib_window_cell.put (a_dynamic_lib_window) end set_execution_parameters_dialog (a_dialog: EB_EXECUTION_PARAMETERS_DIALOG) -- Makes 'a_dialog' shared argument dialog. do execution_parameters_dialog_cell.put (a_dialog) end feature {NONE} -- Implementation Dynamic_lib_window_cell: CELL [EB_DYNAMIC_LIB_WINDOW] -- Cell for the dynamic library window once create Result.put (Void) end execution_parameters_dialog_cell: CELL [EB_EXECUTION_PARAMETERS_DIALOG] -- Cell for argument dialog once create Result.put (Void) end note copyright: "Copyright (c) 1984-2017, Eiffel Software" license: "GPL version 2 (see http://www.eiffel.com/licensing/gpl.txt)" licensing_options: "http://www.eiffel.com/licensing" copying: "[ This file is part of Eiffel Software's Eiffel Development Environment. Eiffel Software's Eiffel Development Environment is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License (available at the URL listed under "license" above). Eiffel Software's Eiffel Development Environment is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Eiffel Software's Eiffel Development Environment; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ]" source: "[ Eiffel Software 5949 Hollister Ave., 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 EB_SHARED_INTERFACE_TOOLS