• title: JComboBoxのアイテム文字列を左側からクリップ tags: [JComboBox, ListCellRenderer, ArrowButton] author: aterai pubdate: 2007-06-18T19:09:42+09:00 description: JComboBoxのアイテム文字列がコンポーネントより長い場合、これを左側からクリップします。

概要

JComboBoxのアイテム文字列がコンポーネントより長い場合、これを左側からクリップします。

サンプルコード

final JButton arrowButton = getArrowButton(combo02);
combo02.setRenderer(new DefaultListCellRenderer() {
  @Override public Component getListCellRendererComponent(
        JList list, Object value, int index,
        boolean isSelected, boolean cellHasFocus) {
    super.getListCellRendererComponent(list,value,index,isSelected,cellHasFocus);
    int itb=0, ilr=0;
    Insets insets = getInsets();
    itb+=insets.top+insets.bottom; ilr+=insets.left+insets.right;
    insets = combo02.getInsets();
    itb+=insets.top+insets.bottom; ilr+=insets.left+insets.right;
    int availableWidth = combo02.getWidth()-ilr;
    if(index<0) {
      //@see BasicComboBoxUI#rectangleForCurrentValue
      int buttonSize = combo02.getHeight()-itb;
      if(arrowButton!=null) {
        buttonSize = arrowButton.getWidth();
      }
      availableWidth -= buttonSize;
      JTextField tf = (JTextField)combo02.getEditor().getEditorComponent();
      insets = tf.getMargin();
      availableWidth -= (insets.left + insets.right);
    }
    String cellText = (value!=null)?value.toString():"";
    //<blockquote cite="http://tips4java.wordpress.com/2008/11/12/left-dot-renderer/">
    //@title Left Dot Renderer
    //@auther Rob Camick
    FontMetrics fm = getFontMetrics(getFont());
    if(fm.stringWidth(cellText)>availableWidth) {
      String dots = "...";
      int textWidth = fm.stringWidth(dots);
      int nChars = cellText.length() - 1;
      while(nChars>0) {
        textWidth += fm.charWidth(cellText.charAt(nChars));
        if(textWidth > availableWidth) break;
        nChars--;
      }
      setText(dots+cellText.substring(nChars+1));
    }
    //</blockquote>
    return this;
  }
});
View in GitHub: Java, Kotlin

解説

標準のJComboBoxでは、長い文字列は右側をクリップするので、上記のサンプルでは左側を切り取り、...で置き換えるようにセルレンダラーを変更しています。

例えば、コンボボックスのセルよりファイル名が長くても、拡張子が表示できるようにしたいといった場合に使用します。

エディタ部分(index<0の場合)を描画するときは、矢印ボタンの幅を考慮する必要があります。

LookAndFeelによって余白などのサイズが微妙に異なる場合がある?ため、うまく表示されないことがあります。

参考リンク

コメント