note description: "Advance splash displayer for Windows platform." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class EV_ADVANCED_SPLASH_DISPLAYER inherit EV_ADVANCED_SPLASH_DISPLAYER_I create make feature{NONE} -- Initlization make -- Creation method. do end feature -- Command show -- Redefine local l_pixel_buffer: EV_PIXEL_BUFFER l_screen: EV_SCREEN do create l_pixel_buffer l_pixel_buffer.set_with_named_path (image_file_name) print_year (l_pixel_buffer, eiffel_layout.copyright_year) create layered_window.make_for_splash (l_pixel_buffer) create l_screen layered_window.set_position ((l_screen.width - l_pixel_buffer.width) // 2, (l_screen.height - l_pixel_buffer.height) // 2) layered_window.disconnect_from_window_manager layered_window.show end close -- Redefine do layered_window.clear end print_year (a_pixel_buffer: EV_PIXEL_BUFFER; a_year: STRING) -- Print `a_year' onto `a_pixel_buffer' require not_void: a_pixel_buffer /= Void not_void: a_year /= Void and then not a_year.is_empty local l_font: EV_FONT l_font_contants: EV_FONT_CONSTANTS l_coordinate: EV_COORDINATE do create l_font_contants create l_font.make_with_values (l_font_contants.family_roman, l_font_contants.weight_regular, l_font_contants.shape_regular, 9) create l_coordinate.make (73, 196) a_pixel_buffer.draw_text (a_year, l_font, l_coordinate) end feature -- Query is_executable: BOOLEAN -- Redefine local l_win_ver: WEL_WINDOWS_VERSION l_gdip_starter: WEL_GDIP_STARTER l_u: FILE_UTILITIES do create l_win_ver if l_win_ver.is_windows_2000_compatible then create l_gdip_starter if l_gdip_starter.is_gdi_plus_installed then Result := l_u.file_path_exists (image_file_name) end end end feature{NONE} -- Implementation layered_window: SD_FEEDBACK_INDICATOR -- Windows which show the splash image_file_name: PATH -- Image file name. do Result := eiffel_layout.bitmaps_path.extended ("png").extended ("splash_shadow.png") end note copyright: "Copyright (c) 1984-2012, 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