indexing description: "Objects that manipulate objects of type EV_PIXMAP" author: "" date: "$Date$" revision: "$Revision$" class GB_EV_PIXMAP -- The following properties from EV_PIXMAPABLE are manipulated by `Current'. -- Pixmap - Performed on the real object and the display_object. inherit GB_EV_ANY undefine attribute_editor redefine attribute_editor, ev_type, modify_from_xml_after_build end GB_EV_PIXMAP_EDITOR_CONSTRUCTOR undefine default_create end GB_SHARED_DEFERRED_BUILDER undefine default_create end feature {GB_XML_STORE} -- Output generate_xml (element: XM_ELEMENT) is -- Generate an XML representation of `Current' in `element'. do if first.pixmap_path /= Void or uses_constant (pixmap_path_string) then add_string_element (element, pixmap_path_string, objects.first.pixmap_path) end end modify_from_xml (element: XM_ELEMENT) is -- Update all items in `objects' based on information held in `element'. do -- We set up some deferred building, as -- we must wait until all pixmaps have been loaded. -- They are loaded after regular constants, as they -- rely on other constants. deferred_builder.defer_building (Current, element) end modify_from_xml_after_build (element: XM_ELEMENT) is -- Update all items in `objects' based on information held in `element' -- post standard building of system. local element_info: ELEMENT_INFORMATION new_pixmap: EV_PIXMAP a_file_name: FILE_NAME pixmap_constant: GB_PIXMAP_CONSTANT constant_context: GB_CONSTANT_CONTEXT file: RAW_FILE do full_information := get_unique_full_info (element) element_info := full_information @ (pixmap_path_string) if element_info /= Void then if element_info.is_constant then pixmap_constant ?= constants.all_constants.item (element_info.data) create constant_context.make_with_context (pixmap_constant, object, type, pixmap_path_string) pixmap_constant.add_referer (constant_context) object.add_constant_context (constant_context) create new_pixmap new_pixmap := pixmap_constant.pixmap for_all_objects (agent {EV_PIXMAP}.copy (new_pixmap)) else create new_pixmap create a_file_name.make_from_string (element_info.data) create file.make (a_file_name) if file.exists then new_pixmap.set_with_named_file (element_info.data) for_all_objects (agent {EV_PIXMAP}.set_with_named_file (a_file_name)) for_all_objects (agent {EV_PIXMAP}.enable_pixmap_exists) else for_all_objects (agent {EV_PIXMAP}.disable_pixmap_exists) end -- We must know the path if successful or not. for_all_objects (agent {EV_PIXMAP}.set_pixmap_path (a_file_name)) end end end feature {GB_CODE_GENERATOR} -- Output generate_code (element: XM_ELEMENT; info: GB_GENERATED_INFO): ARRAYED_LIST [STRING] is -- `Result' is string representation of -- settings held in `Current' which is -- in a compilable format. local element_info: ELEMENT_INFORMATION do create Result.make (2) full_information := get_unique_full_info (element) element_info := full_information @ (pixmap_path_string) if element_info /= Void then if element_info.is_constant then Result.extend (info.name + ".copy (" + element_info.data + ")") else Result.extend (info.name + ".set_with_named_file (%"" + element_info.data + "%")") end end end end -- class GB_EV_PIXMAP