|
|
@ -7,7 +7,9 @@ import com.fr.base.IconManager; |
|
|
|
import com.fr.design.dialog.BasicPane; |
|
|
|
import com.fr.design.dialog.BasicPane; |
|
|
|
import com.fr.design.dialog.DialogActionAdapter; |
|
|
|
import com.fr.design.dialog.DialogActionAdapter; |
|
|
|
import com.fr.design.gui.ibutton.UIButton; |
|
|
|
import com.fr.design.gui.ibutton.UIButton; |
|
|
|
|
|
|
|
import com.fr.design.gui.icontainer.UIScrollPane; |
|
|
|
import com.fr.design.gui.ilable.UILabel; |
|
|
|
import com.fr.design.gui.ilable.UILabel; |
|
|
|
|
|
|
|
import com.fr.design.gui.iscrollbar.UIScrollBar; |
|
|
|
import com.fr.design.gui.itextarea.DescriptionTextArea; |
|
|
|
import com.fr.design.gui.itextarea.DescriptionTextArea; |
|
|
|
import com.fr.design.gui.itextfield.UITextField; |
|
|
|
import com.fr.design.gui.itextfield.UITextField; |
|
|
|
import com.fr.design.layout.FRGUIPaneFactory; |
|
|
|
import com.fr.design.layout.FRGUIPaneFactory; |
|
|
@ -26,6 +28,7 @@ import javax.swing.*; |
|
|
|
import javax.swing.event.ChangeEvent; |
|
|
|
import javax.swing.event.ChangeEvent; |
|
|
|
import javax.swing.event.ChangeListener; |
|
|
|
import javax.swing.event.ChangeListener; |
|
|
|
import javax.swing.filechooser.FileNameExtensionFilter; |
|
|
|
import javax.swing.filechooser.FileNameExtensionFilter; |
|
|
|
|
|
|
|
import javax.swing.plaf.basic.BasicButtonUI; |
|
|
|
import java.awt.*; |
|
|
|
import java.awt.*; |
|
|
|
import java.awt.event.ActionEvent; |
|
|
|
import java.awt.event.ActionEvent; |
|
|
|
import java.awt.event.ActionListener; |
|
|
|
import java.awt.event.ActionListener; |
|
|
@ -44,14 +47,14 @@ public class CustomIconPane extends BasicPane { |
|
|
|
private ListMap iconButtonMap = null; |
|
|
|
private ListMap iconButtonMap = null; |
|
|
|
private JPanel iconPane = null; |
|
|
|
private JPanel iconPane = null; |
|
|
|
private ButtonGroup bg; |
|
|
|
private ButtonGroup bg; |
|
|
|
private JScrollPane jsPane; |
|
|
|
private UIScrollPane jsPane; |
|
|
|
// 老一次次去拿真麻烦
|
|
|
|
// 老一次次去拿真麻烦
|
|
|
|
private IconManager iconManager = null; |
|
|
|
private IconManager iconManager = null; |
|
|
|
|
|
|
|
|
|
|
|
private int width = 180; |
|
|
|
private static final int THE_WIDTH = 180; |
|
|
|
private int horizontalCount = 6; |
|
|
|
private static final int HORIZONTAL_COUNT = 6; |
|
|
|
private int heightPer = 29; |
|
|
|
private static final int HEIGHT_PER = 29; |
|
|
|
private int gap = 10; |
|
|
|
private static final int GAP = 10; |
|
|
|
|
|
|
|
|
|
|
|
public CustomIconPane() { |
|
|
|
public CustomIconPane() { |
|
|
|
this.initComponents(); |
|
|
|
this.initComponents(); |
|
|
@ -69,7 +72,7 @@ public class CustomIconPane extends BasicPane { |
|
|
|
// 开始加图标选择按钮
|
|
|
|
// 开始加图标选择按钮
|
|
|
|
initIcons(); |
|
|
|
initIcons(); |
|
|
|
|
|
|
|
|
|
|
|
jsPane = new JScrollPane(iconPane); |
|
|
|
jsPane = new UIScrollPane(iconPane); |
|
|
|
refreshIconPane(false); |
|
|
|
refreshIconPane(false); |
|
|
|
jsPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS); |
|
|
|
jsPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS); |
|
|
|
|
|
|
|
|
|
|
@ -131,14 +134,11 @@ public class CustomIconPane extends BasicPane { |
|
|
|
if (iconManager.addIcon(icon, false)) { |
|
|
|
if (iconManager.addIcon(icon, false)) { |
|
|
|
IconButton iconButton = null;//初始化
|
|
|
|
IconButton iconButton = null;//初始化
|
|
|
|
|
|
|
|
|
|
|
|
addIcon(icon,iconButton); |
|
|
|
addIcon(icon, iconButton); |
|
|
|
|
|
|
|
|
|
|
|
}else { |
|
|
|
}else { |
|
|
|
// add failed
|
|
|
|
// add failed
|
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), Inter.getLocText("FR-Designer_Custom_Icon_Message2"), Inter.getLocText("FR-Designer_Tooltips"), JOptionPane.WARNING_MESSAGE); |
|
|
|
Inter.getLocText("FR-Designer_Custom_Icon_Message2"), |
|
|
|
|
|
|
|
Inter.getLocText("FR-Designer_Tooltips"), |
|
|
|
|
|
|
|
JOptionPane.WARNING_MESSAGE); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}).setVisible(true); |
|
|
|
}).setVisible(true); |
|
|
@ -189,6 +189,7 @@ public class CustomIconPane extends BasicPane { |
|
|
|
try { |
|
|
|
try { |
|
|
|
oldIcon= iconManager.getIcon(selectedIconName); |
|
|
|
oldIcon= iconManager.getIcon(selectedIconName); |
|
|
|
} catch (CloneNotSupportedException e1) { |
|
|
|
} catch (CloneNotSupportedException e1) { |
|
|
|
|
|
|
|
// do nothing
|
|
|
|
} |
|
|
|
} |
|
|
|
if (oldIcon == null) { |
|
|
|
if (oldIcon == null) { |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), |
|
|
@ -209,16 +210,13 @@ public class CustomIconPane extends BasicPane { |
|
|
|
iconPane.remove(iconButton); |
|
|
|
iconPane.remove(iconButton); |
|
|
|
bg.remove(iconButton); |
|
|
|
bg.remove(iconButton); |
|
|
|
|
|
|
|
|
|
|
|
addIcon(icon,iconButton); |
|
|
|
addIcon(icon, iconButton); |
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// 失败了再弄回去
|
|
|
|
// 失败了再弄回去
|
|
|
|
iconManager.addIcon(oldIcon, true); |
|
|
|
iconManager.addIcon(oldIcon, true); |
|
|
|
// edit failed
|
|
|
|
// edit failed
|
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), Inter.getLocText("FR-Designer_Custom_Icon_Message2"), Inter.getLocText("FR-Designer_Tooltips"), JOptionPane.WARNING_MESSAGE); |
|
|
|
Inter.getLocText("FR-Designer_Custom_Icon_Message2"), |
|
|
|
|
|
|
|
Inter.getLocText("FR-Designer_Tooltips"), |
|
|
|
|
|
|
|
JOptionPane.WARNING_MESSAGE); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
@ -272,8 +270,8 @@ public class CustomIconPane extends BasicPane { |
|
|
|
|
|
|
|
|
|
|
|
// 不知道怎么动态布局,就这么傻傻的调一下大小
|
|
|
|
// 不知道怎么动态布局,就这么傻傻的调一下大小
|
|
|
|
private void refreshIconPane(boolean down) { |
|
|
|
private void refreshIconPane(boolean down) { |
|
|
|
iconPane.setPreferredSize(new Dimension(width, (iconButtonMap.size() / horizontalCount + 1) * heightPer + gap)); |
|
|
|
iconPane.setPreferredSize(new Dimension(THE_WIDTH, (iconButtonMap.size() / HORIZONTAL_COUNT + 1) * HEIGHT_PER + GAP)); |
|
|
|
JScrollBar jsBar = jsPane.getVerticalScrollBar(); |
|
|
|
UIScrollBar jsBar = jsPane.createVerticalScrollBar(); |
|
|
|
try { |
|
|
|
try { |
|
|
|
if (down) { |
|
|
|
if (down) { |
|
|
|
// 将滚动条滚到最后
|
|
|
|
// 将滚动条滚到最后
|
|
|
@ -282,29 +280,41 @@ public class CustomIconPane extends BasicPane { |
|
|
|
jsBar.setValue(0); |
|
|
|
jsBar.setValue(0); |
|
|
|
} |
|
|
|
} |
|
|
|
} catch (RuntimeException re) { |
|
|
|
} catch (RuntimeException re) { |
|
|
|
|
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private class IconButton extends JToggleButton implements ActionListener{ |
|
|
|
private class IconButton extends JToggleButton implements ActionListener{ |
|
|
|
private String iconName; |
|
|
|
private String iconName; |
|
|
|
private Image iconImage = null; |
|
|
|
private Image iconImage = null; |
|
|
|
|
|
|
|
private static final int ICON_BUTTON_SIZE = 24; |
|
|
|
|
|
|
|
private static final int ICON_X = 4; |
|
|
|
|
|
|
|
private static final int ICON_Y = 4; |
|
|
|
public IconButton(String name) { |
|
|
|
public IconButton(String name) { |
|
|
|
this.iconName = name; |
|
|
|
this.iconName = name; |
|
|
|
this.addActionListener(this); |
|
|
|
this.addActionListener(this); |
|
|
|
|
|
|
|
|
|
|
|
this.setCursor(new Cursor(Cursor.HAND_CURSOR)); |
|
|
|
this.setCursor(new Cursor(Cursor.HAND_CURSOR)); |
|
|
|
this.setBorder(null); |
|
|
|
this.setBorder(null); |
|
|
|
this.iconImage = WidgetManager.getProviderInstance().getIconManager().getIconImage(name); |
|
|
|
this.iconImage = WidgetManager.getProviderInstance().getIconManager().getIconImage(name); |
|
|
|
this.setToolTipText(iconName); |
|
|
|
this.setToolTipText(iconName); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public void updateUI() { |
|
|
|
|
|
|
|
setUI(new BasicButtonUI(){ |
|
|
|
|
|
|
|
public void paint(Graphics g, JComponent c) { |
|
|
|
|
|
|
|
super.paint(g, c); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void paintComponent(Graphics g) { |
|
|
|
public void paintComponent(Graphics g) { |
|
|
|
|
|
|
|
super.paintComponent(g); |
|
|
|
Graphics2D g2d = (Graphics2D) g; |
|
|
|
Graphics2D g2d = (Graphics2D) g; |
|
|
|
|
|
|
|
|
|
|
|
// carl:这里缩放显示 16 × 16
|
|
|
|
// carl:这里缩放显示 16 × 16
|
|
|
|
if (iconImage != null) { |
|
|
|
if (iconImage != null) { |
|
|
|
g2d.drawImage(iconImage, 4, 4, IconManager.DEFAULT_ICONWIDTH, IconManager.DEFAULT_ICONHEIGHT, null); |
|
|
|
g2d.drawImage(iconImage, ICON_X, ICON_Y, IconManager.DEFAULT_ICONWIDTH, IconManager.DEFAULT_ICONHEIGHT, null); |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.iconName != null && ComparatorUtils.equals(this.iconName, selectedIconName)) { |
|
|
|
if (this.iconName != null && ComparatorUtils.equals(this.iconName, selectedIconName)) { |
|
|
|
g2d.setPaint(Color.RED); |
|
|
|
g2d.setPaint(Color.RED); |
|
|
@ -317,7 +327,7 @@ public class CustomIconPane extends BasicPane { |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public Dimension getPreferredSize() { |
|
|
|
public Dimension getPreferredSize() { |
|
|
|
return new Dimension(24, 24); |
|
|
|
return new Dimension(ICON_BUTTON_SIZE, ICON_BUTTON_SIZE); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void actionPerformed(ActionEvent evt) { |
|
|
|
public void actionPerformed(ActionEvent evt) { |
|
|
@ -348,75 +358,80 @@ public class CustomIconPane extends BasicPane { |
|
|
|
private String oldName = null; |
|
|
|
private String oldName = null; |
|
|
|
|
|
|
|
|
|
|
|
protected EditIconDialog() { |
|
|
|
protected EditIconDialog() { |
|
|
|
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
|
|
init(); |
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
} |
|
|
|
double rowSize[] = {p, p}; |
|
|
|
|
|
|
|
double columnSize[] = {p, p, p}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UIButton browseButton = new UIButton(Inter.getLocText("FR-Designer_Custom_Icon_SelectIcon")); |
|
|
|
|
|
|
|
browseButton.setPreferredSize(new java.awt.Dimension(80, 25)); |
|
|
|
|
|
|
|
browseButton.setToolTipText(Inter.getLocText("FR-Designer_Click_this_button")); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
browseButton.addActionListener(new ActionListener() { |
|
|
|
|
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
|
|
|
|
JFileChooser jf = new JFileChooser(); |
|
|
|
|
|
|
|
// carl:不知道是否只要png格式,反正导出时全部都转成png了
|
|
|
|
|
|
|
|
FileNameExtensionFilter fileFilter = new FileNameExtensionFilter("Icon Image File", "jpg", "jpeg", "png", "gif"); |
|
|
|
|
|
|
|
jf.setFileFilter(fileFilter); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (JFileChooser.APPROVE_OPTION == jf.showOpenDialog(DesignerContext.getDesignerFrame())) { |
|
|
|
private void init() { |
|
|
|
String path = jf.getSelectedFile().getAbsolutePath(); |
|
|
|
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
|
|
// 将图片转化到16 × 16大小
|
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
Image image = BaseUtils.readImage(path); |
|
|
|
double rowSize[] = {p, p}; |
|
|
|
BufferedImage bufferedImage = CoreGraphHelper.createBufferedImage(IconManager.DEFAULT_ICONWIDTH, |
|
|
|
double columnSize[] = {p, p, p}; |
|
|
|
IconManager.DEFAULT_ICONHEIGHT, BufferedImage.TYPE_INT_ARGB); |
|
|
|
|
|
|
|
Graphics2D g2d = bufferedImage.createGraphics(); |
|
|
|
UIButton browseButton = new UIButton(Inter.getLocText("FR-Designer_Custom_Icon_SelectIcon")); |
|
|
|
g2d.drawImage(image, 0, 0, IconManager.DEFAULT_ICONWIDTH, IconManager.DEFAULT_ICONHEIGHT, null); |
|
|
|
browseButton.setPreferredSize(new Dimension(80, 25)); |
|
|
|
bufferedImage.flush(); |
|
|
|
browseButton.setToolTipText(Inter.getLocText("FR-Designer_Click_this_button")); |
|
|
|
g2d.dispose(); |
|
|
|
nameTextField = new UITextField(20); |
|
|
|
iconImage = bufferedImage; |
|
|
|
|
|
|
|
if (iconImage != null) { |
|
|
|
browseButton.addActionListener(new ActionListener() { |
|
|
|
showImageLabel.setIcon(new ImageIcon(iconImage)); |
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
} |
|
|
|
onBrowseButtonClicked(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
nameTextField = new UITextField(20); |
|
|
|
// 焦点丢失时看看名称是否已经存在
|
|
|
|
// 焦点丢失时看看名称是否已经存在
|
|
|
|
nameTextField.addFocusListener(new FocusListener() { |
|
|
|
nameTextField.addFocusListener(new FocusListener() { |
|
|
|
public void focusGained(FocusEvent e) { |
|
|
|
public void focusGained(FocusEvent e) { |
|
|
|
// do nothing
|
|
|
|
} |
|
|
|
} |
|
|
|
public void focusLost(FocusEvent e) { |
|
|
|
public void focusLost(FocusEvent e) { |
|
|
|
if (oldName != null && ComparatorUtils.equals(oldName, nameTextField.getText())) { |
|
|
|
if (oldName != null && ComparatorUtils.equals(oldName, nameTextField.getText())) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if (WidgetManager.getProviderInstance().getIconManager().contains(nameTextField.getText())) { |
|
|
|
if (WidgetManager.getProviderInstance().getIconManager().contains(nameTextField.getText())) { |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), |
|
|
|
Inter.getLocText("FR-Designer_Custom_Icon_Message3"), |
|
|
|
Inter.getLocText("FR-Designer_Custom_Icon_Message3"), |
|
|
|
Inter.getLocText("FR-Designer_Tooltips"), |
|
|
|
Inter.getLocText("FR-Designer_Tooltips"), |
|
|
|
JOptionPane.WARNING_MESSAGE); |
|
|
|
JOptionPane.WARNING_MESSAGE); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
JPanel imagePane = new JPanel(); |
|
|
|
JPanel imagePane = new JPanel(); |
|
|
|
imagePane.setLayout(new FlowLayout(FlowLayout.LEFT, 30, 0)); |
|
|
|
imagePane.setLayout(new FlowLayout(FlowLayout.LEFT, 30, 0)); |
|
|
|
showImageLabel = new UILabel(); |
|
|
|
showImageLabel = new UILabel(); |
|
|
|
showImageLabel.setPreferredSize(new Dimension(20,20)); |
|
|
|
showImageLabel.setPreferredSize(new Dimension(20,20)); |
|
|
|
imagePane.add(showImageLabel); |
|
|
|
imagePane.add(showImageLabel); |
|
|
|
imagePane.add(browseButton); |
|
|
|
imagePane.add(browseButton); |
|
|
|
Component[][] components = { |
|
|
|
Component[][] components = {{new UILabel(Inter.getLocText("FR-Designer_Name") + ":"), nameTextField}, {new UILabel(Inter.getLocText("FR-Designer_Icon") + ":"), imagePane}}; |
|
|
|
{new UILabel(Inter.getLocText("FR-Designer_Name") + ":"), nameTextField}, |
|
|
|
|
|
|
|
{new UILabel(Inter.getLocText("FR-Designer_Icon") + ":"), imagePane} |
|
|
|
JPanel centerPane = TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize); |
|
|
|
}; |
|
|
|
this.add(centerPane, BorderLayout.CENTER); |
|
|
|
|
|
|
|
} |
|
|
|
JPanel centerPane = TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize); |
|
|
|
|
|
|
|
this.add(centerPane,BorderLayout.CENTER); |
|
|
|
private void onBrowseButtonClicked() { |
|
|
|
} |
|
|
|
JFileChooser jf = new JFileChooser(); |
|
|
|
|
|
|
|
// carl:不知道是否只要png格式,反正导出时全部都转成png了
|
|
|
|
@Override |
|
|
|
FileNameExtensionFilter fileFilter = new FileNameExtensionFilter("Icon Image File", "jpg", "jpeg", "png", "gif"); |
|
|
|
|
|
|
|
jf.setFileFilter(fileFilter); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (JFileChooser.APPROVE_OPTION == jf.showOpenDialog(DesignerContext.getDesignerFrame())) { |
|
|
|
|
|
|
|
String path = jf.getSelectedFile().getAbsolutePath(); |
|
|
|
|
|
|
|
// 将图片转化到16 × 16大小
|
|
|
|
|
|
|
|
Image image = BaseUtils.readImage(path); |
|
|
|
|
|
|
|
BufferedImage bufferedImage = CoreGraphHelper.createBufferedImage(IconManager.DEFAULT_ICONWIDTH, |
|
|
|
|
|
|
|
IconManager.DEFAULT_ICONHEIGHT, BufferedImage.TYPE_INT_ARGB); |
|
|
|
|
|
|
|
Graphics2D g2d = bufferedImage.createGraphics(); |
|
|
|
|
|
|
|
g2d.drawImage(image, 0, 0, IconManager.DEFAULT_ICONWIDTH, IconManager.DEFAULT_ICONHEIGHT, null); |
|
|
|
|
|
|
|
bufferedImage.flush(); |
|
|
|
|
|
|
|
g2d.dispose(); |
|
|
|
|
|
|
|
iconImage = bufferedImage; |
|
|
|
|
|
|
|
if (iconImage != null) { |
|
|
|
|
|
|
|
showImageLabel.setIcon(new ImageIcon(iconImage)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
protected String title4PopupWindow() { |
|
|
|
protected String title4PopupWindow() { |
|
|
|
return Inter.getLocText(new String[]{"Add", "Icon"}); |
|
|
|
return Inter.getLocText(new String[]{"Add", "Icon"}); |
|
|
|
} |
|
|
|
} |
|
|
|