indexing description: "Eiffel Vision cell, GTK+ implementation." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class EV_CELL_IMP inherit EV_CELL_I undefine propagate_foreground_color, propagate_background_color redefine interface end EV_CONTAINER_IMP redefine interface, replace end EV_DOCKABLE_TARGET_IMP redefine interface end create make feature -- initialization make (an_interface: like interface) is -- Connect interface and initialize `c_object'. do base_make (an_interface) set_c_object ({EV_GTK_EXTERNALS}.gtk_event_box_new) end feature -- Access item: EV_WIDGET -- Current item. feature -- Element change replace (v: like item) is -- Replace `item' with `v'. do Precursor {EV_CONTAINER_IMP} (v) item := v end feature {EV_ANY_I} -- Implementation interface: EV_CELL; -- Provides a common user interface to possibly dependent -- functionality implemented by `Current'. indexing copyright: "Copyright (c) 1984-2006, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 356 Storke Road, 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 EV_CELL_IMP