java—如何在禁用突出显示的其他组件中排列透明的jtextpane

hk8txs48  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(391)

有人能给我一个如何显示透明屏幕的提示吗 JTextPane 它是其他组件的子组件,例如 JScrollPane 和一个 JPanel ,请。我用过 AlphaContainer 这是这里提供的透明度。
这是有效的:

chatTextPane = new JTextPane();
chatTextPane.setEditable(false);
chatTextPane.setHighlighter(null);
chatTextPane.setBackground(new Color(255,255,255,100));
AlphaContainer ac = new AlphaContainer(chatTextPane);   

JPanel chatPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
chatPanel.setOpaque(false);
chatPanel.add(ac);

看起来是这样的:

但是如果我把它 Package 成非不透明的 JScrollPane ,不再透明。如果我把 JScrollPane 在一个 AlphaContainer ,高亮显示再次启用(和buggy):

chatTextPane = new JTextPane();
chatTextPane.setEditable(false);
chatTextPane.setHighlighter(null);
chatTextPane.setBackground(new Color(255,255,255,100));
JScrollPane scrollPane = new JScrollPane(chatTextPane);
scrollPane.setOpaque(false);
AlphaContainer ac = new AlphaContainer(scrollPane);

JPanel chatPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
chatPanel.setOpaque(false);
chatPanel.add(ac);

看起来是这样的:

最后,我本来想把它添加到另一个面板上 JTextField 在一个 BoxLayout 也。如果我试试这个 JTextField 显示两次:一次正确显示在底部,但也显示在顶部(不可编辑)。

我已经试着解决这个问题好几个小时了,我对任何事情都心存感激。
下面是第二个示例的可运行代码:

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;

import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class MyClass {
    public static void main(String args[]) {
        new MyClass();
    }

    public MyClass() {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException
                        | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.getContentPane().setBackground(new Color(100, 0, 0, 255));

                //
                JTextPane chatTextPane = new JTextPane();
                chatTextPane.setEditable(false);
                chatTextPane.setHighlighter(null);
                chatTextPane.setPreferredSize(new Dimension(300, 300));
                chatTextPane.setBackground(new Color(255,255,255,100));
                chatTextPane.setText("testtesttesttesttesttest");
                JScrollPane scrollPane = new JScrollPane(chatTextPane);
                scrollPane.setOpaque(false);
                AlphaContainer ac = new AlphaContainer(scrollPane);

                JPanel chatPanel = new JPanel();
                chatPanel.setOpaque(false);
                chatPanel.add(ac);              
                //

                frame.add(chatPanel);
                frame.pack();
                frame.setVisible(true);
            }

        });
    }

    private class AlphaContainer extends JComponent {
        private JComponent component;

        public AlphaContainer(JComponent component) {
            this.component = component;
            setLayout(new BorderLayout());
            setOpaque(false);
            component.setOpaque(false);
            add(component);
        }

        /**
         * Paint the background using the background Color of the contained component
         */
        @Override
        public void paintComponent(Graphics g) {
            g.setColor(component.getBackground());
            g.fillRect(0, 0, getWidth(), getHeight());
        }
    }
}
e7arh2l6

e7arh2l61#

swing组件具有父/子关系。在你的情况下,它看起来像:
jframe公司
内容窗格(具有自定义背景色)
聊天面板
jscrollpane公司
jviewport视图
jtextpane
swing在子组件之前绘制父组件。因此,您希望先绘制内容窗格(不透明),然后再绘制“chatpanel”(半透明),然后所有其他子组件都是非不透明的。
所以有几个变化:
这个 AlphaContainer 需要在添加到内容窗格的组件上使用。
您可以使用:

//frame.add(chatPanel);
frame.add( new AlphaContainer(chatPanel) );

注:以下为 AlphaContainer 将使添加到其中的组件不不透明,因此不需要显式使用setopaque(false);
您需要使jtextpane不不透明(因为alphacontainer中没有单独添加的对象)。
你还需要做出决定 JViewport 非不透明。
这是通过使用:

scrollPane.getViewport().setOpaque( false );

也不要使用:

chatTextPane.setPreferredSize(new Dimension(300, 300));

只有当组件的首选大小大于滚动窗格的大小时,滚动条才会出现。如果硬编码首选大小,则不会显示滚动条,因为在向文本区域添加文本时首选大小不会更改。
在滚动窗格上设置首选大小。

相关问题