Swing/ColorComboBox のバックアップ(No.13)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ColorComboBox へ行く。
- 1 (2005-04-28 (木) 04:33:03)
- 2 (2005-09-08 (木) 12:49:01)
- 3 (2005-11-20 (日) 19:47:12)
- 4 (2005-11-24 (木) 11:37:05)
- 5 (2006-02-27 (月) 15:34:01)
- 6 (2006-04-12 (水) 19:37:51)
- 7 (2006-09-09 (土) 21:30:37)
- 8 (2006-10-10 (火) 18:51:38)
- 9 (2006-10-10 (火) 19:58:51)
- 10 (2006-10-12 (木) 13:01:09)
- 11 (2007-04-20 (金) 13:43:41)
- 12 (2007-12-13 (木) 15:43:10)
- 13 (2008-10-21 (火) 10:41:38)
- 14 (2008-10-21 (火) 15:41:21)
- 15 (2008-10-24 (金) 11:28:10)
- 16 (2009-06-09 (火) 20:36:08)
- 17 (2011-02-14 (月) 15:24:58)
- 18 (2013-03-31 (日) 20:11:16)
- 19 (2013-04-10 (水) 16:19:23)
- 20 (2014-03-19 (水) 17:12:42)
- 21 (2014-11-01 (土) 00:46:09)
- 22 (2014-11-30 (日) 00:46:41)
- 23 (2015-01-25 (日) 18:30:05)
- 24 (2016-04-24 (日) 21:09:29)
- 25 (2016-06-04 (土) 19:23:58)
- 26 (2016-09-08 (木) 18:02:40)
- 27 (2017-03-28 (火) 15:19:53)
- 28 (2017-11-02 (木) 15:34:40)
- 29 (2018-02-02 (金) 17:54:28)
- 30 (2018-02-24 (土) 19:51:30)
- 31 (2020-01-30 (木) 17:05:21)
- 32 (2021-07-28 (水) 05:11:40)
- 33 (2021-11-17 (水) 04:12:37)
- 34 (2022-08-20 (土) 22:15:25)
TITLE:JComboBoxの色を変更
JComboBoxの色を変更
Posted by terai at 2005-01-10
概要
JComboBoxのEditor部分と、List部分の色を変更します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
combo01.setModel(makeModel());
combo01.setRenderer(new MyListCellRenderer(combo01.getRenderer()));
combo01.addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent e) {
if(e.getStateChange()!=ItemEvent.SELECTED) return;
combo01.setBackground(getOEColor(combo01.getSelectedIndex()));
}
});
combo01.setSelectedIndex(0);
combo01.setBackground(evenBGColor);
final JTextField field = (JTextField) combo02.getEditor().getEditorComponent();
field.setOpaque(true);
field.setBackground(evenBGColor);
combo02.setEditable(true);
combo02.setModel(makeModel());
combo02.setRenderer(new MyListCellRenderer(combo02.getRenderer()));
combo02.addItemListener(new ItemListener() {
public void itemStateChanged(ItemEvent e) {
if(e.getStateChange()!=ItemEvent.SELECTED) return;
field.setBackground(getOEColor(combo02.getSelectedIndex()));
}
});
combo02.setSelectedIndex(0);
解説
JComboBoxを編集可にした状態で、以下のようにList部分、Editor部分に背景色を設定します。
- List部分
- ListCellRendererを使用することで背景色を変更しています。
- Editor部分
- getEditor().getEditorComponent()でJTextFieldオブジェクトを取得して背景色を変更しています。
上記のサンプルでは、下のJComboBoxで行の奇数偶数による背景色の変更を行っています。
GWT L&Fなどで、うまくBox(Editor)部分の色を変更できない場合があるようです。
#screenshot(,screenshot2.png)
コメント
- JComboBox#setEditable(true)は必須のようです。編集不可にするにはEditor部分のJTextFieldに対してsetEditable(false) -- Y?
- ご指摘ありがとうございます。せっかくJComboBoxを上下に並べているのだから、編集可の場合と不可の場合のサンプルにすればよかったですね。編集不可の場合(JComboBox#setEditable(false))に色を着けるには、上記の方法と、以下のようにJComboBox#setBackground(Color)メソッドを使う方法があるようです。
編集不可の場合は、この部分の色もレンダラーが勝手にやってくれてたような気がするのですが、勘違いだったのかも。バージョンやL&Fで異なる?ようです。 -- teraifinal JComboBox c = new JComboBox(); c.addItemListener(new ItemListener() { public void itemStateChanged(ItemEvent e) { if(e.getStateChange()!=ItemEvent.SELECTED) return; c.setBackground((c.getSelectedIndex()%2==0)?evenBGColor:oddBGColor); } });
- せっかくなので、上のJComboBoxは編集不可、下は編集可の場合で、色を着けるサンプルに変更しました。 -- terai
- ご指摘ありがとうございます。せっかくJComboBoxを上下に並べているのだから、編集可の場合と不可の場合のサンプルにすればよかったですね。編集不可の場合(JComboBox#setEditable(false))に色を着けるには、上記の方法と、以下のようにJComboBox#setBackground(Color)メソッドを使う方法があるようです。
- メモ:Windows/Motif L&F: Changing the JComboBox background does not change the popup of the JCombobox -- terai