JRootPaneにリサイズのための装飾を設定する
Total: 5477
, Today: 1
, Yesterday: 0
Posted by aterai at
Last-modified:
概要
JFrame
自体の装飾を削除し、JRootPane
にリサイズのためのウィンドウ装飾(透明)を設定します。
Screenshot
Advertisement
サンプルコード
JFrame frame = new JFrame();
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
// XXX: JFrame frame = new JFrame();
frame.setUndecorated(true);
JRootPane root = frame.getRootPane();
root.setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
JLayeredPane layeredPane = root.getLayeredPane();
Component c = layeredPane.getComponent(1);
if (c instanceof JComponent) {
JComponent orgTitlePane = (JComponent) c;
orgTitlePane.setVisible(false);
// layeredPane.remove(orgTitlePane);
}
JPanel p = new JPanel(new BorderLayout());
p.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
p.setBackground(new Color(1f, 1f, 1f, .01f));
p.add(internalFrame);
frame.getContentPane().add(p);
View in GitHub: Java, Kotlin解説
JFrame
の装飾を削除JFrame#setUndecorated(true);
JInternalFrame
をContentPane
に追加- JInternalFrameをJFrameとして表示する
JFrame
の背景色をJFrame#setBackground(new Color(0x0, true));
で透明化
JRootPane
に装飾を追加、変更JRootPane#setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
で装飾を追加し、リサイズのためのMouseMotionListener
などを利用- JFrameのタイトルバーなどの装飾を独自のものにカスタマイズするは、このリサイズのための
MouseMotionListener
も独自に追加している
- JFrameのタイトルバーなどの装飾を独自のものにカスタマイズするは、このリサイズのための
JLayeredPane
からタイトルバーを削除- 上辺でリサイズできない
- マウスでリサイズ可能な領域を作成するために、
ContentPane
にほぼ透明なBorder
をもつJPanel
を追加
MetalLookAndFeel
のみLookAndFeel#getSupportsWindowDecorations()
はtrue
を返すLookAndFeel
を変更する場合は、ContentPane
以下から更新することでJRootPane#setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
が無効にならないようにする必要があるfor (Window window: Window.getWindows()) { if (window instanceof RootPaneContainer) { SwingUtilities.updateComponentTreeUI(((RootPaneContainer) window).getContentPane()); } }