note description: "Command to generate ribbon codes." date: "$Date$" revision: "$Revision$" class ER_GENERATE_CODE_COMMAND inherit ER_COMMAND create make feature {NONE} -- Initlization make -- Creation method do init create shared_singleton end feature -- Command execute -- local l_warning: EV_WARNING_DIALOG l_code_generator: like code_generator l_output_tool: ER_OUTPUT_TOOL do -- First clear output. l_output_tool := shared_singleton.output_tool if attached l_output_tool then l_output_tool.wipe_out end -- Must use local here, since `is_uicc_available' will initialize `uicc_full_path'. l_code_generator := code_generator if l_code_generator.is_uicc_available then if attached l_output_tool then l_output_tool.show end l_code_generator.generate_all_codes else if attached main_window as l_win then create l_warning.make_with_text ("Windows SDK 7.0 (or higher) not found, nothing generated.") l_warning.show_modal_to_window (l_win) end end end new_tool_bar_item: SD_TOOL_BAR_BUTTON -- New tool bar item do create Result.make Result.set_text ("Generate Code") Result.set_name ("Generate Code") Result.set_description ("Generate Code") Result.select_actions.extend (agent execute) tool_bar_items.extend (Result) end set_main_window (a_main_window: ER_MAIN_WINDOW) -- Set `main_window' with `a_main_window' do main_window := a_main_window end feature {NONE} -- Implementation shared_singleton: ER_SHARED_TOOLS -- Shared singleton code_generator: ER_COMMON_CODE_GENERATOR -- Code generate for current mode local l_factory: ER_CODE_GENERATOR_FACTORY do create l_factory Result := l_factory.code_generator end main_window: detachable ER_MAIN_WINDOW -- Main window related ;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