正文

進(jìn)銷存管理系統(tǒng)(8)

Java項(xiàng)目開發(fā)案例全程實(shí)錄(第2版) 作者:明日科技


(2)編寫createFrameButton()方法,該方法負(fù)責(zé)創(chuàng)建Action對象,該對象用于創(chuàng)建并顯示窗體對象。另外,它還包含圖標(biāo)、文本等屬性。如果將Action對象添加到系統(tǒng)菜單欄或者工具欄中,會(huì)直接創(chuàng)建相應(yīng)的菜單項(xiàng)和工具按鈕,而且這些菜單項(xiàng)和工具按鈕將顯示Action對象中的文本和圖標(biāo)屬性。本系統(tǒng)沒有使用系統(tǒng)菜單,所以該方法將直接創(chuàng)建按鈕對象。關(guān)鍵代碼如下:

例程06 代碼位置:光盤\TM\01\JXCManager\src\com\lzw\JXCFrame.java

private JButton createFrameButton(String fName, String cname) { //為內(nèi)部窗體添加 Action 的方法

String imgUrl = "res/ActionIcon/" + fName + ".png";

String imgUrl_roll = "res/ActionIcon/" + fName + "_roll.png";

String imgUrl_down = "res/ActionIcon/" + fName + "_down.png";

Icon icon = new ImageIcon(imgUrl); //創(chuàng)建按鈕圖標(biāo)

Icon icon_roll = null;

if (imgUrl_roll != null)

icon_roll = new ImageIcon(imgUrl_roll); //創(chuàng)建鼠標(biāo)經(jīng)過按鈕時(shí)的圖標(biāo)

Icon icon_down = null;

if (imgUrl_down != null)

icon_down = new ImageIcon(imgUrl_down); //創(chuàng)建按鈕按下的圖標(biāo)

Action action = new openFrameAction(fName, cname, icon); //用 openFrameAction 類創(chuàng)建 Action 對象

JButton button = new JButton(action);

button.setMargin(new Insets(0, 0, 0, 0));

button.setHideActionText(true);

button.setFocusPainted(false);

button.setBorderPainted(false);

button.setContentAreaFilled(false);

if (icon_roll != null)

button.setRolloverIcon(icon_roll);

if (icon_down != null)

button.setPressedIcon(icon_down);

return button;

代碼貼士

setMargin():該方法用于設(shè)置按鈕的四周邊界大小。

setHideActionText():該方法用于設(shè)置按鈕隱藏Action對象中的文本信息,例如一個(gè)只顯示圖標(biāo)的按鈕可以取消文本使按鈕更加美觀。

setFocusPainted():該方法用于設(shè)置按鈕獲取焦點(diǎn)時(shí),是否繪制焦點(diǎn)樣式。導(dǎo)航面板取消了這個(gè)焦點(diǎn)樣式,因?yàn)樗茐牧税粹o圖標(biāo)的美觀性。

setBorderPainted():該方法用于設(shè)置是否繪制按鈕的邊框樣式,導(dǎo)航面板取消了邊框樣式,因?yàn)榘粹o的圖標(biāo)需要覆蓋整個(gè)按鈕。

setContentAreaFilled():該方法用于設(shè)置是否繪制按鈕圖形,在不同的操作系統(tǒng),甚至系統(tǒng)不同的皮膚樣式中都有不同的圖形。導(dǎo)航面板取消了按鈕的圖形效果,因?yàn)閷?dǎo)航面板要使用圖標(biāo)繪制整個(gè)按鈕。

setRolloverIcon():該方法用于設(shè)置鼠標(biāo)經(jīng)過按鈕時(shí),按鈕所使用的圖標(biāo)。

setPressedIcon():該方法用于設(shè)置鼠標(biāo)按下按鈕時(shí),按鈕所使用的圖標(biāo)。

(3)編寫內(nèi)部類openFrameAction,它必須繼承AbstractAction類實(shí)現(xiàn)Action接口。該類用于創(chuàng)建導(dǎo)航按鈕的Action對象,并為每個(gè)導(dǎo)航按鈕定義創(chuàng)建并顯示不同窗體對象的動(dòng)作監(jiān)聽器,這個(gè)監(jiān)聽器在按鈕被按下時(shí),調(diào)用getIFrame()方法獲取相應(yīng)的窗體對象,并顯示在主窗體中。關(guān)鍵代碼如下:

例程07 代碼位置:光盤\TM\01\JXCManager\src\com\lzw\JXCFrame.java

protected final class openFrameAction extends AbstractAction { //主窗體菜單項(xiàng)的單擊事件監(jiān)聽器

private String frameName = null;

private openFrameAction() {

}

public openFrameAction(String cname, String frameName, Icon icon) {

this.frameName = frameName;

putValue(Action.NAME, cname); //設(shè)置 Action 的名稱

putValue(Action.SHORT_DESCRIPTION, cname); //設(shè)置 Action 的提示文本框

putValue(Action.SMALL_ICON, icon); //設(shè)置 Action 的圖標(biāo)

}

public void actionPerformed(final ActionEvent e) {

JInternalFrame jf = getIFrame(frameName); //調(diào)用 getIFrame() 方法

//在內(nèi)部窗體關(guān)閉時(shí),從內(nèi)部窗體容器 ifs 對象中清除該窗體

jf.addInternalFrameListener(new InternalFrameAdapter() {

public void internalFrameClosed(InternalFrameEvent e) {

ifs.remove(frameName);

}

});

if (jf.getDesktopPane() == null) {

desktopPane.add(jf); //將窗體添加到主窗體中

jf.setVisible(true); //顯示窗體

}

try {

jf.setSelected(true); //使窗體處于被選擇狀態(tài)

} catch (PropertyVetoException e1) {

e1.printStackTrace();

}

}

}

(4)編寫getIFrame()方法,該方法負(fù)責(zé)創(chuàng)建指定名稱的窗體對象。在方法中使用了Java的反射技術(shù),調(diào)用不同窗體類的默認(rèn)構(gòu)造方法創(chuàng)建窗體對象。關(guān)鍵代碼如下:

例程08 代碼位置:光盤\TM\01\JXCManager\src\com\lzw\JXCFrame.java

private JInternalFrame getIFrame(String frameName) { //獲取內(nèi)部窗體的唯一實(shí)例對象

JInternalFrame jf = null;

if (!ifs.containsKey(frameName)) {

try {

Class fClass = Class.forName("internalFrame." + frameName);

Constructor constructor = fClass.getConstructor(null);

jf = (JInternalFrame) constructor.newInstance(null);

ifs.put(frameName, jf);

} catch (Exception e) {

e.printStackTrace();

}

} else

jf = ifs.get(frameName);

return jf;

}


上一章目錄下一章

Copyright ? 讀書網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號