# Conflicts: # designer/src/com/fr/quickeditor/CellQuickEditor.java # designer/src/com/fr/quickeditor/cellquick/CellBiasTextPainterEditor.java # designer/src/com/fr/quickeditor/cellquick/CellDSColumnEditor.java # designer/src/com/fr/quickeditor/cellquick/CellStringQuickEditor.javamaster
@ -1,38 +0,0 @@
|
||||
package com.fr.design.dscolumn; |
||||
|
||||
import com.fr.design.mainframe.cell.CellEditorPane; |
||||
import com.fr.report.cell.TemplateCellElement; |
||||
|
||||
|
||||
/** |
||||
* 单元格元素 数据列 基本设置内容面板 |
||||
* |
||||
* @author yaoh.wu |
||||
* @version 2017年7月25日 |
||||
* @since 9.0 |
||||
*/ |
||||
public class DSColumnAdvancedEditorPane extends CellEditorPane { |
||||
|
||||
|
||||
@Override |
||||
public String getIconPath() { |
||||
return "Advanced"; |
||||
} |
||||
|
||||
@Override |
||||
public String title4PopupWindow() { |
||||
return "Advanced"; |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public void update() { |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public void populate(TemplateCellElement cellElement) { |
||||
|
||||
} |
||||
|
||||
} |
@ -1,84 +0,0 @@
|
||||
package com.fr.design.dscolumn; |
||||
|
||||
import com.fr.design.layout.TableLayout; |
||||
import com.fr.design.layout.TableLayoutHelper; |
||||
import com.fr.design.mainframe.cell.CellEditorPane; |
||||
import com.fr.report.cell.TemplateCellElement; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
|
||||
/** |
||||
* 单元格元素 数据列 高级设置内容面板 |
||||
* |
||||
* @author yaoh.wu |
||||
* @version 2017年7月25日 |
||||
* @since 9.0 |
||||
*/ |
||||
public class DSColumnBasicEditorPane extends CellEditorPane { |
||||
|
||||
//数据集和数据列
|
||||
private SelectedDataColumnPane dataPane; |
||||
//数据分组设置
|
||||
private ResultSetGroupDockingPane groupPane; |
||||
//当前编辑的单元格
|
||||
private TemplateCellElement cellElement; |
||||
//条件过滤按钮面板
|
||||
private JPanel conditionPane; |
||||
|
||||
public DSColumnBasicEditorPane(TemplateCellElement cellElement, SelectedDataColumnPane dataPane, ResultSetGroupDockingPane groupPane, JPanel conditionPane) { |
||||
this.setLayout(new BorderLayout()); |
||||
this.cellElement = cellElement; |
||||
this.dataPane = dataPane; |
||||
this.groupPane = groupPane; |
||||
this.conditionPane = conditionPane; |
||||
this.add(this.createContentPane(), BorderLayout.CENTER); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public String getIconPath() { |
||||
return "Basic"; |
||||
} |
||||
|
||||
@Override |
||||
public String title4PopupWindow() { |
||||
return "Basic"; |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public void update() { |
||||
dataPane.update(this.cellElement); |
||||
groupPane.update(); |
||||
} |
||||
|
||||
@Override |
||||
public void populate(TemplateCellElement cellElement) { |
||||
this.cellElement = cellElement; |
||||
dataPane.populate(null, cellElement); |
||||
groupPane.populate(cellElement); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 创建有内容的面板显示信息 |
||||
* |
||||
* @return content JPanel |
||||
*/ |
||||
private JPanel createContentPane() { |
||||
double p = TableLayout.PREFERRED; |
||||
double f = TableLayout.FILL; |
||||
double[] columnSize = {f}; |
||||
double[] rowSize = {p, p, p}; |
||||
Component[][] components = new Component[][]{ |
||||
//数据集列选择
|
||||
new Component[]{this.dataPane}, |
||||
//数据分组设置
|
||||
new Component[]{this.groupPane}, |
||||
//条件过滤
|
||||
new Component[]{this.conditionPane} |
||||
}; |
||||
return TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize); |
||||
} |
||||
} |
@ -1,45 +1,45 @@
|
||||
package com.fr.design.dscolumn; |
||||
|
||||
import java.awt.Dimension; |
||||
import java.awt.event.ItemEvent; |
||||
import java.awt.event.ItemListener; |
||||
import java.util.Iterator; |
||||
|
||||
import com.fr.data.TableDataSource; |
||||
import com.fr.design.data.datapane.TableDataComboBox; |
||||
import com.fr.design.data.tabledata.wrapper.TemplateTableDataWrapper; |
||||
import com.fr.main.impl.WorkBook; |
||||
import com.fr.report.cell.TemplateCellElement; |
||||
|
||||
import java.awt.*; |
||||
import java.awt.event.ItemEvent; |
||||
import java.awt.event.ItemListener; |
||||
import java.util.Iterator; |
||||
|
||||
public class SelectedConfirmedDataColumnPane extends SelectedDataColumnPane { |
||||
|
||||
public SelectedConfirmedDataColumnPane () { |
||||
super(false); |
||||
} |
||||
public SelectedConfirmedDataColumnPane() { |
||||
super(false); |
||||
} |
||||
|
||||
protected void initTableNameComboBox() { |
||||
tableNameComboBox = new TableDataComboBox(new WorkBook()); |
||||
tableNameComboBox.addItemListener(new ItemListener() { |
||||
@Override |
||||
public void itemStateChanged(ItemEvent e) { |
||||
columnNameComboBox.setLoaded(false); |
||||
} |
||||
}); |
||||
tableNameComboBox.setPreferredSize(new Dimension(100, 20)); |
||||
} |
||||
protected void initTableNameComboBox() { |
||||
tableNameComboBox = new TableDataComboBox(new WorkBook()); |
||||
tableNameComboBox.addItemListener(new ItemListener() { |
||||
@Override |
||||
public void itemStateChanged(ItemEvent e) { |
||||
columnNameComboBox.setLoaded(false); |
||||
} |
||||
}); |
||||
tableNameComboBox.setPreferredSize(new Dimension(100, 20)); |
||||
} |
||||
|
||||
public void populate(TableDataSource source, TemplateCellElement cell) { |
||||
tableNameComboBox.refresh(source); |
||||
tableNameComboBox.setEditable(false); |
||||
tableNameComboBox.setEnabled(false); |
||||
super.populate(source, cell); |
||||
try { |
||||
Iterator it = source.getTableDataNameIterator(); |
||||
String name = (String)it.next(); |
||||
TemplateTableDataWrapper wrapper = new TemplateTableDataWrapper(source.getTableData(name), name); |
||||
tableNameComboBox.setSelectedItem(wrapper); |
||||
tableNameComboBox.getModel().setSelectedItem(wrapper); |
||||
} catch (Exception e) { |
||||
} |
||||
} |
||||
public void populate(TableDataSource source, TemplateCellElement cell) { |
||||
tableNameComboBox.refresh(source); |
||||
tableNameComboBox.setEditable(false); |
||||
tableNameComboBox.setEnabled(false); |
||||
super.populate(source, cell); |
||||
try { |
||||
Iterator it = source.getTableDataNameIterator(); |
||||
String name = (String) it.next(); |
||||
TemplateTableDataWrapper wrapper = new TemplateTableDataWrapper(source.getTableData(name), name); |
||||
tableNameComboBox.setSelectedItem(wrapper); |
||||
tableNameComboBox.getModel().setSelectedItem(wrapper); |
||||
} catch (Exception e) { |
||||
} |
||||
} |
||||
} |
@ -1,21 +0,0 @@
|
||||
package com.fr.design.widget; |
||||
|
||||
import com.fr.design.data.DataCreatorUI; |
||||
import com.fr.design.gui.frpane.TreeSettingPane; |
||||
import com.fr.design.present.dict.DictionaryPane; |
||||
import com.fr.form.ui.Widget; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
public interface DataModify<T> { |
||||
|
||||
void populateBean(T ob); |
||||
|
||||
T updateBean(); |
||||
|
||||
void checkValid() throws Exception; |
||||
|
||||
DataCreatorUI dataUI(); |
||||
|
||||
JComponent toSwingComponent(); |
||||
} |
@ -1,11 +0,0 @@
|
||||
package com.fr.design.widget; |
||||
|
||||
import com.fr.design.data.DataCreatorUI; |
||||
|
||||
/** |
||||
* Created by richie on 15/11/16. |
||||
*/ |
||||
public interface Operator { |
||||
|
||||
void did(DataCreatorUI ui, String cardName); |
||||
} |
@ -1,48 +1,62 @@
|
||||
package com.fr.design.widget.ui; |
||||
|
||||
import com.fr.design.constants.LayoutConstants; |
||||
import com.fr.design.foldablepane.UIExpandablePane; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
import com.fr.design.gui.itextfield.UITextField; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.layout.TableLayout; |
||||
import com.fr.design.layout.TableLayoutHelper; |
||||
import com.fr.form.ui.CheckBox; |
||||
import com.fr.general.Inter; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
|
||||
public class CheckBoxDefinePane extends AbstractDataModify<CheckBox> { |
||||
private UITextField text; |
||||
|
||||
public CheckBoxDefinePane() { |
||||
this.iniComoponents(); |
||||
} |
||||
|
||||
private void iniComoponents() { |
||||
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
||||
this.setBorder(BorderFactory.createEmptyBorder(0, 8, 0, 8)); |
||||
JPanel textPane = FRGUIPaneFactory.createNormalFlowInnerContainer_S_Pane(); |
||||
textPane.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0)); |
||||
UIExpandablePane uiExpandablePane = new UIExpandablePane(Inter.getLocText("FR-Designer_Advanced"), 280, 20, textPane); |
||||
textPane.add(new UILabel(Inter.getLocText("Text") + ":")); |
||||
text = new UITextField(8); |
||||
textPane.add(text); |
||||
this.add(uiExpandablePane); |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return "CheckBox"; |
||||
} |
||||
|
||||
@Override |
||||
public void populateBean(CheckBox check) { |
||||
text.setText(check.getText()); |
||||
} |
||||
|
||||
@Override |
||||
public CheckBox updateBean() { |
||||
CheckBox box = new CheckBox(); |
||||
box.setText(text.getText()); |
||||
return box; |
||||
} |
||||
private UITextField text; |
||||
|
||||
public CheckBoxDefinePane() { |
||||
this.iniComoponents(); |
||||
} |
||||
|
||||
private void iniComoponents() { |
||||
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
||||
text = new UITextField(8); |
||||
JPanel panel = new JPanel(new BorderLayout()); |
||||
panel.add(text, BorderLayout.CENTER); |
||||
panel.setBorder(BorderFactory.createEmptyBorder(0, 35, 0, 0)); |
||||
|
||||
double f = TableLayout.FILL; |
||||
double p = TableLayout.PREFERRED; |
||||
Component[][] components = new Component[][]{ |
||||
new Component[]{new UILabel(Inter.getLocText("FR-Designer_Text")), panel}, |
||||
}; |
||||
double[] rowSize = {p}; |
||||
double[] columnSize = {p, f}; |
||||
int[][] rowCount = {{1, 1}}; |
||||
JPanel pane = TableLayoutHelper.createGapTableLayoutPane(components, rowSize, columnSize, rowCount, LayoutConstants.VGAP_LARGE, LayoutConstants.VGAP_LARGE); |
||||
|
||||
UIExpandablePane uiExpandablePane = new UIExpandablePane(Inter.getLocText("FR-Designer_Advanced"), 280, 24, pane); |
||||
pane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 15)); |
||||
|
||||
this.add(uiExpandablePane); |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return "CheckBox"; |
||||
} |
||||
|
||||
@Override |
||||
public void populateBean(CheckBox check) { |
||||
text.setText(check.getText()); |
||||
} |
||||
|
||||
@Override |
||||
public CheckBox updateBean() { |
||||
CheckBox box = new CheckBox(); |
||||
box.setText(text.getText()); |
||||
return box; |
||||
} |
||||
} |
@ -1,92 +1,82 @@
|
||||
package com.fr.design.widget.ui; |
||||
|
||||
import java.awt.*; |
||||
|
||||
import com.fr.design.constants.LayoutConstants; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
import com.fr.design.gui.icheckbox.UICheckBox; |
||||
import com.fr.design.gui.icombobox.DictionaryComboBox; |
||||
import com.fr.design.gui.icombobox.DictionaryConstants; |
||||
import com.fr.design.gui.itextfield.UINumberField; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.gui.ispinner.UISpinner; |
||||
import com.fr.design.layout.TableLayout; |
||||
import com.fr.design.layout.TableLayoutHelper; |
||||
import com.fr.form.ui.MultiFileEditor; |
||||
import com.fr.general.Inter; |
||||
|
||||
public class MultiFileEditorPane extends FieldEditorDefinePane<MultiFileEditor> { |
||||
private DictionaryComboBox acceptType; |
||||
private UICheckBox singleFileCheckBox; |
||||
private UINumberField fileSizeField; |
||||
|
||||
public MultiFileEditorPane() { |
||||
this.initComponents(); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return "file"; |
||||
} |
||||
|
||||
@Override |
||||
protected JPanel setFirstContentPane() { |
||||
acceptType = new DictionaryComboBox(DictionaryConstants.acceptTypes, DictionaryConstants.fileTypeDisplays); |
||||
acceptType.setPreferredSize(new Dimension(200, 18)); |
||||
singleFileCheckBox = new UICheckBox(Inter.getLocText("SINGLE_FILE_UPLOAD")); |
||||
fileSizeField = new UINumberField(); |
||||
fileSizeField.setPreferredSize(new Dimension(80, 18)); |
||||
|
||||
|
||||
JPanel singleFilePane = FRGUIPaneFactory.createNormalFlowInnerContainer_M_Pane(); |
||||
singleFilePane.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 0)); |
||||
singleFilePane.add(singleFileCheckBox); |
||||
|
||||
JPanel allowTypePane = FRGUIPaneFactory.createNormalFlowInnerContainer_M_Pane(); |
||||
allowTypePane.setLayout(FRGUIPaneFactory.createLabelFlowLayout()); |
||||
allowTypePane.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 0)); |
||||
allowTypePane.add(new UILabel(" " + Inter.getLocText("File-Allow_Upload_Files") + ":")); |
||||
allowTypePane.add(acceptType); |
||||
|
||||
JPanel fileSizePane = FRGUIPaneFactory.createNormalFlowInnerContainer_M_Pane(); |
||||
fileSizePane.add(new UILabel(" " + Inter.getLocText("File-File_Size_Limit") + ":")); |
||||
fileSizePane.add(fileSizeField); |
||||
fileSizePane.add(new UILabel(" KB")); |
||||
|
||||
double f = TableLayout.FILL; |
||||
double p = TableLayout.PREFERRED; |
||||
Component[][] components = new Component[][]{ |
||||
new Component[]{singleFileCheckBox, null }, |
||||
new Component[]{new UILabel(" " + Inter.getLocText("File-Allow_Upload_Files") + ":"), acceptType}, |
||||
new Component[]{new UILabel(" " + Inter.getLocText("File-File_Size_Limit") + ":"), fileSizeField}, |
||||
}; |
||||
double[] rowSize = {p, p,p}; |
||||
double[] columnSize = {p,f}; |
||||
int[][] rowCount = {{1, 1},{1, 1},{1, 1}}; |
||||
JPanel panel = TableLayoutHelper.createGapTableLayoutPane(components, rowSize, columnSize, rowCount, LayoutConstants.VGAP_SMALL, 5); |
||||
|
||||
|
||||
return panel; |
||||
} |
||||
|
||||
@Override |
||||
protected void populateSubFieldEditorBean(MultiFileEditor e) { |
||||
// 这里存在兼容问题 getAccept可能没在待选项目中
|
||||
acceptType.setSelectedItem(e.getAccept()); |
||||
singleFileCheckBox.setSelected(e.isSingleFile()); |
||||
fileSizeField.setValue(e.getMaxSize()); |
||||
} |
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
|
||||
@Override |
||||
protected MultiFileEditor updateSubFieldEditorBean() { |
||||
MultiFileEditor ob = new MultiFileEditor(); |
||||
ob.setAccept((String) acceptType.getSelectedItem()); |
||||
ob.setSingleFile(singleFileCheckBox.isSelected()); |
||||
ob.setMaxSize(fileSizeField.getValue()); |
||||
return ob; |
||||
} |
||||
public class MultiFileEditorPane extends FieldEditorDefinePane<MultiFileEditor> { |
||||
private DictionaryComboBox acceptType; |
||||
private UICheckBox singleFileCheckBox; |
||||
private UISpinner fileSizeField; |
||||
|
||||
public MultiFileEditorPane() { |
||||
this.initComponents(); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return "file"; |
||||
} |
||||
|
||||
@Override |
||||
protected JPanel setFirstContentPane() { |
||||
JPanel contenter = new JPanel(new BorderLayout()); |
||||
|
||||
singleFileCheckBox = new UICheckBox(Inter.getLocText("SINGLE_FILE_UPLOAD")); |
||||
acceptType = new DictionaryComboBox(DictionaryConstants.acceptTypes, DictionaryConstants.fileTypeDisplays); |
||||
// acceptType.setPreferredSize(new Dimension(100, 20));
|
||||
fileSizeField = new UISpinner(0, Integer.MAX_VALUE, 1, -1); |
||||
fileSizeField.setPreferredSize(new Dimension(140, 20)); |
||||
|
||||
JPanel fileSizePane = new JPanel(new BorderLayout()); |
||||
UILabel fileTypeLabel = new UILabel(Inter.getLocText("Utils-File_type")); |
||||
UILabel fileSizeLabel = new UILabel(Inter.getLocText("FR-Designer_Size_Limit")); |
||||
fileSizePane.add(fileSizeField, BorderLayout.CENTER); |
||||
fileSizePane.add(new UILabel(" KB"), BorderLayout.EAST); |
||||
|
||||
double f = TableLayout.FILL; |
||||
double p = TableLayout.PREFERRED; |
||||
Component[][] components = new Component[][]{ |
||||
new Component[]{singleFileCheckBox, null}, |
||||
new Component[]{fileTypeLabel, acceptType}, |
||||
new Component[]{fileSizeLabel, fileSizePane}, |
||||
}; |
||||
double[] rowSize = {p, p, p}; |
||||
double[] columnSize = {p, f}; |
||||
int[][] rowCount = {{1, 1}, {1, 1}, {1, 1}}; |
||||
JPanel panel = TableLayoutHelper.createGapTableLayoutPane(components, rowSize, columnSize, rowCount, 22, 10); |
||||
|
||||
panel.setBorder(BorderFactory.createEmptyBorder(10, 0, 10, 00)); |
||||
contenter.add(panel, BorderLayout.CENTER); |
||||
|
||||
return contenter; |
||||
} |
||||
|
||||
@Override |
||||
protected void populateSubFieldEditorBean(MultiFileEditor e) { |
||||
// 这里存在兼容问题 getAccept可能没在待选项目中
|
||||
acceptType.setSelectedItem(e.getAccept()); |
||||
singleFileCheckBox.setSelected(e.isSingleFile()); |
||||
fileSizeField.setValue(e.getMaxSize()); |
||||
} |
||||
|
||||
@Override |
||||
protected MultiFileEditor updateSubFieldEditorBean() { |
||||
MultiFileEditor ob = new MultiFileEditor(); |
||||
ob.setAccept((String) acceptType.getSelectedItem()); |
||||
ob.setSingleFile(singleFileCheckBox.isSelected()); |
||||
ob.setMaxSize(fileSizeField.getValue()); |
||||
return ob; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,152 @@
|
||||
package com.fr.quickeditor.cellquick; |
||||
|
||||
import com.fr.base.Formula; |
||||
import com.fr.base.Style; |
||||
import com.fr.base.TextFormat; |
||||
import com.fr.design.gui.itextfield.UITextField; |
||||
import com.fr.grid.selection.CellSelection; |
||||
import com.fr.quickeditor.CellQuickEditor; |
||||
import com.fr.report.ReportHelper; |
||||
import com.fr.report.cell.DefaultTemplateCellElement; |
||||
import com.fr.stable.ColumnRow; |
||||
import com.fr.stable.StringUtils; |
||||
|
||||
import javax.swing.*; |
||||
import javax.swing.event.DocumentEvent; |
||||
import javax.swing.event.DocumentListener; |
||||
import java.awt.*; |
||||
import java.awt.event.KeyAdapter; |
||||
import java.awt.event.KeyEvent; |
||||
|
||||
/** |
||||
* 公式快速编辑面板,同文本数字编辑拆分 |
||||
* |
||||
* @author yaoh.wu |
||||
* @version 2017年8月7日10点44分 |
||||
* @since 9.0 |
||||
*/ |
||||
public class CellFormulaQuickEditor extends CellQuickEditor { |
||||
//文本域
|
||||
private UITextField stringTextField; |
||||
//编辑状态
|
||||
private boolean isEditing = false; |
||||
|
||||
//编辑的是公式,要保留公式里的这些属性,不然在公式和字符串转化时,就会丢失这些属性设置。
|
||||
private boolean reserveInResult = false; |
||||
private boolean reserveOnWriteOrAnaly = true; |
||||
|
||||
private DocumentListener documentListener = new DocumentListener() { |
||||
@Override |
||||
public void insertUpdate(DocumentEvent e) { |
||||
changeReportPaneCell(stringTextField.getText().trim()); |
||||
} |
||||
|
||||
@Override |
||||
public void removeUpdate(DocumentEvent e) { |
||||
changeReportPaneCell(stringTextField.getText().trim()); |
||||
} |
||||
|
||||
@Override |
||||
public void changedUpdate(DocumentEvent e) { |
||||
changeReportPaneCell(stringTextField.getText().trim()); |
||||
} |
||||
|
||||
}; |
||||
|
||||
private CellFormulaQuickEditor() { |
||||
super(); |
||||
} |
||||
|
||||
/** |
||||
* 详细信息面板 |
||||
*/ |
||||
@Override |
||||
public JComponent createCenterBody() { |
||||
JPanel content = new JPanel(new BorderLayout()); |
||||
content.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 15)); |
||||
stringTextField = new UITextField(); |
||||
stringTextField.addKeyListener(new KeyAdapter() { |
||||
@Override |
||||
public void keyReleased(KeyEvent e) { |
||||
if (tc != null) { |
||||
tc.getGrid().dispatchEvent(e); |
||||
} |
||||
} |
||||
}); |
||||
content.add(stringTextField, BorderLayout.CENTER); |
||||
return content; |
||||
} |
||||
|
||||
|
||||
private void changeReportPaneCell(String tmpText) { |
||||
isEditing = true; |
||||
//refresh一下,如果单元格内有新添加的控件,此时并不知道
|
||||
CellSelection cs1 = (CellSelection) tc.getSelection(); |
||||
ColumnRow columnRow = ColumnRow.valueOf(cs1.getColumn(), cs1.getRow()); |
||||
columnRowTextField.setText(columnRow.toString()); |
||||
cellElement = tc.getEditingElementCase().getTemplateCellElement(cs1.getColumn(), cs1.getRow()); |
||||
|
||||
if (cellElement == null) { |
||||
CellSelection cs = (CellSelection) tc.getSelection(); |
||||
cellElement = new DefaultTemplateCellElement(cs.getColumn(), cs.getRow()); |
||||
tc.getEditingElementCase().addCellElement(cellElement, false); |
||||
} |
||||
if (tmpText != null && (tmpText.length() > 0 && tmpText.charAt(0) == '=')) { |
||||
Formula textFormula = new Formula(tmpText); |
||||
textFormula.setReserveInResult(reserveInResult); |
||||
textFormula.setReserveOnWriteOrAnaly(reserveOnWriteOrAnaly); |
||||
cellElement.setValue(textFormula); |
||||
} else { |
||||
Style style = cellElement.getStyle(); |
||||
if (style != null && style.getFormat() != null && style.getFormat() == TextFormat.getInstance()) { |
||||
cellElement.setValue(tmpText); |
||||
} else { |
||||
cellElement.setValue(ReportHelper.convertGeneralStringAccordingToExcel(tmpText)); |
||||
} |
||||
} |
||||
fireTargetModified(); |
||||
stringTextField.requestFocus(); |
||||
isEditing = false; |
||||
} |
||||
|
||||
/** |
||||
* 刷新详细内容 |
||||
*/ |
||||
@Override |
||||
protected void refreshDetails() { |
||||
String str; |
||||
if (cellElement == null) { |
||||
str = StringUtils.EMPTY; |
||||
} else { |
||||
Object value = cellElement.getValue(); |
||||
if (value == null) { |
||||
str = StringUtils.EMPTY; |
||||
} else if (value instanceof Formula) { |
||||
Formula formula = (Formula) value; |
||||
str = formula.getContent(); |
||||
reserveInResult = formula.isReserveInResult(); |
||||
reserveOnWriteOrAnaly = formula.isReserveOnWriteOrAnaly(); |
||||
} else { |
||||
str = value.toString(); |
||||
} |
||||
} |
||||
showText(str); |
||||
stringTextField.setEditable(tc.isSelectedOneCell()); |
||||
} |
||||
|
||||
/** |
||||
* 显示文本 |
||||
* |
||||
* @param str 文本 |
||||
*/ |
||||
public void showText(String str) { |
||||
// 正在编辑时不处理
|
||||
if (isEditing) { |
||||
return; |
||||
} |
||||
stringTextField.getDocument().removeDocumentListener(documentListener); |
||||
stringTextField.setText(str); |
||||
stringTextField.getDocument().addDocumentListener(documentListener); |
||||
} |
||||
|
||||
} |
Before Width: | Height: | Size: 222 B After Width: | Height: | Size: 278 B |
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 311 B |
Before Width: | Height: | Size: 453 B After Width: | Height: | Size: 160 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 306 B |
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 232 B |
Before Width: | Height: | Size: 688 B After Width: | Height: | Size: 500 B |
Before Width: | Height: | Size: 675 B After Width: | Height: | Size: 802 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 148 B |
Before Width: | Height: | Size: 221 B After Width: | Height: | Size: 218 B |
Before Width: | Height: | Size: 359 B After Width: | Height: | Size: 356 B |
Before Width: | Height: | Size: 739 B After Width: | Height: | Size: 736 B |
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 482 B |
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 172 B |
Before Width: | Height: | Size: 424 B After Width: | Height: | Size: 421 B |
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 530 B |
Before Width: | Height: | Size: 502 B After Width: | Height: | Size: 389 B |
Before Width: | Height: | Size: 453 B After Width: | Height: | Size: 450 B |
Before Width: | Height: | Size: 975 B After Width: | Height: | Size: 972 B |
Before Width: | Height: | Size: 479 B After Width: | Height: | Size: 541 B |
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 309 B |
Before Width: | Height: | Size: 362 B After Width: | Height: | Size: 151 B |
Before Width: | Height: | Size: 641 B After Width: | Height: | Size: 555 B |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 257 B |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 99 B |
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 388 B After Width: | Height: | Size: 399 B |
Before Width: | Height: | Size: 302 B After Width: | Height: | Size: 511 B |
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 238 B |
Before Width: | Height: | Size: 728 B After Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 306 B After Width: | Height: | Size: 303 B |
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 308 B After Width: | Height: | Size: 254 B |
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 194 B |
Before Width: | Height: | Size: 436 B After Width: | Height: | Size: 433 B |
Before Width: | Height: | Size: 217 B After Width: | Height: | Size: 238 B |
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 293 B |
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 184 B |
Before Width: | Height: | Size: 416 B After Width: | Height: | Size: 413 B |
Before Width: | Height: | Size: 763 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 573 B After Width: | Height: | Size: 721 B |
Before Width: | Height: | Size: 601 B After Width: | Height: | Size: 831 B |
Before Width: | Height: | Size: 406 B After Width: | Height: | Size: 356 B |
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 506 B After Width: | Height: | Size: 503 B |
Before Width: | Height: | Size: 431 B After Width: | Height: | Size: 428 B |
Before Width: | Height: | Size: 226 B After Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 195 B After Width: | Height: | Size: 166 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 198 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 392 B After Width: | Height: | Size: 389 B |
Before Width: | Height: | Size: 246 B After Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 540 B |
Before Width: | Height: | Size: 224 B After Width: | Height: | Size: 285 B |
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 208 B |
Before Width: | Height: | Size: 391 B After Width: | Height: | Size: 474 B |
Before Width: | Height: | Size: 287 B After Width: | Height: | Size: 284 B |