|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object javax.swing.plaf.metal.MetalTheme javax.swing.plaf.metal.DefaultMetalTheme
public class DefaultMetalTheme
提供 Java 外观原型的 MetalTheme
的一个具体实现,代码名称为“Steel”。有关更改默认主题的详细信息,请参阅 MetalLookAndFeel.setCurrentTheme(javax.swing.plaf.metal.MetalTheme)
。
DefaultMetalTheme
返回的所有颜色都是完全不透明的。
DefaultMetalTheme
对许多控件使用黑体。要使所有控件(内部窗体标题栏和客户端已装饰窗体标题栏除外)使用无格式字体,可以执行以下操作之一:
swing.boldMetal
设置为 false
。例如 java -Dswing.boldMetal=false MyApp
。
swing.boldMetal
设置为 Boolean.FALSE
。例如:UIManager.put("swing.boldMetal", Boolean.FALSE);
swing.boldMetal
(如果已设置)优先于同名的系统属性。设置此默认属性后,需要重新安装 MetalLookAndFeel
,并更新所有以前创建的窗口小部件的 UI。否则,结果是不确定的。以下代码说明了如何进行此操作:
// turn off bold fonts UIManager.put("swing.boldMetal", Boolean.FALSE); // re-install the Metal Look and Feel UIManager.setLookAndFeel(new MetalLookAndFeel()); // Update the ComponentUIs for all Components. This // needs to be invoked for all windows. SwingUtilities.updateComponentTreeUI(rootComponent);
警告:此类的序列化对象与以后的 Swing 版本不兼容。当前序列化支持适用于短期存储或运行相同 Swing 版本的应用程序之间的 RMI。从 1.4 版本开始,已在 java.beans
包中添加了支持所有 JavaBeansTM 长期存储的功能。请参见 XMLEncoder
。
MetalLookAndFeel
,
MetalLookAndFeel.setCurrentTheme(javax.swing.plaf.metal.MetalTheme)
构造方法摘要 | |
---|---|
DefaultMetalTheme()
创建并返回 DefaultMetalTheme 的一个实例。 |
方法摘要 | |
---|---|
FontUIResource |
getControlTextFont()
返回控件文本字体。 |
FontUIResource |
getMenuTextFont()
返回菜单文本字体。 |
String |
getName()
返回此主题的名称。 |
protected ColorUIResource |
getPrimary1()
返回 primary 1 颜色。 |
protected ColorUIResource |
getPrimary2()
返回 primary 2 颜色。 |
protected ColorUIResource |
getPrimary3()
返回 primary 3 颜色。 |
protected ColorUIResource |
getSecondary1()
返回 secondary 1 颜色。 |
protected ColorUIResource |
getSecondary2()
返回 secondary 2 颜色。 |
protected ColorUIResource |
getSecondary3()
返回 secondary 3 颜色。 |
FontUIResource |
getSubTextFont()
返回子文本字体。 |
FontUIResource |
getSystemTextFont()
返回系统文本字体。 |
FontUIResource |
getUserTextFont()
返回用户文本字体。 |
FontUIResource |
getWindowTitleFont()
返回窗口标题字体。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public DefaultMetalTheme()
DefaultMetalTheme
的一个实例。
方法详细信息 |
---|
public String getName()
"Steel"
。
MetalTheme
中的 getName
protected ColorUIResource getPrimary1()
MetalTheme
中的 getPrimary1
protected ColorUIResource getPrimary2()
MetalTheme
中的 getPrimary2
protected ColorUIResource getPrimary3()
MetalTheme
中的 getPrimary3
protected ColorUIResource getSecondary1()
MetalTheme
中的 getSecondary1
protected ColorUIResource getSecondary2()
MetalTheme
中的 getSecondary2
protected ColorUIResource getSecondary3()
MetalTheme
中的 getSecondary3
public FontUIResource getControlTextFont()
MetalTheme
中的 getControlTextFont
public FontUIResource getSystemTextFont()
MetalTheme
中的 getSystemTextFont
public FontUIResource getUserTextFont()
MetalTheme
中的 getUserTextFont
public FontUIResource getMenuTextFont()
MetalTheme
中的 getMenuTextFont
public FontUIResource getWindowTitleFont()
MetalTheme
中的 getWindowTitleFont
public FontUIResource getSubTextFont()
MetalTheme
中的 getSubTextFont
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。