/openjdk7/jdk/src/share/classes/java/awt/event/ |
H A D | FocusEvent.java | 42 * There are two levels of focus events: permanent and temporary. Permanent 50 * reactivated. Both permanent and temporary focus events are delivered using 89 * A focus event can have two different levels, permanent and temporary. 97 boolean temporary; field in class:FocusEvent 118 * specified temporary state and opposite <code>Component</code>. 136 * @param temporary Equals <code>true</code> if the focus change is temporary; 147 public FocusEvent(Component source, int id, boolean temporary, argument 150 this.temporary = temporary; 172 FocusEvent(Component source, int id, boolean temporary) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | RequestFocusController.java | 32 boolean temporary, boolean focusedWindowChangeAllowed, 31 acceptRequestFocus(Component from, Component to, boolean temporary, boolean focusedWindowChangeAllowed, CausedFocusEvent.Cause cause) argument
|
H A D | CausedFocusEvent.java | 66 public CausedFocusEvent(Component source, int id, boolean temporary, argument 68 super(source, id, temporary, opposite);
|
H A D | KeyboardFocusManagerPeerImpl.java | 109 boolean temporary, 149 boolean temporary, 155 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time, cause); 165 boolean temporary, 170 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time); 107 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause, Component currentFocusOwner) argument 147 shouldNativelyFocusHeavyweight(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument 163 processSynchronousLightweightTransfer(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time) argument
|
H A D | NullComponentPeer.java | 184 (Component lightweightChild, boolean temporary, 183 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
|
H A D | AWTAccessor.java | 393 boolean temporary, 403 boolean temporary, 391 shouldNativelyFocusHeavyweight(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument 401 processSynchronousLightweightTransfer(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time) argument
|
/openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
H A D | WKeyboardFocusManagerPeer.java | 71 boolean temporary, 79 temporary, 69 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
|
H A D | WPrintDialogPeer.java | 132 public boolean requestFocus(boolean temporary, boolean focusedWindowChangeAllowed) { argument 137 (Component lightweightChild, boolean temporary, 136 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
|
H A D | WFileDialogPeer.java | 255 public boolean requestFocus(boolean temporary, argument 261 (Component lightweightChild, boolean temporary, 260 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
|
H A D | WComponentPeer.java | 664 public boolean requestFocus(Component lightweightChild, boolean temporary, argument 669 processSynchronousLightweightTransfer((Component)target, lightweightChild, temporary, 677 temporary, focusedWindowChangeAllowed, 705 temporary,
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | XKeyboardFocusManagerPeer.java | 101 boolean temporary, 108 temporary, 99 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
|
H A D | XEmbedChildProxyPeer.java | 171 boolean simulateMotifRequestFocus(Component lightweightChild, boolean temporary, argument 197 boolean temporary, 204 temporary, false, time, cause); 242 return simulateMotifRequestFocus(lightweightChild, temporary, focusedWindowChangeAllowed, time); 196 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
|
H A D | XComponentPeer.java | 294 final public boolean requestFocus(Component lightweightChild, boolean temporary, argument 299 processSynchronousLightweightTransfer(target, lightweightChild, temporary, 307 temporary, focusedWindowChangeAllowed, 349 temporary,
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | KeyboardFocusManager.java | 124 boolean temporary, 130 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time, cause); 134 boolean temporary, 139 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time); 296 * outstanding temporary focus transfer has completed, or the focus owner, 297 * if no outstanding temporary transfer exists. 634 * equivalent unless a temporary focus change is currently in effect. In 636 * owner when the temporary focus change ends. 661 * are equivalent unless a temporary focus change is currently in effect. 663 * owner when the temporary focu 2113 final boolean temporary; field in class:KeyboardFocusManager.LightweightFocusRequest 2116 LightweightFocusRequest(Component component, boolean temporary, CausedFocusEvent.Cause cause) argument 2139 HeavyweightFocusRequest(Component heavyweight, Component descendant, boolean temporary, CausedFocusEvent.Cause cause) argument 2151 addLightweightRequest(Component descendant, boolean temporary, CausedFocusEvent.Cause cause) argument 2223 processSynchronousLightweightTransfer(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time) argument 2327 shouldNativelyFocusHeavyweight(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument [all...] |
H A D | Component.java | 7452 * result of this request will have the specified temporary value. However, 7453 * because specifying an arbitrary temporary state may not be implementable 7464 * @param temporary true if the focus change is temporary, 7466 * more information on temporary focus changes see the 7477 protected boolean requestFocus(boolean temporary) { argument 7478 return requestFocusHelper(temporary, true); 7481 boolean requestFocus(boolean temporary, CausedFocusEvent.Cause cause) { argument 7482 return requestFocusHelper(temporary, true, cause); 7568 * result of this request will have the specified temporary valu 7593 requestFocusInWindow(boolean temporary) argument 7597 requestFocusInWindow(boolean temporary, CausedFocusEvent.Cause cause) argument 7601 requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed) argument 7606 requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed, CausedFocusEvent.Cause cause) argument 7666 isRequestFocusAccepted(boolean temporary, boolean focusedWindowChangeAllowed, CausedFocusEvent.Cause cause) argument 7745 acceptRequestFocus(Component from, Component to, boolean temporary, boolean focusedWindowChangeAllowed, CausedFocusEvent.Cause cause) argument [all...] |
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CPrinterDialogPeer.java | 76 public boolean requestFocus(boolean temporary, boolean focusedWindowChangeAllowed) { argument
|
H A D | CFileDialog.java | 380 public boolean requestFocus(Component lightweightChild, boolean temporary, argument
|
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | ComponentPeer.java | 343 * @param temporary {@code true} if the focus change is temporary, 353 boolean requestFocus(Component lightweightChild, boolean temporary, argument
|
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/ |
H A D | StubPeerCrash.java | 105 boolean temporary, 104 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/ |
H A D | LWComponentPeer.java | 862 public boolean requestFocus(Component lightweightChild, boolean temporary, argument 867 focusLog.finest("lightweightChild=" + lightweightChild + ", temporary=" + temporary + 872 getTarget(), lightweightChild, temporary, 878 getTarget(), lightweightChild, temporary, 931 getTarget(), temporary,
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/ |
H A D | Modality.txt | 66 is shown it temporary becomes a child of all its blocked windows
|
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ |
H A D | DistributionPointFetcher.java | 592 TrustAnchor temporary = 594 newTrustAnchors.add(temporary);
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JComponent.java | 1494 * @param temporary boolean indicating if the focus change is temporary 1501 public boolean requestFocus(boolean temporary) { argument 1502 return super.requestFocus(temporary); 1537 * @param temporary boolean indicating if the focus change is temporary 1544 protected boolean requestFocusInWindow(boolean temporary) { argument 1545 return super.requestFocusInWindow(temporary); 3556 boolean temporary, boolean focusedWindowChangeAllowed,
|