---
title: NimbusLookAndFeelでJComponentのサイズを変更する
tags: [NimbusLookAndFeel, JComponent, Font]
author: aterai
pubdate: 2014-07-28T00:18:57+09:00
description: NimbusLookAndFeelを使用している場合、クライアントプロパティを設定することでJComponentの表示サイズを変更することが出来ます。
---
* 概要 [#ofcff4ab]
`NimbusLookAndFeel`を使用している場合、クライアントプロパティを設定することで`JComponent`の表示サイズを変更することが出来ます。

#download(https://lh6.googleusercontent.com/-Uru9Oco4olg/U9T5RHzJ_5I/AAAAAAAACKY/7N7a3Ya3sYw/s800/ComponentSizeVariant.png)

* サンプルコード [#j46526e5]
#code(link){{
booleanRenderer.putClientProperty("JComponent.sizeVariant", "mini");
}}

* 解説 [#o36d06e7]
- `NimbusLookAndFeel`を使用している場合、`JComponent#putClientProperty("JComponent.sizeVariant", "mini");`のように、クライアントプロパティを設定することで、その表示サイズを変更可能
-- デフォルトは`regular`、その他は小さい順に`mini`, `small`, `large`が設定可能
-- `JComponent#updateUI()`を実行しないと、更新されない
--- このサンプルでは、`SwingUtilities.updateComponentTreeUI(window);`で実行
-- フォントがユーザー指定されている場合は、文字サイズは更新されない?
--- このサンプルでは、`updateUI()`の前に、`jc.setFont(new FontUIResource(jc.getFont()));`で`UIResource`化することで回避
-- `JTable`の`BooleanRenderer`が二回目以降変更されない
--- 初回の`JCheckBox booleanRenderer = (JCheckBox) table.getDefaultRenderer(Boolean.class); booleanRenderer.putClientProperty("JComponent.sizeVariant", "mini");`は、正常に動作しているように見える

* 参考リンク [#bd728307]
- [http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/size.html Resizing a Component (The Java™ Tutorials > Creating a GUI With JFC/Swing > Modifying the Look and Feel)]

* コメント [#a447fafd]
#comment
#comment