Look and Feelの変更
Total: 25718
, Today: 1
, Yesterday: 2
Posted by aterai at
Last-modified:
概要
メニューバーから選択したLook and Feel
を起動中のアプリケーションに適用します。
Screenshot
Advertisement
サンプルコード
// %JAVA_HOME%/demo/jfc/SwingSet2/src/SwingSet2.java
// Possible Look & Feels
private static final String MAC = "com.sun.java.swing.plaf.mac.MacLookAndFeel";
private static final String METAL = "javax.swing.plaf.metal.MetalLookAndFeel";
private static final String MOTIF = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
private static final String WINDOWS = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
private static final String GTK = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
// JDK 1.6.0_10
// private static final String NIMBUS = "com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel";
// JDK 1.7.0
private static final String NIMBUS = "javax.swing.plaf.nimbus.NimbusLookAndFeel";
// The current Look & Feel
private static String currentLookAndFeel = METAL;
private final ButtonGroup lafMenuGroup = new ButtonGroup();
public JMenuItem createLafMenuItem(JMenu menu, String label, String laf) {
JMenuItem mi = menu.add(new JRadioButtonMenuItem(label));
lafMenuGroup.add(mi);
mi.addActionListener(new ChangeLookAndFeelAction(laf));
mi.setEnabled(isAvailableLookAndFeel(laf));
return mi;
}
protected static boolean isAvailableLookAndFeel(String laf) {
try {
Class lnfClass = Class.forName(laf);
LookAndFeel newLAF = (LookAndFeel) lnfClass.newInstance();
return newLAF.isSupportedLookAndFeel();
} catch (Exception e) {
return false;
}
}
// ...
private class ChangeLookAndFeelAction extends AbstractAction {
private final String laf;
protected ChangeLookAndFeelAction(String laf) {
super("ChangeTheme");
this.laf = laf;
}
@Override public void actionPerformed(ActionEvent e) {
setLookAndFeel(laf);
}
}
private void setLookAndFeel(String laf) {
if (currentLookAndFeel.equals(laf)) return;
currentLookAndFeel = laf;
try {
UIManager.setLookAndFeel(currentLookAndFeel);
SwingUtilities.updateComponentTreeUI(frame);
} catch (Exception ex) {
ex.printStackTrace();
System.out.println("Failed loading L&F: " + currentLookAndFeel);
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、metal
、motif
、windows
などのLookAndFeel
を予め用意しておき、isAvailableLookAndFeel(...)
メソッドでそれらが実行した環境で使用できるかを調べてメニューの選択可・不可を変更しています。
Look and Feel
を切り替えて各種コンポーネントの表示などを比較したい場合は%JAVA_HOME%/demo/jfc/SwingSet2/SwingSet2.jar
が便利SwingSet3
ではUIManager.getInstalledLookAndFeels()
メソッドを使って利用可能なLookAndFeel
の一覧を取得しこれをメニューに表示しているjava.exe
などのコマンドオプションでデフォルトのLook and Feel
を変更する場合は以下のように指定するjava.exe -Dswing.defaultlaf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel App
%JAVA_HOME%/lib
以下にswing.properties
を作ってデフォルトのLook and Feel
を指定する方法もあるSystemLookAndFeel
を使用する場合はUIManager.getSystemLookAndFeelClassName()
でその実装クラス名を取得して設定するtry { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { e.printStackTrace(); }
Ubuntu(GNOME)
で上記のようにシステムLookAndFeel
を指定するとNullPointerException
が発生する場合は、直前にUIManager.getInstalledLookAndFeels()
を呼んでおくと回避可能6u10
で修正済
参考リンク
%JAVA_HOME%/demo/jfc/SwingSet2/src/SwingSet2.java
- How to Set the Look and Feel
- LookAndFeelの一覧を取得する
SwingSet3
からコードを引用したサンプル