indexing description: "[ Example showing mouse events on drawable objects, figures and a zoomable container. ]" date: "$Date$" revision: "$Revision$" class FIGURE_ZOOM inherit EM_APPLICATION create make feature {NONE} -- Initialization make is -- Start main application. do -- Initiliase subsystems initialize_screen -- Check subsystem initialisation if Video_subsystem.is_enabled then -- Set global options set_window_title ("EiffelMedia figure zoom") set_window_icon ("icon.png") set_application_id ("figure_zoom") -- Set first scene and launch it set_scene (create {FIRST_SCENE}.make_scene) launch -- Disable subsystems Video_subsystem.disable else io.error.put_string ("Unable to initialise video subsystem.%N") end end end