JToggleButton内に選択状態を同期したJRadioButtonを描画する
Total: 28
, Today: 4
, Yesterday: 6
Posted by aterai at
Last-modified:
概要
JTobbleButton
内に選択状態を同期したJRadioButton
と複数行テキストを描画してRadioCard
を作成します。
Screenshot
Advertisement
サンプルコード
private static Component makeRadioIconLayer(AbstractButton button) {
JRadioButton radio = new JRadioButton();
radio.setOpaque(false);
Dimension d = radio.getPreferredSize();
Insets i = button.getInsets();
button.setMargin(new Insets(i.top, d.width, i.bottom, i.right));
button.setPreferredSize(button.getPreferredSize());
button.setVerticalAlignment(SwingConstants.TOP);
LayerUI<AbstractButton> layer = new LayerUI<AbstractButton>() {
@Override public void paint(Graphics g, JComponent c) {
super.paint(g, c);
if (c instanceof JLayer) {
AbstractButton b = (AbstractButton) ((JLayer<?>) c).getView();
Graphics2D g2 = (Graphics2D) g.create();
radio.setSelected(b.isSelected());
int x = i.left - d.width + 8;
int y = i.top + 8;
SwingUtilities.paintComponent(
g2, radio, b, x, y, d.width, d.height);
g2.dispose();
}
}
};
return new JLayer<>(button, layer);
}
View in GitHub: Java, Kotlin解説
JTobbleButton
に<html>
タグで複数行のテキストを設定してカードを作成JTobbleButton
にJLayer
を設定してその左余白にJRadioButton
を描画JTobbleButton
にJLayer
を適用するとその高さが一行分?まで縮小してしまう?JLayer
を適用する前の推奨サイズをJTobbleButton#setPreferredSize(...)
で設定してこれを回避- この回避方法は
LookAndFeel
の変更には対応していない
LayerUI#paint(...)
をオーバーライドしてSwingUtilities.paintComponent(...)
でJRadioButton
を描画しているのでJRadioButton
のクリックは親のJTobbleButton
のクリックになるLayerUI#paint(...)
内でradio.setSelected(toggle.isSelected())
を実行してJRadioButton
とJTobbleButton
の選択状態が同期するよう設定
参考リンク
- OverlayLayoutの使用
OverlayLayout
でJRadioButton
とJTobbleButton
を重ねて配置する方法もある
- HTMLEditorKitを適用したJEditorPaneのフォームにコンポーネントを表示する
<input type='radio' ...>
のようなhtml
タグでJRadioButton
を配置する方法もある?
- JRadioButtonのデフォルトアイコンをサムネイルに変更する