indexing description: "Widget key press event." id: "$Id$" date: "$Date$" revision: "$Revision$" class KEY_PRESS_EV inherit EVENT creation make feature -- Access identifier: INTEGER is do Result := - Event_const.key_press_ev_id end symbol: EV_PIXMAP is do Result := Pixmaps.key_press_pixmap end internal_name: STRING is do Result := Event_const.key_press_label end eiffel_text: STRING is "add_key_press_command (" -- specific_add (a_widget: WIDGET; a_command: COMMAND) is -- -- Add `a_command' to `a_widget' according to the -- -- kind of event. -- do -- a_widget.add_key_press_action (a_command, Void) -- end -- -- specific_remove (a_widget: WIDGET; a_command: COMMAND) is -- -- Remove `a_command' from `a_widget' according to the -- -- kind of event. -- do -- a_widget.remove_key_press_action (a_command, Void) -- end end -- class KEY_PRESS_EV