src/share/classes/sun/awt/UngrabEvent.java

Print this page




  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.awt;
  27 
  28 import java.awt.AWTEvent;
  29 import java.awt.Component;
  30 
  31 /**
  32  * Sent when one of the following events occur on the grabbed window: <ul>
  33  * <li> it looses focus, but not to one of the owned windows
  34  * <li> mouse click on the outside area happens (except for one of the owned windows)
  35  * <li> switch to another application or desktop happens
  36  * <li> click in the non-client area of the owning window or this window happens
  37  * </ul>
  38  *
  39  * <p>Notice that this event is not generated on mouse click inside of the window area.
  40  * <p>To listen for this event, install AWTEventListener with {@value sun.awt.SunToolkit#GRAB_EVENT_MASK}
  41  */

  42 public class UngrabEvent extends AWTEvent {

  43     private final static int UNGRAB_EVENT_ID = 1998;
  44 
  45     public UngrabEvent(Component source) {
  46         super(source, UNGRAB_EVENT_ID);
  47     }
  48 
  49     public String toString() {
  50         return "sun.awt.UngrabEvent[" + getSource() + "]";
  51     }
  52 }


  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.awt;
  27 
  28 import java.awt.AWTEvent;
  29 import java.awt.Component;
  30 
  31 /**
  32  * Sent when one of the following events occur on the grabbed window: <ul>
  33  * <li> it looses focus, but not to one of the owned windows
  34  * <li> mouse click on the outside area happens (except for one of the owned windows)
  35  * <li> switch to another application or desktop happens
  36  * <li> click in the non-client area of the owning window or this window happens
  37  * </ul>
  38  *
  39  * <p>Notice that this event is not generated on mouse click inside of the window area.
  40  * <p>To listen for this event, install AWTEventListener with {@value sun.awt.SunToolkit#GRAB_EVENT_MASK}
  41  */
  42 @SuppressWarnings("serial")
  43 public class UngrabEvent extends AWTEvent {
  44 
  45     private final static int UNGRAB_EVENT_ID = 1998;
  46 
  47     public UngrabEvent(Component source) {
  48         super(source, UNGRAB_EVENT_ID);
  49     }
  50 
  51     public String toString() {
  52         return "sun.awt.UngrabEvent[" + getSource() + "]";
  53     }
  54 }