static JWindow showTransparentJWindow(Rect bounds, Component component) { new JWindow window; window.setBounds(toRectangle(bounds)); window.setBackground(new Color(0, 0, 0, 0)); window.setAlwaysOnTop(true); window.add(component); window.setVisible(true); ret window; }