com.scudata.ide.common.swing.AllPurposeRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.ide.common.swing;
import java.awt.Component;
import java.math.BigDecimal;
import java.util.Date;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.swing.JLabel;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.table.TableCellRenderer;
import com.scudata.ide.common.ConfigOptions;
import com.scudata.ide.common.GC;
import com.scudata.ide.common.GM;
import com.scudata.util.Variant;
/**
* JTable?ĵ?Ԫ????Ⱦ??
*
*/
public class AllPurposeRenderer implements TableCellRenderer {
/**
* ֧???»??ߵ??ı??ؼ?
*/
private JLabelUnderLine textField = new JLabelUnderLine();
/**
* ?Ƿ????????
*/
private boolean hasIndex = false;
/**
* ??ʾ??ʽ
*/
private String format;
/**
* ???캯??
*/
public AllPurposeRenderer() {
this(false);
}
/**
* ???캯??
*
* @param hasIndex
* ?Ƿ????????
*/
public AllPurposeRenderer(boolean hasIndex) {
this.hasIndex = hasIndex;
}
/**
* ???캯??
*
* @param format
* ??ʾ??ʽ
*/
public AllPurposeRenderer(String format) {
this(format, false);
}
/**
* ???캯??
*
* @param format
* ??ʾ??ʽ
* @param hasIndex
* ?Ƿ????????
*/
public AllPurposeRenderer(String format, boolean hasIndex) {
this.format = format;
this.hasIndex = hasIndex;
textField.setBorder(null);
}
/**
* ȡ??ʾ?ؼ?
*/
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
if (isSelected) {
textField.setForeground(table.getSelectionForeground());
// ????????????Ͻǵĸ??б???ɫ
if (ConfigOptions.getCellColor() != null) {
textField.setBackground(ConfigOptions.getCellColor());
} else { // δ?Զ?????????ɫ??????ϵͳĬ????ɫ
textField.setBackground(table.getSelectionBackground());
}
} else {
textField.setBackground(table.getBackground());
textField.setForeground(table.getForeground());
}
textField.setFont(table.getFont());
textField.setOpaque(true);
textField.setValue(value);
if (GM.isRefVal(value)) {
textField.setForeground(ConfigOptions.COLOR_REF);
}
boolean isNumber = value != null && value instanceof Number;
boolean isDate = value != null && value instanceof Date;
if (isNumber) {
textField.setHorizontalAlignment(JLabel.RIGHT);
} else {
textField.setHorizontalAlignment(JLabel.LEFT);
}
String strText = null;
try {
// ?????????????IJ?format
Pattern p = Pattern.compile("[#\\.0]");
Matcher m = p.matcher(format);
boolean numFormat = m.find();
if ((numFormat && isNumber) || (isDate && !numFormat)) { // ?кϷ???ʽ???ø?ʽ??ʾ
strText = Variant.format(value, format);
} else {
strText = GM.renderValueText(value);
}
} catch (Exception e) {
if (value != null) {
strText = GM.renderValueText(value);
}
}
if (value != null) {
if (value instanceof BigDecimal) {
textField.setForeground(ConfigOptions.COLOR_DECIMAL);
} else if (value instanceof Double) {
textField.setForeground(ConfigOptions.COLOR_DOUBLE);
} else if (value instanceof Integer) {
if (!hasIndex || column > 0)
textField.setForeground(ConfigOptions.COLOR_INTEGER);
}
textField.setDispText(strText);
} else {
textField.setDispText(GC.DISP_NULL);
textField.setHorizontalAlignment(JTextField.CENTER);
textField.setForeground(ConfigOptions.COLOR_NULL);
}
return textField;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy