Swing/PrototypeDisplayValue のバックアップ(No.3)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/PrototypeDisplayValue へ行く。
- 1 (2016-03-30 (水) 13:45:11)
- 2 (2017-07-19 (水) 19:20:10)
- 3 (2017-08-25 (金) 19:25:03)
- 4 (2017-11-02 (木) 15:34:40)
- 5 (2018-03-12 (月) 18:39:43)
- 6 (2019-05-22 (水) 19:35:38)
- 7 (2020-03-10 (火) 21:03:33)
- 8 (2021-08-27 (金) 11:46:57)
- 9 (2022-08-20 (土) 22:15:25)
- 10 (2024-02-14 (水) 23:41:12)
- 11 (2025-01-03 (金) 08:57:02)
- 12 (2025-01-03 (金) 09:01:23)
- 13 (2025-01-03 (金) 09:02:38)
- 14 (2025-01-03 (金) 09:03:21)
- 15 (2025-01-03 (金) 09:04:02)
- category: swing
folder: PrototypeDisplayValue
title: JComboBoxのセルサイズを決定するためのプロトタイプ値を設定する
tags: [JComboBox, ListCellRenderer]
author: aterai
pubdate: 2015-05-18T00:01:40+09:00
description: JComboBoxがそのセルサイズを決定するために使用するプロトタイプ値を設定します。
image:
概要
JComboBox
がそのセルサイズを決定するために使用するプロトタイプ値を設定します。
Screenshot

Advertisement
サンプルコード
combo3.setPrototypeDisplayValue(TITLE);
//...
combo5.setRenderer(new SiteListCellRenderer<Site>());
combo5.setPrototypeDisplayValue(new Site(TITLE, new DummyIcon(Color.GRAY)));
View in GitHub: Java, Kotlin解説
- デフォルト
- モデルの中からサイズが最大となる要素を検索し、
JComboBox
の推奨サイズを決定する - 上記のサンプルでは、モデルが空なのでボタンの幅と余白が
JComboBox
の推奨サイズになっている
- モデルの中からサイズが最大となる要素を検索し、
JComboBox#setPrototypeDisplayValue(...)
で指定した要素から、JComboBox
の推奨サイズを決定する- 編集可能な場合の
JComboBox
にJComboBox#setPrototypeDisplayValue(...)
を設定 - 独自の要素
E
を使用するJComboBox<E>
に、その要素を表示するためのListCellRenderer<E>
を設定 - 上記の
JComboBox<E>
にJComboBox#setPrototypeDisplayValue(E)
でプロトタイプ値を設定 - 上記の
JComboBox<E>
でモデルを空にしてListCellRenderer
で値がnull
になる場合、JComboBox#setPrototypeDisplayValue(E)
で設定した値が表示されてしまうclass SiteListCellRenderer<E extends Site> extends JLabel implements ListCellRenderer<E> { @Override public Component getListCellRendererComponent( JList<? extends E> list, E value, int index, boolean isSelected, boolean cellHasFocus) { setOpaque(index >= 0); if (Objects.nonNull(value)) { setText(value.title); setIcon(value.favicon); } else { //JComboBox#setPrototypeDisplayValue(E)で設定した値が表示されないようにクリア setText(""); setIcon(null); } //...