tkormann 2002/06/14 05:08:23 Modified: sources/org/apache/batik/util SVGConstants.java Log: add constants Revision Changes Path 1.67 +36 -1 xml-batik/sources/org/apache/batik/util/SVGConstants.java Index: SVGConstants.java =================================================================== RCS file: /home/cvs/xml-batik/sources/org/apache/batik/util/SVGConstants.java,v retrieving revision 1.66 retrieving revision 1.67 diff -u -r1.66 -r1.67 --- SVGConstants.java 30 Apr 2002 08:45:16 -0000 1.66 +++ SVGConstants.java 14 Jun 2002 12:08:23 -0000 1.67 @@ -53,9 +53,29 @@ */ String SVG_SVGEVENTS_EVENT_TYPE = "SVGEvents"; + /** + * The event type for KeyEvent. + */ + String SVG_KEYEVENTS_EVENT_TYPE = "KeyEvents"; + // --------------------------------------------------------------------- /** + * The event type for 'keydown' KeyEvent. + */ + String SVG_KEYDOWN_EVENT_TYPE = "keydown"; + + /** + * The event type for 'keypress' KeyEvent. + */ + String SVG_KEYPRESS_EVENT_TYPE = "keypress"; + + /** + * The event type for 'keyup' KeyEvent. + */ + String SVG_KEYUP_EVENT_TYPE = "keyup"; + + /** * The event type for 'click' MouseEvent. */ String SVG_CLICK_EVENT_TYPE = "click"; @@ -136,6 +156,21 @@ String SVG_SVGZOOM_EVENT_TYPE = "SVGZoom"; // --------------------------------------------------------------------- + + /** + * The 'onkeyup' attribute name of type KeyEvents. + */ + String SVG_ONKEYUP_ATTRIBUTE = "onkeyup"; + + /** + * The 'onkeydown' attribute name of type KeyEvents. + */ + String SVG_ONKEYDOWN_ATTRIBUTE = "onkeydown"; + + /** + * The 'onkeypress' attribute name of type KeyEvents. + */ + String SVG_ONKEYPRESS_ATTRIBUTE = "onkeypress"; /** * The 'onabort' attribute name of type SVGEvents.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]