• category: swing folder: ComboBoxAsButtonWhenNotEditable title: NimbusLookAndFeelで編集不可のJComboBoxがボタンのようにロールオーバー表示するかを切り替える tags: [JComboBox, NimbusLookAndFeel, UIManager, UIDefaults] author: aterai pubdate: 2022-04-04T00:39:59+09:00 description: NimbusLookAndFeelで編集不可のJComboBox上にマウスカーソルが乗るとJButtonのようにロールオーバー状態を描画するかを切り替えます。 image: https://drive.google.com/uc?id=1xVBgDBbUhT_vj3ZWTBj_2wsijPDBy-I6

概要

NimbusLookAndFeelで編集不可のJComboBox上にマウスカーソルが乗るとJButtonのようにロールオーバー状態を描画するかを切り替えます。

サンプルコード

JComboBox<String> combo = new JComboBox<>(model);
UIDefaults d = UIManager.getLookAndFeelDefaults();
d.put("ComboBox.buttonWhenNotEditable", false);
combo.putClientProperty("Nimbus.Overrides", d);
combo.putClientProperty("Nimbus.Overrides.InheritDefaults", true);
View in GitHub: Java, Kotlin

解説

  • UIManager.put("ComboBox.buttonWhenNotEditable", true)
    • NimbusLookAndFeelのデフォルトで編集不可のJComboBoxJComboBox内部のArrowButton(JButton)と合わせてロールオーバー状態で描画が変化する
    • WindowsLookAndFeelではComboBox.buttonWhenNotEditableの設定には依存せず常にロールオーバー状態で描画が変化する
    • 編集可能なJComboBoxではComboBox.buttonWhenNotEditableの設定は無効
  • UIManager.put("ComboBox.buttonWhenNotEditable", false)
    • 上記のサンプルではJComboBox#putClientProperty(...)で下のJComboBoxのみ編集不可のJComboBoxのロールオーバー描画を無効に設定している
    • MetalLookAndFeelではComboBox.buttonWhenNotEditableの設定には依存せず常にロールオーバー状態で描画は変化しない

参考リンク

コメント