/// <summary> /// <B>Deprecated.</B> <I>As of JDK version 1.1, /// replaced by <code>dispatchEvent(AWTEvent e)</code></I> /// </summary> public void deliverEvent(Event @e) { }
/// <summary> /// <B>Deprecated.</B> <I>As of JDK version 1.1, /// replaced by processKeyEvent(KeyEvent).</I> /// </summary> public virtual bool keyUp(Event @evt, int @key) { return default(bool); }
/// <summary> /// <B>Deprecated.</B> <I>As of JDK version 1.1 /// replaced by <code>dispatchEvent(AWTEvent)</code>.</I> /// </summary> public bool postEvent(Event @e) { return default(bool); }
/// <summary> /// <B>Deprecated.</B> <I>As of JDK version 1.1 /// replaced by processEvent(AWTEvent).</I> /// </summary> public bool handleEvent(Event @evt) { return default(bool); }
/// <summary> /// <B>Deprecated.</B> <I>As of JDK version 1.1, /// replaced by processFocusEvent(FocusEvent).</I> /// </summary> public bool gotFocus(Event @evt, object @what) { return default(bool); }
/// <summary> /// <B>Deprecated.</B> <I>As of JDK version 1.1, /// should register this component as ActionListener on component /// which fires action events.</I> /// </summary> public bool action(Event @evt, object @what) { return default(bool); }
/// <summary> /// <B>Deprecated.</B> <I>As of JDK version 1.1, /// replaced by processMouseEvent(MouseEvent).</I> /// </summary> public bool mouseUp(Event @evt, int @x, int @y) { return default(bool); }
//*******************************************************************// //* Detect key release //*******************************************************************// public override bool keyUp(Event evt, int key) { fKeyUp.ProcessKeyUp(key); fKeyDown.ProcessKeyUp(key); fKeyLeft.ProcessKeyUp(key); fKeyRight.ProcessKeyUp(key); return true; }