Lines Matching defs:heavyweight

122                 public int shouldNativelyFocusHeavyweight(Component heavyweight,
130 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time, cause);
132 public boolean processSynchronousLightweightTransfer(Component heavyweight,
139 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time);
141 public void removeLastFocusRequest(Component heavyweight) {
142 KeyboardFocusManager.removeLastFocusRequest(heavyweight);
2128 final Component heavyweight;
2135 heavyweight = null;
2139 HeavyweightFocusRequest(Component heavyweight, Component descendant,
2142 if (heavyweight == null) {
2143 log.fine("Assertion (heavyweight != null) failed");
2147 this.heavyweight = heavyweight;
2184 String str = "HeavyweightFocusRequest[heavweight=" + heavyweight +
2223 static boolean processSynchronousLightweightTransfer(Component heavyweight, Component descendant,
2227 Window parentWindow = SunToolkit.getContainingWindow(heavyweight);
2233 // heavyweight Container should be treated like lightweight
2235 descendant = heavyweight;
2247 heavyweight == manager.getNativeFocusOwner() &&
2256 // 'heavyweight' owns the native focus and there are no pending
2257 // requests. 'heavyweight' must be a Container and
2263 new HeavyweightFocusRequest(heavyweight, descendant,
2314 * preceded it, or if the specified heavyweight Component already owns the
2318 * corresponding FOCUS_GAINED event on the heavyweight is received.
2328 (Component heavyweight, Component descendant, boolean temporary,
2332 if (heavyweight == null) {
2333 log.fine("Assertion (heavyweight != null) failed");
2342 // heavyweight Container should be treated like lightweight
2344 descendant = heavyweight;
2355 String.valueOf(descendant), String.valueOf(heavyweight));
2371 heavyweight == nativeFocusOwner)
2381 // 'heavyweight' owns the native focus and there are no pending
2382 // requests. 'heavyweight' must be a Container and
2388 new HeavyweightFocusRequest(heavyweight, descendant,
2413 hwFocusRequest.heavyweight == heavyweight) {
2414 // 'heavyweight' doesn't have the native focus right now, but
2416 // descendant to the heavyweight's list of pending
2425 descendant + " in " + heavyweight);
2442 if (focusedWindowChanged(heavyweight,
2444 ? hwFocusRequest.heavyweight
2454 (new HeavyweightFocusRequest(heavyweight, descendant,
2489 ? SunToolkit.getContainingWindow(hwFocusRequest.heavyweight)
2505 if (hwFocusRequest.heavyweight == parent) {
2700 source = hwFocusRequest.heavyweight;
2705 nativeSource == hwFocusRequest.heavyweight)
2708 // or known click on a peer focusable heavyweight Component.
2755 && (hwFocusRequest == null || source != hwFocusRequest.heavyweight))
2803 (nativeOpposite == hwFocusRequest.heavyweight ||
2811 // or click on a peer focusable heavyweight Component.
2937 static void removeLastFocusRequest(Component heavyweight) {
2939 if (heavyweight == null) {
2940 log.fine("Assertion (heavyweight != null) failed");
2949 hwFocusRequest.heavyweight == heavyweight) {