Swing/MenuItemTextAlignment の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/MenuItemTextAlignment へ行く。
- Swing/MenuItemTextAlignment の差分を削除
--- category: swing folder: MenuItemTextAlignment title: JMenuに追加したJMenuItemなどのテキスト位置を揃える tags: [JMenuBar, JMenu, JMenuItem, LookAndFeel] author: aterai pubdate: 2016-07-18T01:53:49+09:00 description: JMenuに追加したJMenuItemやJLabelなどのコンポーネントのテキスト位置を揃えて表示します。 image: https://lh3.googleusercontent.com/-S49YgtIvzc8/V4upKl0JAFI/AAAAAAAAOd4/9vWtFW4DvY4xR0bL0sM9iGRBvHz_u7AcQCCo/s800/MenuItemTextAlignment.png --- * 概要 [#summary] `JMenu`に追加した`JMenuItem`や`JLabel`などのコンポーネントのテキスト位置を揃えて表示します。 #download(https://lh3.googleusercontent.com/-S49YgtIvzc8/V4upKl0JAFI/AAAAAAAAOd4/9vWtFW4DvY4xR0bL0sM9iGRBvHz_u7AcQCCo/s800/MenuItemTextAlignment.png) * サンプルコード [#sourcecode] #code(link){{ // U+200B zero width space JMenuItem item3 = new JMenuItem("\u200B"); //, HSTRUT); // item3.setLayout(new BorderLayout()); // item3.setBorder(BorderFactory.createEmptyBorder()); // NimbusLookAndFeel item3.setEnabled(false); // item3.setDisabledIcon(HSTRUT); item3.add(new JMenuItem("JMenuItem(disabled) with JMenuItem", HSTRUT) { @Override public boolean contains(int x, int y) { return false; // disable mouse events } }); }} * 解説 [#explanation] `JMenu`や`JPopupMenu`にクリック不可の項目として`JMenuItem`の代わりに`JLabel`を追加すると、`WindowsLookAndFeel`を使用している場合や他の`JMenuItem`にアイコンが設定されている場合にテキストの開始位置が揃わないので、これを回避するために以下の方法をテストしています。 - `JMenuItem.setEnabled(false);` -- `JMenuItem.setEnabled(false);`と`UIManager.put("MenuItem.disabledForeground", Color.BLACK);`を使用 -- `MenuItem.disabledForeground`が使用されるかどうかは`LookAndFeel`に依存 - `JLabel + EmptyBorder` -- 余白を設定した`JLabel`を使用 -- 余白の幅は`LookAndFeel`に依存(`LookAndFeel`依存の幅を取得する方法がない?) - `JPanel with JMenuItem` -- `MenuElement`ではない透明な`JPanel`に`JComponent#contains()`メソッドをオーバーライドしてマウスクリックを無効にした`JMenuItem`を追加 - `JMenuItem(disabled) with JMenuItem` -- `JMenuItem.setEnabled(false);`とした空の`JMenuItem`に`JComponent#contains()`メソッドをオーバーライドしてマウスクリックを無効にした`JMenuItem`を追加 ---- - `JMenu`にアイコン用の余白がない`MetalLookAndFeel`などにアイコンが設定された`JMenuItem`が存在する場合、幅のみのアイコンを設定する必要がある - `MetalLookAndFeel`の場合、文字列もアイコンも存在しない`JMenuItem`は他の`JMenuItem`と高さが異なる(幅ゼロ空白文字`\u200B`で回避) - `NimbusLookAndFeel`の`JPanel`は、デフォルトでは背景が不透明 * 参考リンク [#reference] - [https://stackoverflow.com/questions/38360595/jlabel-with-icon-in-jpopupmenu-doesnt-follow-other-jmenuitem-alignment java - JLabel with icon in JPopupMenu doesn't follow other JMenuItem alignment - Stack Overflow] - [https://bugs.openjdk.org/browse/JDK-8152981 JDK-8152981 Double icons with JMenuItem setHorizontalTextPosition on Win 10 - Java Bug System] - [[JCheckBoxMenuItemのチェックアイコンの位置を調整する>Swing/AfterCheckIconGap]] -- `Java 8`?では、`CheckBoxMenuItem.afterCheckIconGap`や`CheckBoxMenuItem.minimumTextOffset`などが追加されているため、揃えやすくなった -- `Java 8`から`CheckBoxMenuItem.afterCheckIconGap`や`CheckBoxMenuItem.minimumTextOffset`などが追加されているため、揃えやすくなった * コメント [#comment] #comment #comment