📄 themesupporter.java
字号:
package net.suberic.util.swing;import javax.swing.plaf.metal.MetalTheme;/** * A UI which can dynamically set its theme. */public interface ThemeSupporter { /** * Gets the Theme object from the ThemeManager which is appropriate * for this UI. */ public MetalTheme getTheme(ThemeManager mgr); /** * Gets the currently configured Theme. */ public MetalTheme getCurrentTheme(); /** * Sets the Theme that this component is currently using. */ public void setCurrentTheme(MetalTheme newTheme);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -