TITLE:JComboBoxのItemを左右にクリップして配置

Posted by aterai at 2005-09-12

JComboBoxのItemを左右にクリップして配置

JComboBoxのItemにテキストをクリップして左右に分けて配置します。

  • &jnlp;
  • &jar;
  • &zip;
ClippedLRComboBox.png

サンプルコード

class LRComboCellRenderer extends JPanel implements ListCellRenderer {
  private final JLabel leftLabel  = new JLabel();
  private final JLabel rightLabel = new JLabel();
  private final Color cfc  = UIManager.getColor("ComboBox.foreground");
  private final Color cbc  = UIManager.getColor("ComboBox.background");
  private final Color csfc = UIManager.getColor("ComboBox.selectionForeground");
  private final Color csbc = UIManager.getColor("ComboBox.selectionBackground");
  private final Color cdfc = UIManager.getColor("ComboBox.disabledForeground");
  private final JComboBox combo;
  public LRComboCellRenderer(JComboBox combo, int rightWidth, int labelHeight) {
    super(new BorderLayout());
    this.combo = combo;
    this.setBorder(BorderFactory.createEmptyBorder());
    this.setOpaque(true);
    leftLabel.setOpaque(true);
    leftLabel.setBorder(BorderFactory.createEmptyBorder(0,2,0,0));
    rightLabel.setOpaque(true);
    rightLabel.setBorder(BorderFactory.createEmptyBorder(0,2,0,2));
    rightLabel.setPreferredSize(new Dimension(rightWidth, labelHeight));
    rightLabel.setHorizontalAlignment(SwingConstants.RIGHT);
    this.add(leftLabel);
    this.add(rightLabel, BorderLayout.EAST);
  }
  //@Override
  public Component getListCellRendererComponent(JList list, Object value,
                          int index, boolean isSelected,
                          boolean cellHasFocus) {
    LRItem item = (LRItem)value;
    leftLabel.setText(item.getLeftText());
    rightLabel.setText(item.getRightText());
    leftLabel.setBackground(isSelected? csbc:cbc);
    rightLabel.setBackground(isSelected? csbc:cbc);
    this.setBackground(isSelected? csbc:cbc);
    leftLabel.setForeground(isSelected? csfc:cfc);
    rightLabel.setForeground(cdfc);

    if(index==-1) {
      Dimension dim = combo.getSize();
      if(dim.width!=oldwidth) {
        int count = combo.getItemCount()-1;
        Insets i = combo.getInsets();
        int w = dim.width-i.left-i.right;
        int h = dim.height-i.top-i.bottom;
        list.setPreferredSize(new Dimension(w, h*count));
        oldwidth = dim.width;
      }
    }
    return this;
  }
  private int oldwidth = -1;
}

解説

上記のサンプルでは、JLabelを二つ並べたJPanelをレンダラーにすることで、Itemに設定した文字列を左右に表示しています。このため文字列が長い場合、JLabelがこれを自動的にクリップしてくれます。

参考リンク

コメント

  • ポップアップリストが更新されなくなって?、うまくクリップできなくなっていたのを修正。 -- aterai