Swing/MenuBarLayout のバックアップ(No.2)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/MenuBarLayout へ行く。
- 1 (2010-12-27 (月) 11:25:50)
- 2 (2011-01-05 (水) 21:51:06)
- 3 (2012-12-25 (火) 11:14:32)
- 4 (2012-12-26 (水) 05:52:04)
- 5 (2014-06-23 (月) 20:54:10)
- 6 (2014-11-01 (土) 00:30:01)
- 7 (2014-12-25 (木) 17:02:45)
- 8 (2016-04-08 (金) 15:16:59)
- 9 (2017-07-27 (木) 15:01:08)
- 10 (2017-11-02 (木) 15:32:16)
- 11 (2018-03-26 (月) 14:44:48)
- 12 (2020-03-22 (日) 01:46:35)
- 13 (2021-09-29 (水) 11:33:41)
TITLE:JMenuBarのJMenuを折り返し
Posted by terai at 2010-12-27
JMenuBarのJMenuを折り返し
JMenuBarのレイアウトマネージャーを変更して、JMenuを折り返して表示します。
- &jnlp;
- &jar;
- &zip;
サンプルコード
JMenuBar menuBar = new JMenuBar();
menuBar.setLayout(new FlowLayout(FlowLayout.LEFT,2,2) {
@Override public Dimension preferredLayoutSize(Container target) {
synchronized (target.getTreeLock()) {
int targetWidth = target.getSize().width;
if (targetWidth == 0) targetWidth = Integer.MAX_VALUE;
Insets insets = target.getInsets();
int hgap = getHgap();
int vgap = getVgap();
int maxWidth = targetWidth - (insets.left + insets.right);
int height = vgap;
int rowWidth = hgap, rowHeight = 0;
int nmembers = target.getComponentCount();
for(int i = 0; i < nmembers; i++) {
Component m = target.getComponent(i);
if(m.isVisible()) {
Dimension d = m.getPreferredSize();
if(rowWidth + d.width > maxWidth) {
height += rowHeight;
rowWidth = hgap;
rowHeight = 0;
}
rowWidth += d.width + hgap;
rowHeight = Math.max(rowHeight, d.height + vgap);
}
}
height += rowHeight + insets.top + insets.bottom;
return new Dimension(targetWidth, height);
}
}
};
解説
上記のサンプルでは、JMenuBar(デフォルトのレイアウトマネージャーはBoxLayout)に、FlowLayoutを継承して折り返しを行うレイアウトマネージャを設定して、JMenuがフレームの幅に収まらない場合は折り返して表示するようにしています。
上記のサンプルでは、BorderLayoutを設定したJPanelにadd(menubar, BorderLayout.NORTH)としてJMenuBarを追加していますが、JFrame#setJMenuBar メソッドを使用した場合、以下のような不具合?があります。
- JFrameの最大化、最小化で折り返しが更新されない
- 以下のように、FlowLayout#layoutContainerをオーバーライドすることで回避
//http://tips4java.wordpress.com/2008/11/06/wrap-layout/ //WrapLayout.java //Rob Camick on November 6, 2008 private Dimension preferredLayoutSize; @Override public void layoutContainer(Container target) { Dimension size = preferredLayoutSize(target); if(size.equals(preferredLayoutSize)) { super.layoutContainer(target); }else{ preferredLayoutSize = size; Container top = target; while(!(top instanceof Window) && top.getParent() != null) { top = top.getParent(); } top.validate(); } }
- 以下のように、FlowLayout#layoutContainerをオーバーライドすることで回避
- JFrame#pack()しても、JFrameのサイズが変更されない
- JFrame#setSize(...)に変更することで回避