是不是總覺得java作出的按鈕很難看,尤其是工具欄按鈕,要是能作出像Word那樣的Cool Button該多好,其實用java來實現,一點都不難,只要3步就可以了。這麼簡單?對!就是這麼簡單。
第一步:准備一個Border,jdk不是自帶了很多Border類嗎,為什麼還要自己寫?因為jdk裡的border類太粗,達不到我們的效果,只能自己寫一個了,不過不用怕,我已經幫你寫好了,拿著用就可以了。
第二步:寫一個MouseListener,處理button的各種動作(移入、移出、按下、按下移入、按下移出),怎麼這麼多動作,仔細觀察一下Word的工具欄就知道了。
第三步:生成一個JButton對象,設置border、listener和其它一些屬性。
下面來看看具體怎麼實現。
第一步:編寫一個Border類,我們這裡稱為ThinBevelBorder,讓它繼承BevelBorder,然後覆蓋paintRaisedBevel和paintLoweredBevel方法,讓它只化4條邊框線,這樣看起來就不會那麼粗了。具體代碼如下:
package com.bhr.ioat.coolbutton;
import java.awt.Color;
import java.awt.Component;
import java.awt.Graphics;
import java.awt.Insets;
import javax.swing.border.BevelBorder;
public class ThinBevelBorder extends BevelBorder
{
public ThinBevelBorder(int bevelType)
{
super(bevelType);
}
public ThinBevelBorder(int bevelType, Color highlight, Color shadow)
{
super(bevelType, highlight, shadow);
}
public ThinBevelBorder(int bevelType, Color highlightOuterColor, Color highlightInnerColor, Color shadowOuterColor, Color shadowInnerColor)
{
super(bevelType, highlightOuterColor, highlightInnerColor, shadowOuterColor, shadowInnerColor);
}
protected void paintRaisedBevel(Component c, Graphics g, int x, int y, int width, int height)
{
try
{
Color oldColor = g.getColor();
int h = height;
int w = width;
g.translate(x, y);
g.setColor(getHighlightInnerColor(c));
g.drawLine(0, 0, 0, h - 1);
g.drawLine(1, 0, w - 1, 0);
g.setColor(getShadowInnerColor(c));
g.drawLine(1, h - 1, w - 1, h - 1);
g.drawLine(w - 1, 1, w - 1, h - 2);
g.translate( -x, -y);
g.setColor(oldColor);
}
catch (NullPointerException e) { }
}
protected void paintLoweredBevel(Component c, Graphics g, int x, int y, int width, int height)
{
try
{
Color oldColor = g.getColor();
int h = height;
int w = width;
g.translate(x, y);
g.setColor(getShadowInnerColor(c));
g.drawLine(0, 0, 0, h - 1);
g.drawLine(1, 0, w - 1, 0);
g.setColor(getHighlightOuterColor(c));
g.drawLine(1, h - 1, w - 1, h - 1);
g.drawLine(w - 1, 1, w - 1, h - 2);
g.translate( -x, -y);
g.setColor(oldColor);
}
catch (NullPointerException e) { }
}
}
第二步:編寫MouseListener,我們稱為CoolButtonMouseListener,繼承MouseAdapter,覆蓋其中的4個方法(mouseEntered、mouseExited、mousePressed和mouseReleased),這裡需要注意一下,後3個方法只是簡單的根據條件修改一下button的border,第一個方法比較特別,當鼠標移入時除了判斷是否需要修改border外,還要判斷鼠標所處的狀態,如果處於按下狀態,並且第一次按下時為該button,則設為按下狀態的border,如果處於按下狀態,但第一次按下時不在該button上,則不設置任何border。具體代碼如下:
package com.bhr.ioat.coolbutton;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.AbstractButton;
import javax.swing.border.Border;
import javax.swing.border.EmptyBorder;
public class CoolButtonMouseListener extends MouseAdapter
{
public final static Border DEFAULT_BORDER = new EmptyBorder(2, 2, 2, 2);
public final static Border ENTERED_BORDER = new ThinBevelBorder(ThinBevelBorder.RAISED);
public final static Border PRESSED_BORDER = new ThinBevelBorder(ThinBevelBorder.LOWERED);
private final static CoolButtonMouseListener listener_ = new CoolButtonMouseListener();
private CoolButtonMouseListener() { }
public static CoolButtonMouseListener getInstance()
{
return listener_;
}
public void mouseEntered(MouseEvent e)
{
AbstractButton button = (AbstractButton) e.getSource();
if ( (!button.isEnabled()))
{
return;
}
if (button.isSelected())
{
return;
}
if (button.getModel().isPressed())
{
button.setBorder(PRESSED_BORDER);
}
else
{
if (e.getModifiers() != MouseEvent.BUTTON1_MASK)
{
button.setBorder(ENTERED_BORDER);
}
}
}
public void mouseExited(MouseEvent e)
{
AbstractButton button = (AbstractButton) e.getSource();
if ( (!button.isEnabled()))
{
return;
}
if (button.isSelected())
{
return;
}
else
{
button.setBorder(DEFAULT_BORDER);
}
}
public void mousePressed(MouseEvent e)
{
AbstractButton button = (AbstractButton) e.getSource();
if ( (!button.isEnabled()))
{
return;
}
if (button.isSelected())
{
return;
}
button.setBorder(PRESSED_BORDER);
}
public void mouseReleased(MouseEvent e)
{
AbstractButton button = (AbstractButton) e.getSource();
if ( (!button.isEnabled()))
{
return;
}
if (button.isSelected())
{
return;
}
button.setBorder(DEFAULT_BORDER);
}
}
最後一步:編寫一個測試類。生成一個JButton,設置border和listener,添加到JFrame上,運行,終於大功告成了!不過,別太高興,你會發現還是有點難看,button周圍有一個小藍框,而且鼠標按下時button的背景是深灰色。再修改一下,首先覆蓋JButton的isFocusTraversable方法,讓它返回false,不讓它得到焦點,再調用button的setRequestFocusEnabled(false),這樣button周圍就不會有藍框了。然後再調用button的setContentAreaFilled(false)方法,使得鼠標按下時不會出現深灰色背景。這樣就完成了。具體代碼如下:
package com.bhr.ioat.coolbutton;
import javax.swing.JFrame;
import java.awt.FlowLayout;
import javax.swing.JButton;
public class Test extends JFrame
{
public Test()
{
getContentPane().setLayout(new FlowLayout());
JButton button = new JButton("CoolButton") {
public boolean isFocusTraversable() { return false;
}
};
button.setBorder(CoolButtonMouseListener.DEFAULT_BORDER);
button.addMouseListener(CoolButtonMouseListener.getInstance());
button.setRequestFocusEnabled(false); button.setContentAreaFilled(false);
getContentPane().add(button);
}
public static void main(String[] args)
{
JFrame frame = new Test();
frame.setSize(300,300);
frame.setVisible(true);
}
}
這裡只是簡單介紹了一下實現過程,實際應用還有很多地方需要完善,如可以自己寫一個button類繼承JButton,然後初始化時自動設置默認border,listener等。另外上面寫好的border也可以用到其它component上,如狀態欄,效果也不錯。