• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:NimbusLookAndFeelでJComponentのサイズを変更する
#navi(../)
#tags(NimbusLookAndFeel, JComponent, Font)
RIGHT:Posted by &author(aterai); at 2014-07-28
* NimbusLookAndFeelでJComponentのサイズを変更する [#ofcff4ab]
`NimbusLookAndFeel`を使用している場合、クライアントプロパティを設定することで`JComponent`の表示サイズを変更することが出来ます。

#download
#ref(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) table.getDefaultRenderer(Boolean.class)).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