Here you can find the source of installJComponentRepainterOnWindowFocusChanged(JComponent component)
Parameter | Description |
---|---|
component | the JComponent to add the repaint focus listener to. |
public static void installJComponentRepainterOnWindowFocusChanged(JComponent component)
//package com.java2s; //License from project: Open Source License import java.awt.*; import java.awt.event.WindowEvent; import java.awt.event.WindowFocusListener; import java.lang.ref.WeakReference; import javax.swing.FocusManager; import javax.swing.JComponent; import javax.swing.SwingUtilities; import javax.swing.event.AncestorEvent; import javax.swing.event.AncestorListener; public class Main { /**/*from w w w . j a v a2 s. c o m*/ * Installs a listener on the given {@link JComponent}'s parent * {@link Window} that repaints the given component when the parent window's * focused state changes. If the given component does not have a parent at * the time this method is called, then an ancestor listener will be * installed that installs a window listener when the components parent * changes. * * @param component * the {@code JComponent} to add the repaint focus listener to. */ public static void installJComponentRepainterOnWindowFocusChanged(JComponent component) { // TODO check to see if the component already has an ancestor. final WindowFocusListener windowListener = createRepaintWindowListener(component); final AncestorListener ancestorListener = createAncestorListener(component, windowListener); component.addAncestorListener(ancestorListener); } /** * Creates a {@link WindowFocusListener} that calls repaint on the given * {@link JComponent} when focused gained or focus lost is called. */ private static WindowFocusListener createRepaintWindowListener(final JComponent component) { return new WindowFocusListener() { public void windowGainedFocus(WindowEvent e) { component.repaint(); } public void windowLostFocus(WindowEvent e) { component.repaint(); } }; } /** * Creates an {@link AncestorListener} that installs a weakly referenced * version of the given {@link WindowFocusListener} when the given * {@link JComponent}'s parent changes. */ private static AncestorListener createAncestorListener(JComponent component, final WindowFocusListener windowListener) { final WeakReference<JComponent> weakReference = new WeakReference<>(component); return new AncestorListener() { public void ancestorAdded(AncestorEvent event) { // TODO if the WeakReference's object is null, remove the WeakReference as an AncestorListener. final Window window = weakReference.get() == null ? null : SwingUtilities.getWindowAncestor(weakReference.get()); if (window != null) { window.removeWindowFocusListener(windowListener); window.addWindowFocusListener(windowListener); // notify the listener of the original focus state of the // window, which ensures // that the listener is in sync with the actual window // state. fireInitialFocusEvent(windowListener, window); } } private void fireInitialFocusEvent(WindowFocusListener windowListener, Window window) { Window focusedWindow = FocusManager.getCurrentManager().getFocusedWindow(); // fire a fake event to the given listener indicating the actual // focus state of the // given window. if (window.equals(focusedWindow)) { windowListener.windowGainedFocus(new WindowEvent(window, WindowEvent.WINDOW_GAINED_FOCUS)); } else { windowListener.windowGainedFocus(new WindowEvent(window, WindowEvent.WINDOW_LOST_FOCUS)); } } public void ancestorRemoved(AncestorEvent event) { Window window = weakReference.get() == null ? null : SwingUtilities.getWindowAncestor(weakReference.get()); if (window != null) { window.removeWindowFocusListener(windowListener); } } public void ancestorMoved(AncestorEvent event) { // no implementation. } }; } }