-
Notifications
You must be signed in to change notification settings - Fork 415
BeautyEye L&F简明开发者指南
首先把 beautyeye_lnf.jar
文件作为lib放入你的项目并引用之.
目前,beautyeye_lnf.jar
文件位于all_in_one.zip包中的位置是:all_in_one/dist/
加入以下代码,即可将你的Java程序界面更换成Beauty Eye的外观:
public static void main(String[] args)
{
try
{
org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper.launchBeautyEyeLNF();
}
catch(Exception e)
{
//TODO exception
}
..................... 你的程序代码 .........................
..................... 你的程序代码 .........................
}
public static void main(String[] args)
{
try
{
//设置本属性将改变窗口边框样式定义
BeautyEyeLNFHelper.frameBorderStyle = BeautyEyeLNFHelper.FrameBorderStyle.osLookAndFeelDecorated;
org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper.launchBeautyEyeLNF();
}
catch(Exception e)
{
//TODO exception
}
..................... 你的程序代码 .........................
..................... 你的程序代码 .........................
}
详见类
org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper.FrameBorderStyle
。
窗口边框 | 代码常量 | 效果图 |
---|---|---|
系统默认样式 | osLookAndFeelDecorated |
|
强立体半透明 | translucencyAppleLike |
|
弱立体感半透明 | translucencySmallShadow |
|
普通不透明 | generalNoTranslucencyShadow |
-
按钮样式1:
btnInstance.setUI(new BEButtonUI(). setNormalColor(BEButtonUI.NormalColor.normal));
-
按钮样式2:
btnInstance.setUI(new BEButtonUI().setNormalColor(BEButtonUI.NormalColor.green));
-
按钮样式3:
btnInstance.setUI(new BEButtonUI().setNormalColor(BEButtonUI.NormalColor.lightBlue));
-
按钮样式4:
btnInstance.setUI(new BEButtonUI().setNormalColor(BEButtonUI.NormalColor.blue));
-
按钮样式5:
btnInstance.setUI(new BEButtonUI().setNormalColor(BEButtonUI.NormalColor.red));
说明: 该按钮目前仅作为演示窗口标题按钮的自定义能力之用,未来将开放自定义功能,目前你可选择隐藏之。
UIManager.put("RootPane.setupButtonVisible", false);
@since v3.2
//设置此开关量为false即表示关闭之,BeautyEye LNF中默认是true
BeautyEyeLNFHelper.translucencyAtFrameInactive = false;
@since v3.4
方法1:
//设置属性即可:true表示使用ToolBar.background颜色实现纯
//色填充背景,BeautyEye中此属性默认是false
UIManager.put("ToolBar.isPaintPlainBackground", Boolean.TRUE);
方法2:
//使用ClientProperty单独设置控制每个toolbar:true表示使用ToolBar.background
//颜色实现纯色填充背景,BeautyEye中此属性默认是false
toolbarInstance.putClientProperty("ToolBar.isPaintPlainBackground", Boolean.TRUE);
说明: 方法2可以单独控制每一个JToolBar组件,而方法1是全局属性,方法2的优先级高于方法1。
@since v3.4
加入以下代码,使用你自已的border:
//自定义JToolBar ui的border
Border bd = new org.jb2011.lnf.beautyeye.ch8_toolbar.BEToolBarUI.ToolBarBorder(
UIManager.getColor("ToolBar.shadow") //Floatable时触点的颜色
, UIManager.getColor("ToolBar.highlight")//Floatable时触点的阴影颜色
, new Insets(6, 0, 11, 0)); //border的默认insets
UIManager.put("ToolBar.border",new BorderUIResource(bd));
说明: 以上代码必须在 “
BeautyEyeLNFHelper.launchBeautyEyeLNF();
” 之后执行方能起效哦。
参见以下代码实现:
//改变InsetsUIResource参数的值即可实现
UIManager.put("TabbedPane.tabAreaInsets"
, new javax.swing.plaf.InsetsUIResource(3,20,2,20));
说明: 以上代码必须在 “
BeautyEyeLNFHelper.launchBeautyEyeLNF();
” 之后执行方能起效哦。
在你的窗体被setVisible(true)前调用以下代码即可:
// set frame full transparent
frame.setUndecorated(true);
AWTUtilities.setWindowOpaque(frame, false);
frame.getRootPane().setWindowDecorationStyle(JRootPane.NONE);
说明: 以上代码适用于所有处于非系统窗体标题栏的情况,包括官方MetalLookAndFeel外观等。
说明: 切换输入法导致白屏问题是由于官方的透明API的bug引起,与BeautyEye本身无关。
解决方法参见: http://hi.baidu.com/shenaodong/item/423419d57354feea55347fe5 或者 http://stackoverflow.com/questions/14374111/input-method-removes-transparent-effect-from-jframe-in-swing
因为该版本存在一个Bug,具体请看这里 .
该问题具体请参见 issue 25
解决方案: 把默认的字体换成win7平台下默认的微软雅黑,则字体效果会大有改善。
/** UIManager中UI字体相关的key */
public static String[] DEFAULT_FONT = new String[]{
"Table.font"
,"TableHeader.font"
,"CheckBox.font"
,"Tree.font"
,"Viewport.font"
,"ProgressBar.font"
,"RadioButtonMenuItem.font"
,"ToolBar.font"
,"ColorChooser.font"
,"ToggleButton.font"
,"Panel.font"
,"TextArea.font"
,"Menu.font"
,"TableHeader.font"
// ,"TextField.font"
,"OptionPane.font"
,"MenuBar.font"
,"Button.font"
,"Label.font"
,"PasswordField.font"
,"ScrollPane.font"
,"MenuItem.font"
,"ToolTip.font"
,"List.font"
,"EditorPane.font"
,"Table.font"
,"TabbedPane.font"
,"RadioButton.font"
,"CheckBoxMenuItem.font"
,"TextPane.font"
,"PopupMenu.font"
,"TitledBorder.font"
,"ComboBox.font"
};
// 调整默认字体
for (int i = 0; i < DEFAULT_FONT.length; i++)
UIManager.put(DEFAULT_FONT[i],new Font("微软雅黑", Font.PLAIN,14));
首先申明这不是BeautyEye的bug,这其实是官方窗口透明API的实现,JFrame(包括JDialog)的contentPane实质就是JPanel,它被认为是窗口的一部分,官方窗口透明API在透明窗口其它部件的同时也把它透明了(我没看过源码,目前还不能确切的说),但这是合理的,因为它将能实现你还没想到的全透明场景。
解决办法: 在contentPane上再加一层JPanel即可。