Extra layers on top of JFrame

781 Views Asked by At

In my project, I have a display. It's code looks like this:

frame = new JFrame(title);

JPanel panel = new JPanel();
panel.setPreferredSize(new Dimension(width,height)); // I have it fullscreen
panel.setBorder(BorderFactory.createEmptyBorder());
panel.setLayout(new GridLayout(1,1)); // I tried this and it works like borderless/windowed fullscreen

frame.setSize(width, height);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
frame.setLocationRelativeTo(null);
frame.setUndecorated(true);

frame.setLayout(new GridLayout(1,1));
frame.getContentPane().add(panel,JLayeredPane.DEFAULT_LAYER);

canvas = new Canvas();
canvas.setPreferredSize(new Dimension(width, height));
canvas.setFocusable(false);

panel.add(canvas);

frame.pack();
frame.setVisible(true);

What I want to do, is when I press "~", there would appear a let's say... 50% transparent "console" window. Or just an extra layer with info like "noClip: on; x: 153,04" etc.

How should I add this in code? I tried something like JLayeredPane but it didn't seem to work. It's possible, that I didn't understand it well.

I'm not asking about listeners etc. The problem is the final methode "creating" this extra JFrame/JPanel or whatever it's needed to be.

----UPDATE----

I changed some things in my code, as Programer_Serbia suggested. Now it looks like this:

frame = new JFrame(title);
frame.setSize(width, height);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
frame.setLocationRelativeTo(null);
frame.setUndecorated(true);

JPanel panel = new JPanel();
panel.setPreferredSize(new Dimension(width,height));
panel.setBorder(BorderFactory.createEmptyBorder());
panel.setLayout(new GridLayout(1,1));

canvas = new Canvas();
canvas.setPreferredSize(new Dimension(width, height));
canvas.setFocusable(false);

panel.add(canvas);
frame.getContentPane().add(panel);
//frame.getLayeredPane().add(panel,new Integer(0));

frame.pack();
frame.setVisible(true);

I tried using frame.getLayeredPane().add(panel,new Integer(0)) instead of frame.getContentPane().add(panel). It doesn't show anything at all. Any ideas?

2

There are 2 best solutions below

0
On BEST ANSWER

There are several issues with your code.

  • You are calling setSize on the frame at the beginning, but pack() shortly before opening, which renders the configured size useless. Especially, when you don’t add anything to the content pane, but just to the layered pane, the preferred size of the undecorated window will be zero.

  • When you add components to the layered pane, you have to care for their size yourself. Nesting components into other components doesn’t make the job easier.

  • Since your example code doesn’t create any visual element, but just panels containing other panels and an empty canvas, there will be no visual indicator for success anyway.

  • Canvas doesn’t play nicely with Swing components. I doubt that you can make it transparent at all.

Here is a self-contained example with a (semi-)transparent popup:

final int width=500, height=500;
final String title = "Example";
JFrame frame = new JFrame(title);
frame.setBackground(Color.WHITE);
frame.setSize(width, height);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
frame.setLocationRelativeTo(null);
frame.setUndecorated(true);

JLabel popup = new JLabel("Popup") {
    // enforce filling of (transparent) background while opaque:=false
    @Override protected void paintComponent(Graphics g) {
        g.setColor(getBackground());
        g.fillRect(0, 0, getWidth(), getHeight());
        super.paintComponent(g);
    }
    @Override public boolean isOpaque() {
        return false;
    }
};
popup.setBackground(new Color(0x77996622, true));
popup.setForeground(Color.WHITE);
popup.setFont(popup.getFont().deriveFont(30f));
popup.setHorizontalAlignment(JLabel.CENTER);
popup.setVerticalAlignment(JLabel.TOP);
popup.setBounds(100, 100, width-200, height-200);

JLabel content = new JLabel("Actual Content");
content.setForeground(Color.BLACK);
content.setFont(content.getFont().deriveFont(50f));
content.setHorizontalAlignment(JLabel.CENTER);
frame.getContentPane().add(content, BorderLayout.CENTER);
frame.getContentPane().setBackground(Color.WHITE);
frame.getLayeredPane().add(popup, JLayeredPane.POPUP_LAYER);
frame.setVisible(true);
new Timer(2000, ev->popup.setVisible(!popup.isVisible())).start();
3
On

You need to use JLayeredPane.You will use it like this.

JLayerdPane layerdPane = frame.getLayeredPane();    
layeredPane.add(canvas, new Integer(0));
layeredPane.add(object you want, new Integer(1)); // This object will be over canvas