gpt4 book ai didi

java - 在 JLayer 上方添加固定大小的 JPanel

转载 作者:行者123 更新时间:2023-11-30 11:38:14 27 4
gpt4 key购买 nike

正在关注 Oracle's Myopia guide ,我有一个简单的 JPanel,它作为 JLayer 添加到 JFrame。很简单,这模糊了 JPanel 的组件。但是,我正在尝试在此 JPanel 之上添加第二个 JPanel(这意味着它不会变得模糊)。

简单的 JPanel 以及主要方法:

public class ContentPanel extends JPanel {

public ContentPanel() {
setLayout(new BorderLayout());
add(new JLabel("Hello world, this is blurry!"), BorderLayout.NORTH);
add(new JLabel("Hello world, this is blurry!"), BorderLayout.CENTER);
add(new JButton("Blurry button"), BorderLayout.SOUTH);
}

public static void main(String[] args) {

JFrame f = new JFrame("Foo");
f.setSize(300, 200);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setLocationRelativeTo(null);

LayerUI<JComponent> layerUI = new BlurLayerUI();
JPanel panel = new ContentPanel();
JLayer<JComponent> jlayer = new JLayer<JComponent>(panel, layerUI);

f.add(jlayer);
f.setVisible(true);
}

}

BlurLayerUI 模糊了它的“ child ”:

class BlurLayerUI extends LayerUI<JComponent> {
private BufferedImage mOffscreenImage;
private BufferedImageOp mOperation;

public BlurLayerUI() {
float ninth = 1.0f / 9.0f;
float[] blurKernel = { ninth, ninth, ninth, ninth, ninth, ninth, ninth,
ninth, ninth };
mOperation = new ConvolveOp(new Kernel(3, 3, blurKernel),
ConvolveOp.EDGE_NO_OP, null);

}

@Override
public void paint(Graphics g, JComponent c) {
int w = c.getWidth();
int h = c.getHeight();

if (w == 0 || h == 0) {
return;
}

// Only create the offscreen image if the one we have
// is the wrong size.
if (mOffscreenImage == null || mOffscreenImage.getWidth() != w
|| mOffscreenImage.getHeight() != h) {
mOffscreenImage = new BufferedImage(w, h,
BufferedImage.TYPE_INT_RGB);
}

Graphics2D ig2 = mOffscreenImage.createGraphics();
ig2.setClip(g.getClip());
super.paint(ig2, c);
ig2.dispose();

Graphics2D g2 = (Graphics2D) g;
g2.drawImage(mOffscreenImage, mOperation, 0, 0);
}
}

这将产生以下内容:

enter image description here

我试图简单地将第二个 JPanel 添加到 JFrame after 第一个,这只会导致第二个面板需要升起所有的空间。使用各种布局管理器和 set-Maximum/Preferred-size() 方法不会有任何好处。也不会使第二个面板背景透明。

我如何在 JLayer 之上添加一个固定大小的 JPanel,从而允许第一个面板的一部分出现(仍然模糊)?

最佳答案

根据您的评论,您希望在加载图像时模糊数据,我会推荐一个对话框。您可以将清晰的面板放在对话框上,使用 setUndecorated(true) 关闭它的框架和标题栏,并将其默认关闭行为设置为 DO_NOTHING_ON_CLOSE 以防止用户在加载应用程序之前关闭对话框。这将位于模糊面板的顶部,但由于它不是 BlurLayerUI 的一部分,因此不会被模糊。

关于java - 在 JLayer 上方添加固定大小的 JPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13687216/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com