After Width: | Height: | Size: 14 KiB |
@ -1 +1,62 @@
|
||||
package com.fr.design.actions;
import com.fr.base.BaseUtils;
import com.fr.design.data.datapane.TableDataTreePane;
import com.fr.design.DesignModelAdapter;
import com.fr.design.designer.TargetComponent;
import com.fr.design.file.HistoryTemplateListPane;
import com.fr.design.mainframe.*;
import com.fr.general.Inter;
/**
* Author : daisy
* Date: 13-9-2
* Time: 下午3:36
*/
public class ExitAuthorityEditAction extends TemplateComponentAction {
public ExitAuthorityEditAction(TargetComponent t) {
super(t);
this.setName(Inter.getLocText(new String[]{"Exit", "DashBoard-Potence", "Edit"}));
this.setSmallIcon(BaseUtils.readIcon("/com/fr/design/images/m_report/exit_authority_edit.png"));
}
public void prepare4Undo() {
}
public boolean executeActionReturnUndoRecordNeeded() {
TargetComponent tc = getEditingComponent();
if (tc == null) {
return false;
}
if (BaseUtils.isAuthorityEditing()) {
BaseUtils.setAuthorityEditing(false);
WestRegionContainerPane.getInstance().replaceDownPane(TableDataTreePane.getInstance(DesignModelAdapter.getCurrentModelAdapter()));
EastRegionContainerPane.getInstance().replaceDownPane(tc.getEastDownPane());
EastRegionContainerPane.getInstance().replaceUpPane(tc.getEastUpPane());
DesignerContext.getDesignerFrame().resetToolkitByPlus(tc.getToolBarMenuDockPlus());
DesignerContext.getDesignerFrame().needToAddAuhtorityPaint();
DesignerContext.getDesignerFrame().refreshDottedLine();
fireAuthorityStateToNomal();
}
return true;
}
/**
* 退出权限编辑时,将所有的做过权限编辑的状态,作为一个状态赋给报、报表主体
*/
private void fireAuthorityStateToNomal() {
java.util.List<JTemplate<?, ?>> opendedTemplate = HistoryTemplateListPane.getInstance().getHistoryList();
for (int i = 0; i < opendedTemplate.size(); i++) {
//如果在权限编辑时做过操作,则将做过的操作作为一个整体状态赋给正在报表
if (opendedTemplate.get(i).isDoSomethingInAuthority()) {
opendedTemplate.get(i).fireAuthorityStateToNomal();
}
}
}
} |
||||
package com.fr.design.actions; |
||||
|
||||
import com.fr.base.BaseUtils; |
||||
import com.fr.design.data.datapane.TableDataTreePane; |
||||
import com.fr.design.DesignModelAdapter; |
||||
import com.fr.design.designer.TargetComponent; |
||||
import com.fr.design.file.HistoryTemplateListPane; |
||||
import com.fr.design.mainframe.*; |
||||
import com.fr.general.Inter; |
||||
|
||||
/** |
||||
* Author : daisy |
||||
* Date: 13-9-2 |
||||
* Time: 下午3:36 |
||||
*/ |
||||
public class ExitAuthorityEditAction extends TemplateComponentAction { |
||||
|
||||
public ExitAuthorityEditAction(TargetComponent t) { |
||||
super(t); |
||||
this.setName(Inter.getLocText(new String[]{"Exit", "DashBoard-Potence", "Edit"})); |
||||
this.setSmallIcon(BaseUtils.readIcon("/com/fr/design/images/m_report/exit_authority_edit.png")); |
||||
} |
||||
|
||||
|
||||
public void prepare4Undo() { |
||||
// 遗留代码
|
||||
} |
||||
|
||||
@Override |
||||
public boolean executeActionReturnUndoRecordNeeded() { |
||||
TargetComponent tc = getEditingComponent(); |
||||
if (tc == null) { |
||||
return false; |
||||
} |
||||
|
||||
if (BaseUtils.isAuthorityEditing()) { |
||||
BaseUtils.setAuthorityEditing(false); |
||||
WestRegionContainerPane.getInstance().replaceDownPane(TableDataTreePane.getInstance(DesignModelAdapter.getCurrentModelAdapter())); |
||||
HistoryTemplateListPane.getInstance().getCurrentEditingTemplate().refreshEastPropertiesPane(); |
||||
DesignerContext.getDesignerFrame().resetToolkitByPlus(tc.getToolBarMenuDockPlus()); |
||||
DesignerContext.getDesignerFrame().needToAddAuhtorityPaint(); |
||||
DesignerContext.getDesignerFrame().refreshDottedLine(); |
||||
|
||||
fireAuthorityStateToNomal(); |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 退出权限编辑时,将所有的做过权限编辑的状态,作为一个状态赋给报、报表主体 |
||||
*/ |
||||
private void fireAuthorityStateToNomal() { |
||||
java.util.List<JTemplate<?, ?>> opendedTemplate = HistoryTemplateListPane.getInstance().getHistoryList(); |
||||
for (int i = 0; i < opendedTemplate.size(); i++) { |
||||
//如果在权限编辑时做过操作,则将做过的操作作为一个整体状态赋给正在报表
|
||||
if (opendedTemplate.get(i).isDoSomethingInAuthority()) { |
||||
opendedTemplate.get(i).fireAuthorityStateToNomal(); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,373 @@
|
||||
package com.fr.design.gui.ibutton; |
||||
|
||||
import com.fr.base.BaseUtils; |
||||
import com.fr.base.CellBorderStyle; |
||||
import com.fr.base.GraphHelper; |
||||
import com.fr.design.constants.UIConstants; |
||||
import com.fr.design.event.UIObserver; |
||||
import com.fr.design.event.UIObserverListener; |
||||
import com.fr.design.utils.gui.GUICoreUtils; |
||||
import com.fr.stable.Constants; |
||||
import com.fr.stable.StringUtils; |
||||
|
||||
import javax.swing.*; |
||||
import javax.swing.plaf.ButtonUI; |
||||
import java.awt.*; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.awt.event.MouseEvent; |
||||
import java.awt.geom.RoundRectangle2D; |
||||
|
||||
public class UISliderButton extends JButton implements UIObserver { |
||||
|
||||
public static final int OTHER_BORDER = 1; |
||||
public static final int NORMAL_BORDER = 2; |
||||
private static final int HEIGH = 20; |
||||
private static final int TOOLTIP_Y = 30; |
||||
private boolean isExtraPainted = true; |
||||
private boolean isRoundBorder = true; |
||||
private int rectDirection = Constants.NULL; |
||||
private Stroke borderStroke = UIConstants.BS; |
||||
private Color borderColor = UIConstants.LINE_COLOR; |
||||
|
||||
private boolean isPressedPainted = true; |
||||
private boolean isNormalPainted = true; |
||||
protected boolean isBorderPaintedOnlyWhenPressed = false; |
||||
|
||||
private int borderType = NORMAL_BORDER; |
||||
private CellBorderStyle border = null; |
||||
|
||||
protected UIObserverListener uiObserverListener; |
||||
|
||||
public UISliderButton() { |
||||
this(StringUtils.EMPTY); |
||||
} |
||||
|
||||
public UISliderButton(String string) { |
||||
this(string, null); |
||||
} |
||||
|
||||
|
||||
public UISliderButton(Icon icon) { |
||||
this(null, icon); |
||||
} |
||||
|
||||
public UISliderButton(Action action) { |
||||
super(action); |
||||
init(); |
||||
} |
||||
|
||||
public UISliderButton(String text, Icon icon) { |
||||
super(text, icon); |
||||
init(); |
||||
} |
||||
|
||||
/** |
||||
* 是否进行过权限编辑 |
||||
* |
||||
* @param role 角色 |
||||
* @return 否 |
||||
*/ |
||||
public boolean isDoneAuthorityEdited(String role) { |
||||
return false; |
||||
} |
||||
|
||||
public UISliderButton(Icon normal, Icon rollOver, Icon pressed) { |
||||
super(normal); |
||||
setBorderPainted(false); |
||||
setRolloverIcon(rollOver); |
||||
setPressedIcon(pressed); |
||||
setExtraPainted(false); |
||||
setBackground(null); |
||||
setOpaque(false); |
||||
initListener(); |
||||
} |
||||
|
||||
protected void initListener() { |
||||
if (shouldResponseChangeListener()) { |
||||
this.addActionListener(new ActionListener() { |
||||
public void actionPerformed(ActionEvent e) { |
||||
if (uiObserverListener == null) { |
||||
return; |
||||
} |
||||
uiObserverListener.doChange(); |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
|
||||
|
||||
//确定是正常的边框类型,还是其他的Border类型
|
||||
//若是其他的border类型,则要setOtherType,即设置线型颜色等。若是其他类型,但是没有设置,则默认的是虚线型边框
|
||||
public void setBorderType(int borderType) { |
||||
this.borderType = borderType; |
||||
} |
||||
|
||||
|
||||
public void setBorderStyle(CellBorderStyle border) { |
||||
this.border = border; |
||||
} |
||||
|
||||
public void set4ToolbarButton() { |
||||
setNormalPainted(false); |
||||
Dimension dim = getPreferredSize(); |
||||
dim.height = HEIGH; |
||||
setBackground(null); |
||||
setOpaque(false); |
||||
setSize(dim); |
||||
setBorderPaintedOnlyWhenPressed(true); |
||||
} |
||||
|
||||
public void set4LargeToolbarButton() { |
||||
setNormalPainted(false); |
||||
setBackground(null); |
||||
setOpaque(false); |
||||
setSize(new Dimension(40, 40)); |
||||
setBorderPaintedOnlyWhenPressed(true); |
||||
} |
||||
|
||||
public void set4ChartLargeToolButton() { |
||||
setNormalPainted(false); |
||||
setBackground(null); |
||||
setOpaque(false); |
||||
setSize(new Dimension(34, 44)); |
||||
setBorderPaintedOnlyWhenPressed(true); |
||||
} |
||||
|
||||
|
||||
private void init() { |
||||
setOpaque(false); |
||||
setBackground(null); |
||||
setRolloverEnabled(true); |
||||
initListener(); |
||||
} |
||||
|
||||
@Override |
||||
public ButtonUI getUI() { |
||||
return new UISliderButtonUI(); |
||||
} |
||||
|
||||
/** |
||||
* 更新界面 |
||||
*/ |
||||
public void updateUI() { |
||||
setUI(getUI()); |
||||
} |
||||
|
||||
public CellBorderStyle getBorderStyle() { |
||||
return this.border; |
||||
} |
||||
|
||||
@Override |
||||
public Insets getInsets() { |
||||
if (getIcon() != null) { |
||||
return new Insets(0, 3, 0, 3); |
||||
} |
||||
return new Insets(0, 0, 0, 0); |
||||
} |
||||
|
||||
//@Override
|
||||
public Dimension getPreferredSize() { |
||||
return new Dimension(super.getPreferredSize().width, 20); |
||||
} |
||||
|
||||
|
||||
public int getBorderType() { |
||||
return borderType; |
||||
} |
||||
|
||||
public void setOtherBorder(Stroke s, Color c) { |
||||
borderStroke = s; |
||||
borderColor = c; |
||||
} |
||||
|
||||
|
||||
@Override |
||||
protected void paintBorder(Graphics g) { |
||||
|
||||
if (!isBorderPainted()) { |
||||
return; |
||||
} |
||||
if (borderType == OTHER_BORDER) { |
||||
paintOtherBorder(g); |
||||
} else { |
||||
boolean isPress = (isBorderPaintedOnlyWhenPressed && getModel().isPressed()); |
||||
if (isPress || !isBorderPaintedOnlyWhenPressed) { |
||||
if (ui instanceof UISliderButtonUI) { |
||||
((UISliderButtonUI) ui).paintBorder(g, this); |
||||
|
||||
} else { |
||||
super.paintBorder(g); |
||||
|
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void paintComponent(Graphics g) { |
||||
super.paintComponent(g); |
||||
Dimension size = this.getSize(); |
||||
Graphics2D g2d = (Graphics2D) g; |
||||
Stroke oldStroke = g2d.getStroke(); |
||||
if (border != null) { |
||||
g2d.setColor(border.getTopColor()); |
||||
GraphHelper.drawLine(g2d, 3, 4, size.getWidth() - 4, 4, border.getTopStyle()); |
||||
g2d.setColor(border.getLeftColor()); |
||||
GraphHelper.drawLine(g2d, 3, 4, 3, size.getHeight() - 4, border.getLeftStyle()); |
||||
g2d.setColor(border.getBottomColor()); |
||||
GraphHelper.drawLine(g2d, 3, size.getHeight() - 4, size.getWidth() - 4, size.getHeight() - 4, border.getBottomStyle()); |
||||
g2d.setColor(border.getRightColor()); |
||||
GraphHelper.drawLine(g2d, size.getWidth() - 4, 4, size.getWidth() - 4, size.getHeight() - 4, border.getRightStyle()); |
||||
} else { |
||||
GraphHelper.drawLine(g2d, 2, 4, size.getWidth() - 4, 4, Constants.LINE_NONE); |
||||
GraphHelper.drawLine(g2d, 2, 4, 2, size.getHeight() - 4, Constants.LINE_NONE); |
||||
GraphHelper.drawLine(g2d, 2, size.getHeight() - 4, size.getWidth() - 4, size.getHeight() - 4, Constants.LINE_NONE); |
||||
GraphHelper.drawLine(g2d, size.getWidth() - 4, 4, size.getWidth() - 4, size.getHeight() - 4, Constants.LINE_NONE); |
||||
} |
||||
g2d.setStroke(oldStroke); |
||||
} |
||||
|
||||
|
||||
protected void paintOtherBorder(Graphics g) { |
||||
Graphics2D g2d = (Graphics2D) g; |
||||
g2d.setStroke(borderStroke); |
||||
Shape shape = new RoundRectangle2D.Float(0.5f, 0.5f, getWidth() - 1, getHeight() - 1, UIConstants.ARC, UIConstants.ARC); |
||||
g2d.setColor(borderColor); |
||||
g2d.draw(shape); |
||||
} |
||||
|
||||
public void setExtraPainted(boolean extra) { |
||||
this.isExtraPainted = extra; |
||||
} |
||||
|
||||
/** |
||||
* 是否额外画 |
||||
* |
||||
* @return 是则返回TRUE |
||||
*/ |
||||
public boolean isExtraPainted() { |
||||
return this.isExtraPainted; |
||||
} |
||||
|
||||
/** |
||||
* @return |
||||
*/ |
||||
public int getRectDirection() { |
||||
return rectDirection; |
||||
} |
||||
|
||||
/** |
||||
* 是否圆边框 |
||||
* |
||||
* @return 是则返回true |
||||
*/ |
||||
public boolean isRoundBorder() { |
||||
return isRoundBorder; |
||||
} |
||||
|
||||
/** |
||||
* @param isRoundBorder |
||||
*/ |
||||
public void setRoundBorder(boolean isRoundBorder) { |
||||
setRoundBorder(isRoundBorder, Constants.NULL); |
||||
} |
||||
|
||||
/** |
||||
* @param isRound |
||||
* @param rectDirection |
||||
*/ |
||||
public void setRoundBorder(boolean isRound, int rectDirection) { |
||||
this.isRoundBorder = isRound; |
||||
this.rectDirection = rectDirection; |
||||
} |
||||
|
||||
/** |
||||
* 是否按压画 |
||||
* |
||||
* @return 是则返回TRUE |
||||
*/ |
||||
public boolean isPressedPainted() { |
||||
return isPressedPainted; |
||||
} |
||||
|
||||
/** |
||||
* @param isPressedPainted |
||||
*/ |
||||
public void setPressedPainted(boolean isPressedPainted) { |
||||
this.isPressedPainted = isPressedPainted; |
||||
} |
||||
|
||||
/** |
||||
* 是否正常画 |
||||
* |
||||
* @return 是则返回TRUE |
||||
*/ |
||||
public boolean isNormalPainted() { |
||||
return isNormalPainted; |
||||
} |
||||
|
||||
/** |
||||
* @param isNormalPressed |
||||
*/ |
||||
public void setNormalPainted(boolean isNormalPressed) { |
||||
this.isNormalPainted = isNormalPressed; |
||||
if (!isNormalPressed) { |
||||
setBackground(null); |
||||
setOpaque(false); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* @param value |
||||
*/ |
||||
public void setBorderPaintedOnlyWhenPressed(boolean value) { |
||||
this.isBorderPaintedOnlyWhenPressed = value; |
||||
} |
||||
|
||||
@Override |
||||
public Point getToolTipLocation(MouseEvent event) { |
||||
return new Point(event.getX(), event.getY() - TOOLTIP_Y); |
||||
} |
||||
|
||||
/** |
||||
* 主函数 |
||||
* |
||||
* @param args 入口参数 |
||||
*/ |
||||
public static void main(String... args) { |
||||
JFrame jf = new JFrame("test"); |
||||
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
||||
JPanel content = (JPanel) jf.getContentPane(); |
||||
content.setLayout(null); |
||||
|
||||
UISliderButton bb = new UISliderButton(BaseUtils.readIcon("/com/fr/design/images/buttonicon/add.png")); |
||||
bb.setEnabled(false); |
||||
bb.setBorderType(OTHER_BORDER); |
||||
// bb.setBounds(20, 20,content.getSize().width, bb.getPreferredSize().height);
|
||||
bb.setPreferredSize(new Dimension(100, 30)); |
||||
bb.setBounds(0, 0, bb.getPreferredSize().width, bb.getPreferredSize().height); |
||||
content.add(bb); |
||||
GUICoreUtils.centerWindow(jf); |
||||
jf.setSize(400, 400); |
||||
jf.setVisible(true); |
||||
} |
||||
|
||||
/** |
||||
* 给组件登记一个观察者监听事件 |
||||
* |
||||
* @param listener 观察者监听事件 |
||||
*/ |
||||
public void registerChangeListener(UIObserverListener listener) { |
||||
this.uiObserverListener = listener; |
||||
} |
||||
|
||||
/** |
||||
* 组件是否需要响应添加的观察者事件 |
||||
* |
||||
* @return 如果需要响应观察者事件则返回true,否则返回false |
||||
*/ |
||||
public boolean shouldResponseChangeListener() { |
||||
return true; |
||||
} |
||||
} |
@ -0,0 +1,227 @@
|
||||
package com.fr.design.gui.ibutton; |
||||
|
||||
import java.awt.*; |
||||
import java.awt.geom.RoundRectangle2D; |
||||
|
||||
import javax.swing.AbstractButton; |
||||
import javax.swing.ButtonModel; |
||||
import javax.swing.Icon; |
||||
import javax.swing.JComponent; |
||||
import javax.swing.SwingUtilities; |
||||
import javax.swing.plaf.basic.BasicButtonUI; |
||||
import javax.swing.plaf.basic.BasicHTML; |
||||
import javax.swing.text.View; |
||||
|
||||
import com.fr.base.BaseUtils; |
||||
import com.fr.design.constants.UIConstants; |
||||
import com.fr.design.roleAuthority.ReportAndFSManagePane; |
||||
import com.fr.stable.Constants; |
||||
import sun.swing.SwingUtilities2; |
||||
|
||||
import com.fr.stable.StringUtils; |
||||
import com.fr.design.utils.gui.GUIPaintUtils; |
||||
|
||||
import static com.fr.design.utils.gui.GUIPaintUtils.fillPaint; |
||||
|
||||
public class UISliderButtonUI extends BasicButtonUI { |
||||
|
||||
private Rectangle viewRec = new Rectangle(); |
||||
private Rectangle textRec = new Rectangle(); |
||||
private Rectangle iconRec = new Rectangle(); |
||||
|
||||
@Override |
||||
public void paint(Graphics g, JComponent c) { |
||||
UISliderButton b = (UISliderButton) c; |
||||
Graphics2D g2d = (Graphics2D) g; |
||||
int w = b.getWidth(); |
||||
int h = b.getHeight(); |
||||
|
||||
String text = initRecAndGetText(b, SwingUtilities2.getFontMetrics(b, g), b.getWidth(), b.getHeight()); |
||||
String selectedRoles = ReportAndFSManagePane.getInstance().getRoleTree().getSelectedRoleName(); |
||||
clearTextShiftOffset(); |
||||
|
||||
((Graphics2D) g).setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); |
||||
if (b.isExtraPainted()) { |
||||
if (isPressed(b) && b.isPressedPainted()) { |
||||
fillPressed(g2d, 0, 0, w, h, b.isRoundBorder(), b.getRectDirection(), b.isDoneAuthorityEdited(selectedRoles)); |
||||
} else if (isRollOver(b)) { |
||||
fillRollOver(g2d, 0, 0, w, h, b.isRoundBorder(), b.getRectDirection(), b.isDoneAuthorityEdited(selectedRoles), b.isPressedPainted()); |
||||
} else if (b.isNormalPainted()) { |
||||
fillNormal(g2d, 0, 0, w, h, b.isRoundBorder(), b.getRectDirection(), b.isDoneAuthorityEdited(selectedRoles), b.isPressedPainted()); |
||||
} |
||||
} |
||||
((Graphics2D) g).setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF); |
||||
|
||||
paintContent(g, b, text); |
||||
} |
||||
|
||||
protected boolean isRollOver(AbstractButton b) { |
||||
ButtonModel model = b.getModel(); |
||||
return model.isRollover() && !b.isSelected(); |
||||
} |
||||
|
||||
protected boolean isPressed(AbstractButton b) { |
||||
ButtonModel model = b.getModel(); |
||||
return (model.isArmed() && model.isPressed()) || b.isSelected(); |
||||
} |
||||
|
||||
private void paintContent(Graphics g, AbstractButton b, String text) { |
||||
if (b.getIcon() != null) { |
||||
paintIcon(g, b); |
||||
} |
||||
if (!StringUtils.isEmpty(text)) { |
||||
paintText(g, b, text); |
||||
} |
||||
} |
||||
|
||||
private void paintText(Graphics g, AbstractButton b, String text) { |
||||
View v = (View) b.getClientProperty(BasicHTML.propertyKey); |
||||
if (v != null) { |
||||
v.paint(g, textRec); |
||||
return; |
||||
} |
||||
FontMetrics fm = SwingUtilities2.getFontMetrics(b, g); |
||||
int mnemonicIndex = b.getDisplayedMnemonicIndex(); |
||||
if (b.isEnabled()) { |
||||
g.setColor(UIConstants.FONT_COLOR); |
||||
} else { |
||||
g.setColor(UIConstants.LINE_COLOR); |
||||
} |
||||
|
||||
SwingUtilities2.drawStringUnderlineCharAt(b, g, text, mnemonicIndex, textRec.x + getTextShiftOffset(), textRec.y + fm.getAscent() + getTextShiftOffset()); |
||||
} |
||||
|
||||
private String initRecAndGetText(AbstractButton b, FontMetrics fm, int width, int height) { |
||||
Insets i = b.getInsets(); |
||||
viewRec.x = i.left; |
||||
viewRec.y = i.top; |
||||
viewRec.width = width - (i.right + viewRec.x); |
||||
viewRec.height = height - (i.bottom + viewRec.y); |
||||
textRec.x = textRec.y = textRec.width = textRec.height = 0; |
||||
iconRec.x = iconRec.y = iconRec.width = iconRec.height = 0; |
||||
// layout the text and icon
|
||||
return SwingUtilities.layoutCompoundLabel( |
||||
b, fm, b.getText(), b.getIcon(), |
||||
b.getVerticalAlignment(), b.getHorizontalAlignment(), |
||||
b.getVerticalTextPosition(), b.getHorizontalTextPosition(), |
||||
viewRec, iconRec, textRec, |
||||
b.getText() == null ? 0 : b.getIconTextGap()); |
||||
} |
||||
|
||||
protected void paintBorder(Graphics g, UISliderButton b) { |
||||
String selectedRoles = ReportAndFSManagePane.getInstance().getRoleTree().getSelectedRoleName(); |
||||
GUIPaintUtils.drawBorder((Graphics2D) g, 0, 0, b.getWidth(), b.getHeight(), b.isRoundBorder(), b.getRectDirection(), b.isDoneAuthorityEdited(selectedRoles)); |
||||
|
||||
} |
||||
|
||||
protected void paintIcon(Graphics g, JComponent c) { |
||||
AbstractButton b = (AbstractButton) c; |
||||
ButtonModel model = b.getModel(); |
||||
Icon icon = b.getIcon(); |
||||
Icon tmpIcon = null; |
||||
if (icon == null) { |
||||
return; |
||||
} |
||||
Icon selectedIcon = null; |
||||
/* the fallback icon should be based on the selected state */ |
||||
if (model.isSelected()) { |
||||
selectedIcon = (Icon) b.getSelectedIcon(); |
||||
if (selectedIcon != null) { |
||||
icon = selectedIcon; |
||||
} |
||||
} |
||||
if (!model.isEnabled()) { |
||||
if (model.isSelected()) { |
||||
tmpIcon = (Icon) b.getDisabledSelectedIcon(); |
||||
if (tmpIcon == null) { |
||||
tmpIcon = selectedIcon; |
||||
} |
||||
} |
||||
if (tmpIcon == null) { |
||||
tmpIcon = (Icon) b.getDisabledIcon(); |
||||
} |
||||
} else if (model.isPressed() && model.isArmed()) { |
||||
tmpIcon = (Icon) b.getPressedIcon(); |
||||
if (tmpIcon != null) { |
||||
// revert back to 0 offset
|
||||
clearTextShiftOffset(); |
||||
} |
||||
} else if (b.isRolloverEnabled() && model.isRollover()) { |
||||
if (model.isSelected()) { |
||||
tmpIcon = (Icon) b.getRolloverSelectedIcon(); |
||||
if (tmpIcon == null) { |
||||
tmpIcon = selectedIcon; |
||||
} |
||||
} |
||||
if (tmpIcon == null) { |
||||
tmpIcon = (Icon) b.getRolloverIcon(); |
||||
} |
||||
} |
||||
if (tmpIcon != null) { |
||||
icon = tmpIcon; |
||||
} |
||||
paintModelIcon(model, icon, g, c); |
||||
} |
||||
|
||||
private void paintModelIcon(ButtonModel model, Icon icon, Graphics g, JComponent c) { |
||||
if (model.isPressed() && model.isArmed()) { |
||||
icon.paintIcon(c, g, iconRec.x + getTextShiftOffset(), |
||||
iconRec.y + getTextShiftOffset()); |
||||
} else { |
||||
icon.paintIcon(c, g, iconRec.x, iconRec.y); |
||||
} |
||||
} |
||||
|
||||
private void fillNormal(Graphics2D g2d, int x, int y, int width, int height, boolean isRound, int rectDirection, boolean isAuthorityEdited, boolean isPressedPainted) { |
||||
GradientPaint gp; |
||||
if (BaseUtils.isAuthorityEditing() && isAuthorityEdited) { |
||||
gp = new GradientPaint(1, 1, UIConstants.AUTHORITY_BLUE, 1, height - 1, UIConstants.AUTHORITY_DARK_BLUE); |
||||
} else if (isPressedPainted) { |
||||
gp = new GradientPaint(1, 1, UIConstants.SELECT_TAB, 1, height - 1, UIConstants.SELECT_TAB); |
||||
}else{ |
||||
gp = new GradientPaint(1, 1, UIConstants.POP_DIALOG_BORDER, 1, height - 1, UIConstants.POP_DIALOG_BORDER); |
||||
} |
||||
|
||||
fillPaint(g2d, x, y, width, height, isRound, rectDirection, gp, UIConstants.ARC); |
||||
} |
||||
|
||||
private void fillRollOver(Graphics2D g2d, int x, int y, int width, int height, boolean isRound, int rectDirection, boolean isAuthorityEdited, boolean isPressedPainted) { |
||||
GradientPaint gp; |
||||
if (BaseUtils.isAuthorityEditing() && isAuthorityEdited) { |
||||
gp = new GradientPaint(1, 1, UIConstants.AUTHORITY_BLUE, 1, height - 1, UIConstants.HOVER_BLUE); |
||||
} else if (isPressedPainted) { |
||||
gp = new GradientPaint(1, 1, UIConstants.POP_DIALOG_BORDER, 1, height - 1, UIConstants.POP_DIALOG_BORDER); |
||||
}else { |
||||
gp = new GradientPaint(1, 1, UIConstants.POP_DIALOG_BORDER, 1, height - 1, UIConstants.POP_DIALOG_BORDER); |
||||
} |
||||
fillPaint(g2d, x, y, width, height, isRound, rectDirection, gp, UIConstants.ARC); |
||||
} |
||||
|
||||
private void fillPressed(Graphics2D g2d, int x, int y, int width, int height, boolean isRound, int rectDirection, boolean isAuthorityEdited) { |
||||
Color oldColor = g2d.getColor(); |
||||
if (BaseUtils.isAuthorityEditing() && isAuthorityEdited) { |
||||
g2d.setColor(UIConstants.AUTHORITY_PRESS_BLUE); |
||||
} else { |
||||
g2d.setColor(UIConstants.POP_DIALOG_BORDER); |
||||
} |
||||
Shape oldClip = g2d.getClip(); |
||||
if (isRound) { |
||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); |
||||
g2d.clip(new RoundRectangle2D.Double(x, y, width, height, UIConstants.ARC, UIConstants.ARC)); |
||||
g2d.fillRoundRect(x, y, width, height, UIConstants.ARC, UIConstants.ARC); |
||||
g2d.setClip(oldClip); |
||||
if (rectDirection == Constants.RIGHT) { |
||||
g2d.fillRect(width - 2, y, x + 2, height); |
||||
} else if (rectDirection == Constants.LEFT) { |
||||
g2d.fillRect(x, y, x + 2, height); |
||||
} |
||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF); |
||||
} else { |
||||
g2d.clip(new Rectangle(x, y, width, height)); |
||||
g2d.fillRect(0, 0, width, height); |
||||
g2d.setClip(oldClip); |
||||
} |
||||
|
||||
g2d.setColor(oldColor); |
||||
} |
||||
} |
@ -1,47 +0,0 @@
|
||||
package com.fr.design.gui.itextfield; |
||||
|
||||
import java.awt.event.FocusEvent; |
||||
import java.awt.event.FocusListener; |
||||
import javax.swing.text.Document; |
||||
|
||||
|
||||
/** |
||||
* Created by ibm on 2017/8/16. |
||||
*/ |
||||
public class UIPropertyTextField extends UITextField{ |
||||
|
||||
public UIPropertyTextField() { |
||||
super(); |
||||
} |
||||
|
||||
public UIPropertyTextField(int columns) { |
||||
super(columns); |
||||
} |
||||
|
||||
public UIPropertyTextField(String text, int columns) { |
||||
super(text, columns); |
||||
} |
||||
|
||||
public UIPropertyTextField(String text) { |
||||
super(text); |
||||
} |
||||
|
||||
public UIPropertyTextField(Document doc, String text, int columns) { |
||||
super(doc, text, columns); |
||||
} |
||||
|
||||
protected void initListener() { |
||||
if (shouldResponseChangeListener()) { |
||||
addFocusListener(new FocusListener() { |
||||
@Override |
||||
public void focusGained(FocusEvent e) { |
||||
} |
||||
|
||||
@Override |
||||
public void focusLost(FocusEvent e) { |
||||
attributeChange(); |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
} |
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 942 B |
Before Width: | Height: | Size: 412 B After Width: | Height: | Size: 482 B |
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 214 B |
@ -1,41 +1,41 @@
|
||||
package com.fr.design.mainframe.widget.accessibles; |
||||
|
||||
import javax.swing.SwingUtilities; |
||||
|
||||
import com.fr.design.mainframe.widget.wrappers.TreeModelWrapper; |
||||
import com.fr.design.dialog.BasicDialog; |
||||
import com.fr.design.dialog.DialogActionAdapter; |
||||
import com.fr.design.gui.frpane.TreeSettingPane; |
||||
|
||||
|
||||
/** |
||||
* 用于TreeEdito和TreeComboBox的数据格式设置 |
||||
* @since 6.5.3 |
||||
*/ |
||||
public class AccessibleTreeModelEditor extends UneditableAccessibleEditor { |
||||
|
||||
private TreeSettingPane treeSettingPane; |
||||
|
||||
public AccessibleTreeModelEditor() { |
||||
super(new TreeModelWrapper()); |
||||
} |
||||
|
||||
@Override |
||||
protected void showEditorPane() { |
||||
if (treeSettingPane == null) { |
||||
treeSettingPane = new TreeSettingPane(false); |
||||
} |
||||
BasicDialog dlg = treeSettingPane.showWindow(SwingUtilities.getWindowAncestor(this)); |
||||
treeSettingPane.populate(getValue()); |
||||
dlg.addDialogActionListener(new DialogActionAdapter() { |
||||
|
||||
@Override |
||||
public void doOk() { |
||||
Object nodeOrDict = treeSettingPane.updateTreeNodeAttrs(); |
||||
setValue(nodeOrDict); |
||||
fireStateChanged(); |
||||
} |
||||
}); |
||||
dlg.setVisible(true); |
||||
} |
||||
package com.fr.design.mainframe.widget.accessibles; |
||||
|
||||
import javax.swing.SwingUtilities; |
||||
|
||||
import com.fr.design.mainframe.widget.wrappers.TreeModelWrapper; |
||||
import com.fr.design.dialog.BasicDialog; |
||||
import com.fr.design.dialog.DialogActionAdapter; |
||||
import com.fr.design.gui.frpane.TreeSettingPane; |
||||
|
||||
|
||||
/** |
||||
* 用于TreeEdito和TreeComboBox的数据格式设置 |
||||
* @since 6.5.3 |
||||
*/ |
||||
public class AccessibleTreeModelEditor extends UneditableAccessibleEditor { |
||||
|
||||
private TreeSettingPane treeSettingPane; |
||||
|
||||
public AccessibleTreeModelEditor() { |
||||
super(new TreeModelWrapper()); |
||||
} |
||||
|
||||
@Override |
||||
protected void showEditorPane() { |
||||
if (treeSettingPane == null) { |
||||
treeSettingPane = new TreeSettingPane(false); |
||||
} |
||||
BasicDialog dlg = treeSettingPane.showWindow(SwingUtilities.getWindowAncestor(this)); |
||||
treeSettingPane.populate(getValue()); |
||||
dlg.addDialogActionListener(new DialogActionAdapter() { |
||||
|
||||
@Override |
||||
public void doOk() { |
||||
Object nodeOrDict = treeSettingPane.updateTreeNodeAttrs(); |
||||
setValue(nodeOrDict); |
||||
fireStateChanged(); |
||||
} |
||||
}); |
||||
dlg.setVisible(true); |
||||
} |
||||
} |
@ -1,40 +1,40 @@
|
||||
package com.fr.design.mainframe.widget.wrappers; |
||||
|
||||
import com.fr.base.TemplateUtils; |
||||
import com.fr.data.impl.TreeNodeAttr; |
||||
import com.fr.data.impl.TreeNodeWrapper; |
||||
import com.fr.design.Exception.ValidationException; |
||||
import com.fr.design.designer.properties.Decoder; |
||||
import com.fr.design.designer.properties.Encoder; |
||||
import com.fr.general.Inter; |
||||
import com.fr.general.NameObject; |
||||
import com.fr.stable.StringUtils; |
||||
|
||||
public class TreeModelWrapper implements Encoder, Decoder { |
||||
|
||||
@Override |
||||
public String encode(Object v) { |
||||
if (v == null) { |
||||
return StringUtils.EMPTY; |
||||
} |
||||
if (v instanceof TreeNodeAttr[]) { |
||||
return TemplateUtils.render(Inter.getLocText("FR-Designer_Total_N_Grade"), new String[]{"N"}, new String[]{((TreeNodeAttr[]) v).length + ""}); |
||||
} else if (v instanceof TreeNodeWrapper) { |
||||
TreeNodeAttr[] treeNodeAttrs = ((TreeNodeWrapper) v).getTreeNodeAttrs(); |
||||
return TemplateUtils.render(Inter.getLocText("FR-Designer_Total_N_Grade"), new String[]{"N"}, new String[]{treeNodeAttrs.length + ""}); |
||||
} else if (v instanceof NameObject) { |
||||
return Inter.getLocText("FR-Designer_DataTable-Build"); |
||||
} else { |
||||
return Inter.getLocText("FR-Designer_Auto-Build"); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public Object decode(String txt) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public void validate(String txt) throws ValidationException { |
||||
} |
||||
package com.fr.design.mainframe.widget.wrappers; |
||||
|
||||
import com.fr.base.TemplateUtils; |
||||
import com.fr.data.impl.TreeNodeAttr; |
||||
import com.fr.data.impl.TreeNodeWrapper; |
||||
import com.fr.design.Exception.ValidationException; |
||||
import com.fr.design.designer.properties.Decoder; |
||||
import com.fr.design.designer.properties.Encoder; |
||||
import com.fr.general.Inter; |
||||
import com.fr.general.NameObject; |
||||
import com.fr.stable.StringUtils; |
||||
|
||||
public class TreeModelWrapper implements Encoder, Decoder { |
||||
|
||||
@Override |
||||
public String encode(Object v) { |
||||
if (v == null) { |
||||
return StringUtils.EMPTY; |
||||
} |
||||
if (v instanceof TreeNodeAttr[]) { |
||||
return TemplateUtils.render(Inter.getLocText("FR-Designer_Total_N_Grade"), new String[]{"N"}, new String[]{((TreeNodeAttr[]) v).length + ""}); |
||||
} else if (v instanceof TreeNodeWrapper) { |
||||
TreeNodeAttr[] treeNodeAttrs = ((TreeNodeWrapper) v).getTreeNodeAttrs(); |
||||
return TemplateUtils.render(Inter.getLocText("FR-Designer_Total_N_Grade"), new String[]{"N"}, new String[]{treeNodeAttrs.length + ""}); |
||||
} else if (v instanceof NameObject) { |
||||
return Inter.getLocText("FR-Designer_DataTable-Build"); |
||||
} else { |
||||
return Inter.getLocText("FR-Designer_Auto-Build"); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public Object decode(String txt) { |
||||
return null; |
||||
} |
||||
|
||||
@Override |
||||
public void validate(String txt) throws ValidationException { |
||||
} |
||||
} |
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 105 KiB |