JLayer和JPanel的绘画问题

Ser*_*kyy 5 java swing jlayer

我想在用户输入无效时绘制一个图标.我找到了Oracle的一个例子并为我的目的修改了它.Icon的绘画工作正常,但是当我更改值以更正时,图标不会完全不可见:仍然会显示在JPanel上绘制的部分.

这是我的代码:

import java.awt.AlphaComposite;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.RenderingHints;
import java.awt.image.BufferedImage;
import java.text.NumberFormat;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JComponent;
import javax.swing.JFormattedTextField;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JLayer;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.plaf.LayerUI;

public class FieldValidator extends JPanel {
    private static final int ICON_SIZE = 12;
    private static final Icon ICON = createResizedIcon((ImageIcon) UIManager.getIcon("OptionPane.errorIcon"));
    public static void main(String[] args) {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                createUI();
            }
        });
    }

    public static void createUI() {
        final JFrame f = new JFrame ("FieldValidator");

        final JComponent content = createContent();

        f.add (content);

        f.pack();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setLocationRelativeTo (null);
        f.setVisible (true);
    }

    private static JComponent createContent() {
        final LayerUI<JPanel> panelUI = new ValidationLayerUI();

        // Number field.
        final JLabel numberLabel = new JLabel("Number:");

        final NumberFormat numberFormat = NumberFormat.getInstance();
        final JFormattedTextField numberField = new JFormattedTextField(numberFormat) {
            /**
             * {@inheritDoc}
             */
            @Override
            public void replaceSelection(String content) {
                super.replaceSelection(content);
                getParent().repaint();
            }
        };
        numberField.setColumns(16);
        numberField.setFocusLostBehavior(JFormattedTextField.PERSIST);
        numberField.setValue(42);

        final int i = (ICON_SIZE / 2) + (ICON_SIZE % 2);
        final JPanel numberPanel = new JPanel();
        numberPanel.add(numberLabel);
        final JPanel panel = new JPanel(new GridBagLayout());
        final GridBagConstraints constr = new GridBagConstraints();
        constr.insets = new Insets(i, i, i, i);
        constr.weightx = 1;
        constr.weighty = 1;
        constr.fill = GridBagConstraints.BOTH;
        panel.add(numberField, constr);
        numberPanel.add(new JLayer<JPanel>(panel, panelUI));

        return numberPanel;
    }

    //Icon resized to 12x12
    private static Icon createResizedIcon(ImageIcon anIcon) {
        final BufferedImage result = new BufferedImage(ICON_SIZE, ICON_SIZE, BufferedImage.TYPE_INT_ARGB);
        final Graphics2D g = result.createGraphics();
        g.setComposite(AlphaComposite.Src);
        g.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                RenderingHints.VALUE_INTERPOLATION_BICUBIC);
        g.drawImage(anIcon.getImage(), 0, 0, ICON_SIZE, ICON_SIZE, null);
        g.dispose();
        return new ImageIcon(result);

    }
    static class ValidationLayerUI extends LayerUI<JPanel> {

        @Override
        public void paint (Graphics g, JComponent c) {
            super.paint (g, c);
            final JLayer jlayer = (JLayer) c;
            final JPanel panel = (JPanel) jlayer.getView();
            final JFormattedTextField ftf = (JFormattedTextField) panel.getComponent(0);
            if (!ftf.isEditValid()) {
                ICON.paintIcon(panel, g, 0, panel.getHeight() - ICON.getIconHeight());
            }
        }

    }
}
Run Code Online (Sandbox Code Playgroud)

这是屏幕:初始一切都是正确的

在此输入图像描述

当我绘制无效图标时,所有内容仍然正确

在此输入图像描述

但是当值正确时,只会重新绘制文本字段

在此输入图像描述

如何强制JPanel重绘?

PS我已经找到了一个JLayeredPane的方法,它的工作正确,但我想知道我的代码有什么问题?

ate*_*rai 4

怎么样使用DocumentListener

numberField.getDocument().addDocumentListener(new DocumentListener() {
  @Override public void insertUpdate(DocumentEvent e) {
    //Container c = numberField.getParent();
    Container c = SwingUtilities.getUnwrappedParent(numberField);
    if (c != null) {
      c.repaint();
    }
  }
  @Override public void removeUpdate(DocumentEvent e) {
    insertUpdate(e);
  }
  @Override public void changedUpdate(DocumentEvent e) {}
});
Run Code Online (Sandbox Code Playgroud)

编辑

引用自此链接:在 AWT 和 Swing 中绘画

RepaintManager Swing 的 RepaintManager 类的目的是最大限度地提高Swing 包含层次结构上重绘处理的效率,并实现 Swing 的“重新验证”机制(后者将成为单独文章的主题)。它通过拦截 Swing 组件上的所有重绘请求(因此它们不再由 AWT 处理)并维护其自己的需要更新的状态(称为“脏区域”)来实现重绘机制。最后,它使用 invokeLater() 处理事件调度线程上的待处理请求,如“重绘处理”部分(选项 B)中所述。

在这种情况下,当状态更改时,父JPanel区域不是脏区域isEditValid()。所以剩下以前的Icon油漆。

  • @SergiyMedvynskyy `JTextComponent#replaceSelection(...)` 未被调用,部分文本已被删除。 (2认同)