1

問題: Swing アプリケーションの一部として、固定スペースに収まる必要があるコンボ ボックスがあります。ただし、その内容はかなり長い場合があります。ボックス自体を固定サイズにして、中身を切り詰めてほしいです。ただし、下向き矢印をクリックすると、HTML の選択と同様に動作し、ドロップダウンとして最も長いエントリを収めるのに十分な長さのボックスを表示したいと考えています。ListCellRenderer は、これに進む方法かもしれません。わからない。

また、javax.swing.plaf.basic.ComboPopup と独自の ComboBoxUI の何らかの実装が必要な場合もあります。SwingUtilities コードを調べて、DefaultListCellRenderer がどのように計算を行うかを理解しました。これは JLabel を使用し、BasicLabelUI はクリッピングを行う SwingUtilities.layoutCompoundLabel (最終的にコール スタック内) を呼び出します。私が掘り下げていた Java 6 コードの ComboPopup の唯一の実装である BasicComboPopup は、次のように委任されているようでした: JList.computeVisibleRect(Component c, Rectangle visibleRect)

誰もこれを以前にやったことがありますか?ポインタはありますか?

4

2 に答える 2

1

可変幅のドロップダウンを使用した匿名による JComboBox。これは Metal LAF のみであることに注意してください。

import java.awt.*;
import java.util.*;
import javax.swing.*;
import javax.swing.plaf.metal.*;
import javax.swing.plaf.basic.*;

/**
 * @version 1.0 12/12/98
 * updated 2012-02-18 to include @Overrides and other Java needs
 */
class SteppedComboBoxUI extends MetalComboBoxUI {
  @SuppressWarnings("serial")
@Override
  protected ComboPopup createPopup() {
    BasicComboPopup popup = new BasicComboPopup( comboBox ) {

      @Override
    public void show() {
        Dimension popupSize = ((SteppedComboBox)comboBox).getPopupSize();
        popupSize.setSize( popupSize.width,
          getPopupHeightForRowCount( comboBox.getMaximumRowCount() ) );
        Rectangle popupBounds = computePopupBounds( 0,
          comboBox.getBounds().height, popupSize.width, popupSize.height);
        scroller.setMaximumSize( popupBounds.getSize() );
        scroller.setPreferredSize( popupBounds.getSize() );
        scroller.setMinimumSize( popupBounds.getSize() );
        list.invalidate();            
        int selectedIndex = comboBox.getSelectedIndex();
        if ( selectedIndex == -1 ) {
          list.clearSelection();
        } else {
          list.setSelectedIndex( selectedIndex );
        }            
        list.ensureIndexIsVisible( list.getSelectedIndex() );
        setLightWeightPopupEnabled( comboBox.isLightWeightPopupEnabled() );

        show( comboBox, popupBounds.x, popupBounds.y );
      }
    };
    popup.getAccessibleContext().setAccessibleParent(comboBox);
    return popup;
  }
}


@SuppressWarnings("serial")
public class SteppedComboBox extends JComboBox {
  protected int popupWidth;

  public SteppedComboBox(ComboBoxModel aModel) {
    super(aModel);
    setUI(new SteppedComboBoxUI());
    popupWidth = 0;
  }

  public SteppedComboBox(final Object[] items) {
    super(items);
    setUI(new SteppedComboBoxUI());
    popupWidth = 0;
  }

  @SuppressWarnings("unchecked")
public SteppedComboBox(Vector items) {
    super(items);
    setUI(new SteppedComboBoxUI());
    popupWidth = 0;
  }


  public void setPopupWidth(int width) {
    popupWidth = width;
  }

  public Dimension getPopupSize() {
    Dimension size = getSize();
    if (popupWidth < 1) popupWidth = size.width;
    return new Dimension(popupWidth, size.height);
  }
}
于 2012-02-18T22:57:25.113 に答える
1

これが良い出発点です:)

SteppedComboBox – http://web.archive.org/web/20070607203953/http://www.crionics.com/products/opensource/faq/swing_ex/JComboBoxExamples1.html

于 2009-08-24T20:33:16.610 に答える