1

DefaultComboBoxModel を使用して、JComboBox (文字列テキスト、アイコン アイコン) に特定の項目を追加します。しかし、何かがうまくいかない。これら 2 つのアイテムをコンボ モデルに追加すると、次のようになります。

ComboBoxWindow: 

              [icon          ]

              [icon     value]

要約すると、コンボボックスのコードは次のようになります。

private JComboBox combobox;
...
DefaultComboBoxModel model = new DefaultComboBoxModel();
combobox = new JComboBox(model);
...
/*
 * I use JButton for 'sending' hex value taken from JTextField to 'combobox'
 * with help of 'addToComboBox()' method
 */
 public void addToComboBox() {

    String value = field.getText().toString();     // getin' text from 'left' JTextField

    Color color = tcc.getColor();                  // getin' color from some other JLabel
    ColorSwatch icon = new ColorSwatch(10, true);  // using some custom method to create little square icon
    icon.setColor(color);     // seting color of created icon

    combobox.addItem(icon);
    combobox.addItem(value);
 }

ListCellRenderer の使用を検討しましたが、「値」と「アイコン」を同時に使用して、たとえば JLabel コンポーネントをレンダリングする必要があることを「伝える」方法がわかりません。JButton を使用してこれらの項目を動的に追加できることは、私にとって非常に重要です。

ここに画像の説明を入力

4

1 に答える 1

1

私はそれを行い、今ではうまく動作します:) 基本的に 1. DefaultComboBoxModel を使用しました。 2. JComboBox に追加しました。 #FFFFFF') をアイコンと適切なテキストに追加し、最後にその新しいアイコンとテキストで JLabel を作成します。

/**
 * Main Class
 */
public class ColorChooser {
   ...
   public ColorChooser() {
      ...
      DefaultComboBoxModel<String> model = new DefaultComboBoxModel<String>();
      JComboBox combobox = new JComboBox<String>(model);
      combobox.setEditable(false);
      cobobox.setRenderer(new ComboRenderer());
      ...
   }
   ...
}

/**
 * Renderer Class
 */
public class ComboRenderer extends JLabel implements ListCellRenderer<Object> {

   public ComboRenderer() {

   }

   public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus) {

      setFont(newFont("Consolas", Font.PLAIN, 14));
      setOpaque(true);

      String hex;

      if (value != null) {

         /*
          * So basically I add to my 'model' in ColorChooser main class only Strings
          * which I get e.g. from some JTextField. 
          * On base of this String I create icon for future JLabel
          * and I set String 'value' as text for it.
          */
         hex = value.toString();

         Color color = HexToRgb(hex); //Method which translates String to Color

         ColorSwatch icon = new ColorSwatch(10, true); // ColorSwatch is a method which creates specific square icon (in this case a little square)
         icon.setColor(color);

         setText(hex);
         setIcon(icon);
      }
      return this;
   }

   /*
    * My translate method which translates given String to a specific color value
    * (RGB/RGBA)
    */
   public Color HexToRgb(String colorStr) {

      Color color = null;

      // For String hex value '#RRGGBB'
      if (colorStr.length() == 7) {

         color = new Color(
            Integer.valueOf(colorStr.substring(1, 3), 16),
            Integer.valueOf(colorStr.substring(3, 5), 16),
            Integer.valueOf(colorStr.substring(5, 7), 16));

        // For String hex value '#AARRGGBB'
      } else if (colorStr.length() == 9) {

         color = new Color(
            Integer.valueOf(colorStr.substring(3, 5), 16),
            Integer.valueOf(colorStr.substring(5, 7), 16),
            Integer.valueOf(colorStr.substring(7, 9), 16),
            Integer.valueOf(colorStr.substring(1, 3), 16));

        // For String hex value '0xRRGGBB'
      } else if (colorStr.length() == 8) {

         color = new Color(
            Integer.valueOf(colorStr.substring(2, 4), 16),
            Integer.valueOf(colorStr.substring(4, 6), 16),
            Integer.valueOf(colorStr.substring(6, 8), 16));

        // For String hex value '0xAARRGGBB'
      } else if (colorStr.length() == 10) {

         color = new Color(
            Integer.valueOf(colorStr.substring(4, 6), 16),
            Integer.valueOf(colorStr.substring(6, 8), 16),
            Integer.valueOf(colorStr.substring(8, 10), 16),
            Integer.valueOf(colorStr.substring(2, 4), 16));

      } else
         JOptionPane.showMessageDialog(null, "Something wen wrong... :|");

      return color;
   }
}

そして、このようなレンダラーを使用すると、アイテムをコンボボックスに追加できます...

try {

   String hex = jtextfield.getText();
   boolean canI = CheckHexValue(hex); //Method for checkin' if 'hex' String fits some specific terms

   if (canI) {

      combobox.insertItemAt(hex, 0);
      combobox.setSelectedIndex(0);
   }
} catch (Exception e) {
   JOptionPane.showMessageDialog(null, e);
}

...そして、私たちは今家にいます。そのコードが誰かを助けることを願っています:)

于 2013-08-07T22:53:21.897 に答える