Searched defs:focused (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/awt/Focus/FocusOwnerFrameOnClick/
H A DFocusOwnerFrameOnClick.java50 AtomicBoolean focused = new AtomicBoolean(false); field in class:FocusOwnerFrameOnClick
102 throw new TestFailedException("The frame wasn't focused on click");
/openjdk7/jdk/test/java/awt/Focus/WindowInitialFocusTest/
H A DWindowInitialFocusTest.java27 @summary A Window should be initially focused on its showing (XAWT bug).
43 AtomicBoolean focused = new AtomicBoolean(false); field in class:WindowInitialFocusTest
71 synchronized (focused) {
72 focused.set(true);
73 focused.notifyAll();
80 // Test 1. Show the window, check that it become focused.
85 if (!Util.waitForCondition(focused, 2000L)) {
86 throw new TestFailedException("the window didn't get focused on its showing!");
89 // Test 2. Show unfocusable window, check that it doesn't become focused.
95 focused
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCEmbeddedFrame.java41 private boolean focused = true; field in class:CEmbeddedFrame
113 public void handleFocusEvent(boolean focused) { argument
114 this.focused = focused;
115 if (focused) {
124 responder.handleWindowFocusEvent(focused, null);
143 if (focused && parentWindowActive) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthLookAndFeel.java125 boolean focused, boolean enabled,
131 if (focused) {
138 if (focused) {
145 if (focused) {
950 * the specified component differ between focused and unfocused states.
124 setSelectedUI(ComponentUI uix, boolean selected, boolean focused, boolean enabled, boolean rollover) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DListHelper.java310 // FIXME: multi-select needs separate focused index
334 // FIXME: for multi-select, move the focused item, not the selected item
527 // FIXME: if none of the items were focused, paint focus around the
539 boolean focused) {
553 if (focused) {
534 paintItem(Graphics g, Color[] colors, String string, int x, int y, int width, int height, boolean selected, boolean focused) argument
H A DXEmbedServerTester.java45 boolean focused; field in class:XEmbedServerTester
308 throw new RuntimeException("Accelerator has been activated in focused client");
354 throw new RuntimeException("Accelerator has been activated in focused client");
479 boolean weFocused = focused;
577 throw new RuntimeException("Wrong focused server component, should be 0, but it is " + focusedServerComponent);
582 throw new RuntimeException("Wrong focused server component, should be 2, but it is " + focusedServerComponent);
586 if (!focused) {
594 if (focused) {
599 if (!focused) {
650 focused
[all...]
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java365 private static final PropertyEncoding focused = new PropertyEncoding(MASK, SHIFT); field in class:JRSUIConstants.Focused
368 super(focused, value);
413 private static final PropertyEncoding focused = new PropertyEncoding(MASK, SHIFT); field in class:JRSUIConstants.ArrowsOnly
416 super(focused, value);
429 private static final PropertyEncoding focused = new PropertyEncoding(MASK, SHIFT); field in class:JRSUIConstants.FrameOnly
432 super(focused, value);
445 private static final PropertyEncoding focused = new PropertyEncoding(MASK, SHIFT); field in class:JRSUIConstants.SegmentTrailingSeparator
448 super(focused, value);
477 private static final PropertyEncoding focused = new PropertyEncoding(MASK, SHIFT); field in class:JRSUIConstants.NothingToScroll
480 super(focused, valu
493 private static final PropertyEncoding focused = new PropertyEncoding(MASK, SHIFT); field in class:JRSUIConstants.WindowTitleBarSeparator
509 private static final PropertyEncoding focused = new PropertyEncoding(MASK, SHIFT); field in class:JRSUIConstants.WindowClipCorners
[all...]

Completed in 207 milliseconds