You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.6 KiB
58 lines
1.6 KiB
package com.fr.design.actions.community; |
|
|
|
import com.fr.base.BaseUtils; |
|
import com.fr.design.i18n.LocaleLinkProvider; |
|
import com.fr.design.menu.MenuKeySet; |
|
import com.fr.design.utils.BrowseUtils; |
|
|
|
import javax.swing.KeyStroke; |
|
import java.awt.event.ActionEvent; |
|
|
|
/** |
|
* Created by XINZAI on 2018/8/23. |
|
*/ |
|
public class CusDemandAction extends UpAction{ |
|
|
|
/** |
|
* 云中心发布需求页在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Demand"; |
|
|
|
/** |
|
* 云中心发布需求页默认链接在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design-CloudCenter_Demand_Default"; |
|
|
|
public CusDemandAction() |
|
{ |
|
this.setMenuKeySet(DEMAND); |
|
this.setName(getMenuKeySet().getMenuName()); |
|
this.setMnemonic(getMenuKeySet().getMnemonic()); |
|
this.setSmallIcon(BaseUtils.readIcon("/com/fr/design/images/bbs/demand.png")); |
|
|
|
} |
|
|
|
@Override |
|
public void actionPerformed(ActionEvent arg0) |
|
{ |
|
String url = LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); |
|
BrowseUtils.browser(url); |
|
|
|
} |
|
public static final MenuKeySet DEMAND = new MenuKeySet() { |
|
@Override |
|
public char getMnemonic() { |
|
return 'D'; |
|
} |
|
|
|
@Override |
|
public String getMenuName() { |
|
return com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Commuinity_Demand"); |
|
} |
|
|
|
@Override |
|
public KeyStroke getKeyStroke() { |
|
return null; |
|
} |
|
}; |
|
}
|
|
|