yaoh.wu
7 years ago
5 changed files with 731 additions and 734 deletions
@ -1,553 +0,0 @@ |
|||||||
package com.fr.design.dscolumn; |
|
||||||
|
|
||||||
import com.fr.base.Formula; |
|
||||||
import com.fr.data.TableDataSource; |
|
||||||
import com.fr.design.constants.LayoutConstants; |
|
||||||
import com.fr.design.data.DesignTableDataManager; |
|
||||||
import com.fr.design.dialog.DialogActionAdapter; |
|
||||||
import com.fr.design.formula.CustomVariableResolver; |
|
||||||
import com.fr.design.formula.FormulaFactory; |
|
||||||
import com.fr.design.formula.TinyFormulaPane; |
|
||||||
import com.fr.design.formula.UIFormula; |
|
||||||
import com.fr.design.gui.ibutton.UIButton; |
|
||||||
import com.fr.design.gui.ibutton.UIButtonGroup; |
|
||||||
import com.fr.design.gui.icheckbox.UICheckBox; |
|
||||||
import com.fr.design.gui.icombobox.UIComboBox; |
|
||||||
import com.fr.design.gui.ilable.UILabel; |
|
||||||
import com.fr.design.gui.ispinner.UISpinner; |
|
||||||
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.design.mainframe.cell.CellEditorPane; |
|
||||||
import com.fr.design.utils.gui.GUICoreUtils; |
|
||||||
import com.fr.general.IOUtils; |
|
||||||
import com.fr.general.Inter; |
|
||||||
import com.fr.report.cell.CellElement; |
|
||||||
import com.fr.report.cell.TemplateCellElement; |
|
||||||
import com.fr.report.cell.cellattr.core.group.DSColumn; |
|
||||||
import com.fr.report.cell.cellattr.core.group.SelectCount; |
|
||||||
|
|
||||||
import javax.swing.*; |
|
||||||
import javax.swing.event.ChangeEvent; |
|
||||||
import javax.swing.event.ChangeListener; |
|
||||||
import java.awt.*; |
|
||||||
import java.awt.event.ActionEvent; |
|
||||||
import java.awt.event.ActionListener; |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 单元格元素 数据列 基本设置内容面板 |
|
||||||
* <p> |
|
||||||
* 复制了一些{@link DSColumnAdvancedPane}的内部类,不做复用,价值不大,进行修改后直接使用; |
|
||||||
* </p> |
|
||||||
* |
|
||||||
* @author yaoh.wu |
|
||||||
* @version 2017年7月25日 |
|
||||||
* @since 9.0 |
|
||||||
*/ |
|
||||||
public class DSColumnAdvancedEditorPane extends CellEditorPane { |
|
||||||
|
|
||||||
private static final String INSET_TEXT = " "; |
|
||||||
|
|
||||||
//排列顺序
|
|
||||||
private ResultSetSortConfigPane sortPane; |
|
||||||
//结果集筛选
|
|
||||||
private ResultSetFilterConfigPane filterPane; |
|
||||||
//自定义值显示
|
|
||||||
private CustomValuePane valuePane; |
|
||||||
//横向可扩展性
|
|
||||||
private UICheckBox horizontalExtendableCheckBox; |
|
||||||
//纵向可扩展性
|
|
||||||
private UICheckBox verticalExtendableCheckBox; |
|
||||||
//补充空白数据
|
|
||||||
private UICheckBox useMultiplyNumCheckBox; |
|
||||||
//补充空白数据书目输入框
|
|
||||||
private UISpinner multiNumSpinner; |
|
||||||
|
|
||||||
|
|
||||||
public DSColumnAdvancedEditorPane() { |
|
||||||
this.setLayout(new BorderLayout()); |
|
||||||
this.add(this.createContentPane(), BorderLayout.CENTER); |
|
||||||
this.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 15)); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
@Override |
|
||||||
public String getIconPath() { |
|
||||||
return "Advanced"; |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public String title4PopupWindow() { |
|
||||||
return "Advanced"; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
@Override |
|
||||||
public void update() { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void populate(TemplateCellElement cellElement) { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 创建内容 |
|
||||||
*/ |
|
||||||
private JPanel createContentPane() { |
|
||||||
this.setBorder(BorderFactory.createEmptyBorder(3, 3, 3, 3)); |
|
||||||
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
||||||
//结果集排序
|
|
||||||
|
|
||||||
this.sortPane = new ResultSetSortConfigPane(); |
|
||||||
//结果筛选
|
|
||||||
|
|
||||||
filterPane = new ResultSetFilterConfigPane(); |
|
||||||
//自定义值显示
|
|
||||||
valuePane = new CustomValuePane(); |
|
||||||
//可扩展性
|
|
||||||
JPanel extendableDirectionPane = FRGUIPaneFactory.createNormalFlowInnerContainer_S_Pane(); |
|
||||||
extendableDirectionPane.add(horizontalExtendableCheckBox = new UICheckBox(Inter.getLocText("ExpandD-Horizontal_Extendable"))); |
|
||||||
extendableDirectionPane.add(verticalExtendableCheckBox = new UICheckBox(Inter.getLocText("ExpandD-Vertical_Extendable"))); |
|
||||||
|
|
||||||
|
|
||||||
//补充空白数据
|
|
||||||
JPanel multiNumPane = new JPanel(); |
|
||||||
|
|
||||||
useMultiplyNumCheckBox = new UICheckBox(Inter.getLocText("Column_Multiple")); |
|
||||||
multiNumPane.add(useMultiplyNumCheckBox); |
|
||||||
multiNumPane.add(new UILabel(INSET_TEXT)); |
|
||||||
|
|
||||||
multiNumSpinner = new UISpinner(1, 10000, 1, 1); |
|
||||||
multiNumPane.add(multiNumSpinner); |
|
||||||
|
|
||||||
useMultiplyNumCheckBox.addActionListener(new ActionListener() { |
|
||||||
public void actionPerformed(ActionEvent e) { |
|
||||||
checkButtonEnabled(); |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
double p = TableLayout.PREFERRED, f = TableLayout.FILL; |
|
||||||
double[] rowSize = {p, p, p, p, p, p}; |
|
||||||
double[] columnSize = {f}; |
|
||||||
|
|
||||||
Component[][] components = new Component[][]{ |
|
||||||
{sortPane}, |
|
||||||
{filterPane}, |
|
||||||
{valuePane}, |
|
||||||
{extendableDirectionPane}, |
|
||||||
{multiNumPane} |
|
||||||
}; |
|
||||||
return TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
private void checkButtonEnabled() { |
|
||||||
if (useMultiplyNumCheckBox.isSelected()) { |
|
||||||
multiNumSpinner.setEnabled(true); |
|
||||||
} else { |
|
||||||
multiNumSpinner.setEnabled(false); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 单元格元素>数据集>高级设置>结果排序设置面板 |
|
||||||
* |
|
||||||
* @see com.fr.design.mainframe.cell.settingpane.CellExpandAttrPane |
|
||||||
*/ |
|
||||||
protected static class ResultSetSortConfigPane extends JPanel { |
|
||||||
private UIButtonGroup sort_type_pane; |
|
||||||
private TinyFormulaPane tinyFormulaPane; |
|
||||||
private CardLayout cardLayout; |
|
||||||
private JPanel centerPane; |
|
||||||
|
|
||||||
|
|
||||||
public ResultSetSortConfigPane() { |
|
||||||
this.setLayout(new BorderLayout(0, 0)); |
|
||||||
Icon[] iconArray = { |
|
||||||
IOUtils.readIcon("/com/fr/design/images/expand/none16x16.png"), |
|
||||||
IOUtils.readIcon("/com/fr/design/images/expand/asc.png"), |
|
||||||
IOUtils.readIcon("/com/fr/design/images/expand/des.png") |
|
||||||
}; |
|
||||||
String[] nameArray = {Inter.getLocText("Sort-Original"), Inter.getLocText("Sort-Ascending"), Inter.getLocText("Sort-Descending")}; |
|
||||||
sort_type_pane = new UIButtonGroup(iconArray); |
|
||||||
sort_type_pane.setAllToolTips(nameArray); |
|
||||||
sort_type_pane.setGlobalName(Inter.getLocText("ExpandD-Sort_After_Expand")); |
|
||||||
|
|
||||||
cardLayout = new CardLayout(); |
|
||||||
centerPane = new JPanel(cardLayout); |
|
||||||
tinyFormulaPane = new TinyFormulaPane(); |
|
||||||
centerPane.add(new JPanel(), "none"); |
|
||||||
centerPane.add(tinyFormulaPane, "content"); |
|
||||||
//todo 国际化
|
|
||||||
UILabel sortLabel = new UILabel("排列顺序"); |
|
||||||
sort_type_pane.addChangeListener(new ChangeListener() { |
|
||||||
@Override |
|
||||||
public void stateChanged(ChangeEvent e) { |
|
||||||
boolean noContent = sort_type_pane.getSelectedIndex() == 0; |
|
||||||
cardLayout.show(centerPane, noContent ? "none" : "content"); |
|
||||||
if (noContent) { |
|
||||||
centerPane.setPreferredSize(new Dimension(0, 0)); |
|
||||||
} else { |
|
||||||
centerPane.setPreferredSize(new Dimension(165, 20)); |
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
Component[][] components = new Component[][]{ |
|
||||||
new Component[]{sortLabel, sort_type_pane}, |
|
||||||
new Component[]{null, centerPane} |
|
||||||
}; |
|
||||||
double p = TableLayout.PREFERRED, f = TableLayout.FILL; |
|
||||||
double[] rowSize = {p, p}, columnSize = {p, f}; |
|
||||||
this.add(TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize), BorderLayout.CENTER); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 刷新面板信息 |
|
||||||
* |
|
||||||
* @param dataSource 数据集对象 |
|
||||||
* @param cellElement 单元格 |
|
||||||
*/ |
|
||||||
public void populate(TableDataSource dataSource, TemplateCellElement cellElement) { |
|
||||||
//todo
|
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 保存面板配置信息 |
|
||||||
* |
|
||||||
* @param cellElement 单元格 |
|
||||||
*/ |
|
||||||
public void update(CellElement cellElement) { |
|
||||||
//todo
|
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 单元格元素>数据集>高级设置>结果集筛选设置面板 |
|
||||||
* |
|
||||||
* @see DSColumnAdvancedPane.SelectCountPane |
|
||||||
*/ |
|
||||||
protected static class ResultSetFilterConfigPane extends JPanel { |
|
||||||
private enum FilterType { |
|
||||||
//前N个 后N个 奇数 偶数 自定义 未定义
|
|
||||||
TOP, BOTTOM, ODD, EVEN, SPECIFY, UNDEFINE; |
|
||||||
} |
|
||||||
|
|
||||||
CellElement cellElement; |
|
||||||
private UIComboBox rsComboBox; |
|
||||||
private JPanel setCardPane; |
|
||||||
private JPanel tipCardPane; |
|
||||||
private UITextField serialTextField; |
|
||||||
|
|
||||||
DSColumnAdvancedEditorPane.JFormulaField topFormulaPane; |
|
||||||
DSColumnAdvancedEditorPane.JFormulaField bottomFormulaPane; |
|
||||||
|
|
||||||
public ResultSetFilterConfigPane() { |
|
||||||
double p = TableLayout.PREFERRED, f = TableLayout.FILL; |
|
||||||
|
|
||||||
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
||||||
UILabel filterLabel = new UILabel("结果集筛选"); |
|
||||||
|
|
||||||
//结果集筛选下拉框
|
|
||||||
rsComboBox = new UIComboBox(new String[]{ |
|
||||||
Inter.getLocText("Undefined"), |
|
||||||
Inter.getLocText("BindColumn-Top_N"), |
|
||||||
Inter.getLocText("BindColumn-Bottom_N"), |
|
||||||
Inter.getLocText("Odd"), |
|
||||||
Inter.getLocText("Even"), |
|
||||||
Inter.getLocText("Specify") |
|
||||||
}); |
|
||||||
rsComboBox.addActionListener(new ActionListener() { |
|
||||||
public void actionPerformed(ActionEvent evt) { |
|
||||||
int selectIndex = rsComboBox.getSelectedIndex(); |
|
||||||
CardLayout setCardPaneLayout = (CardLayout) setCardPane.getLayout(); |
|
||||||
CardLayout tipCardPaneLayout = (CardLayout) tipCardPane.getLayout(); |
|
||||||
if (selectIndex == 1) { |
|
||||||
setCardPaneLayout.show(setCardPane, FilterType.TOP.name()); |
|
||||||
tipCardPaneLayout.show(tipCardPane, FilterType.TOP.name()); |
|
||||||
//隐藏tip
|
|
||||||
} else if (selectIndex == 2) { |
|
||||||
setCardPaneLayout.show(setCardPane, FilterType.BOTTOM.name()); |
|
||||||
tipCardPaneLayout.show(tipCardPane, FilterType.BOTTOM.name()); |
|
||||||
//隐藏tip
|
|
||||||
} else if (selectIndex == 3) { |
|
||||||
setCardPaneLayout.show(setCardPane, FilterType.ODD.name()); |
|
||||||
tipCardPaneLayout.show(tipCardPane, FilterType.ODD.name()); |
|
||||||
//隐藏set
|
|
||||||
} else if (selectIndex == 4) { |
|
||||||
setCardPaneLayout.show(setCardPane, FilterType.EVEN.name()); |
|
||||||
tipCardPaneLayout.show(tipCardPane, FilterType.EVEN.name()); |
|
||||||
//隐藏set
|
|
||||||
} else if (selectIndex == 5) { |
|
||||||
setCardPaneLayout.show(setCardPane, FilterType.SPECIFY.name()); |
|
||||||
tipCardPaneLayout.show(tipCardPane, FilterType.SPECIFY.name()); |
|
||||||
} else { |
|
||||||
setCardPaneLayout.show(setCardPane, FilterType.UNDEFINE.name()); |
|
||||||
tipCardPaneLayout.show(tipCardPane, FilterType.UNDEFINE.name()); |
|
||||||
//隐藏set和tip
|
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
//配置展示CardLayout
|
|
||||||
setCardPane = FRGUIPaneFactory.createCardLayout_S_Pane(); |
|
||||||
//提示信息展示CardLayout
|
|
||||||
tipCardPane = FRGUIPaneFactory.createCardLayout_S_Pane(); |
|
||||||
|
|
||||||
//前N个
|
|
||||||
topFormulaPane = new DSColumnAdvancedEditorPane.JFormulaField("="); |
|
||||||
setCardPane.add(topFormulaPane, FilterType.TOP.name()); |
|
||||||
tipCardPane.add(new JPanel(), FilterType.TOP.name()); |
|
||||||
|
|
||||||
//后N个
|
|
||||||
bottomFormulaPane = new DSColumnAdvancedEditorPane.JFormulaField("="); |
|
||||||
setCardPane.add(bottomFormulaPane, FilterType.BOTTOM.name()); |
|
||||||
tipCardPane.add(new JPanel(), FilterType.BOTTOM.name()); |
|
||||||
|
|
||||||
//自定义值下方没有提示信息,也没有输入框
|
|
||||||
JPanel undefinedPane = new JPanel(); |
|
||||||
setCardPane.add(new JPanel(), FilterType.UNDEFINE.name()); |
|
||||||
tipCardPane.add(new JPanel(), FilterType.UNDEFINE.name()); |
|
||||||
|
|
||||||
//奇数 UILabel 占一行作为提示信息
|
|
||||||
setCardPane.add(new JPanel(), FilterType.ODD.name()); |
|
||||||
tipCardPane.add(new UILabel(Inter.getLocText("BindColumn-Result_Serial_Number_Start_From_1") |
|
||||||
+ "," + Inter.getLocText("BindColumn-Odd_Selected_(1,3,5...)")), FilterType.ODD.name()); |
|
||||||
|
|
||||||
|
|
||||||
//偶数 UILabel 占一行作为提示信息
|
|
||||||
setCardPane.add(new JPanel(), FilterType.EVEN.name()); |
|
||||||
tipCardPane.add(new UILabel(Inter.getLocText("BindColumn-Result_Serial_Number_Start_From_1") |
|
||||||
+ "," + Inter.getLocText("BindColumn-Even_Selected_(2,4,6...)")), FilterType.ODD.name()); |
|
||||||
|
|
||||||
//输入框占用右半边,提示信息占一行
|
|
||||||
serialTextField = new UITextField(16); |
|
||||||
setCardPane.add(serialTextField, FilterType.SPECIFY.name()); |
|
||||||
tipCardPane.add(new UILabel( |
|
||||||
Inter.getLocText(new String[]{ |
|
||||||
"Format", "BindColumn-Result_Serial_Number_Start_From_1", "Inner_Parameter", "Group_Count"}, |
|
||||||
new String[]{": 1,2-3,5,8 ", ",", "$__count__"})), FilterType.SPECIFY.name()); |
|
||||||
|
|
||||||
this.add(TableLayoutHelper.createTableLayoutPane(new Component[][]{ |
|
||||||
{filterLabel, rsComboBox}, |
|
||||||
{null, setCardPane}, |
|
||||||
{tipCardPane, null} |
|
||||||
}, new double[]{p, p, p}, new double[]{p, f}), BorderLayout.CENTER); |
|
||||||
} |
|
||||||
|
|
||||||
public void populate(CellElement cellElement) { |
|
||||||
if (cellElement == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
this.cellElement = cellElement; |
|
||||||
|
|
||||||
Object value = cellElement.getValue(); |
|
||||||
if (value == null || !(value instanceof DSColumn)) { |
|
||||||
return; |
|
||||||
} |
|
||||||
DSColumn dSColumn = (DSColumn) (cellElement.getValue()); |
|
||||||
SelectCount selectCount = dSColumn.getSelectCount(); |
|
||||||
this.topFormulaPane.populateElement(cellElement); |
|
||||||
this.bottomFormulaPane.populateElement(cellElement); |
|
||||||
if (selectCount != null) { |
|
||||||
int selectCountType = selectCount.getType(); |
|
||||||
this.rsComboBox.setSelectedIndex(selectCountType); |
|
||||||
if (selectCountType == SelectCount.TOP) { |
|
||||||
this.topFormulaPane.populate(selectCount.getFormulaCount()); |
|
||||||
} else if (selectCountType == SelectCount.BOTTOM) { |
|
||||||
this.bottomFormulaPane.populate(selectCount.getFormulaCount()); |
|
||||||
} else if (selectCountType == SelectCount.SPECIFY) { |
|
||||||
this.serialTextField.setText(selectCount.getSerial()); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public void update(CellElement cellElement) { |
|
||||||
if (cellElement == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
Object value = cellElement.getValue(); |
|
||||||
if (value == null || !(value instanceof DSColumn)) { |
|
||||||
return; |
|
||||||
} |
|
||||||
DSColumn dSColumn = (DSColumn) (cellElement.getValue()); |
|
||||||
|
|
||||||
//alex:SelectCount
|
|
||||||
int selectCountSelectIndex = this.rsComboBox.getSelectedIndex(); |
|
||||||
if (selectCountSelectIndex == 0) { |
|
||||||
dSColumn.setSelectCount(null); |
|
||||||
} else { |
|
||||||
SelectCount selectCount = new SelectCount(); |
|
||||||
dSColumn.setSelectCount(selectCount); |
|
||||||
selectCount.setType(selectCountSelectIndex); |
|
||||||
if (selectCountSelectIndex == SelectCount.TOP) { |
|
||||||
selectCount.setFormulaCount(this.topFormulaPane.getFormulaText()); |
|
||||||
} else if (selectCountSelectIndex == SelectCount.BOTTOM) { |
|
||||||
selectCount.setFormulaCount(this.bottomFormulaPane.getFormulaText()); |
|
||||||
} else if (selectCountSelectIndex == SelectCount.SPECIFY) { |
|
||||||
selectCount.setSerial(this.serialTextField.getText()); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
private JFormattedTextField getTextField(JSpinner spinner) { |
|
||||||
JComponent editor = spinner.getEditor(); |
|
||||||
if (editor instanceof JSpinner.DefaultEditor) { |
|
||||||
return ((JSpinner.DefaultEditor) editor).getTextField(); |
|
||||||
} else { |
|
||||||
System.err.println("Unexpected editor type: " |
|
||||||
+ spinner.getEditor().getClass() |
|
||||||
+ " isn't a descendant of DefaultEditor"); |
|
||||||
return null; |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 单元格元素>数据集>高级设置>公式输入框 |
|
||||||
* |
|
||||||
* @see DSColumnAdvancedPane.JFormulaField |
|
||||||
*/ |
|
||||||
private static class JFormulaField extends JPanel { |
|
||||||
private CellElement cellElement; |
|
||||||
private UITextField formulaTextField; |
|
||||||
private String defaultValue; |
|
||||||
|
|
||||||
public JFormulaField(String defaultValue) { |
|
||||||
double p = TableLayout.PREFERRED; |
|
||||||
double f = TableLayout.FILL; |
|
||||||
double[] columnSize = {f}; |
|
||||||
double[] rowSize = {p}; |
|
||||||
this.defaultValue = defaultValue; |
|
||||||
formulaTextField = new UITextField(); |
|
||||||
formulaTextField.setText(defaultValue); |
|
||||||
UIButton formulaButton = new UIButton(IOUtils.readIcon("/com/fr/design/images/m_insert/formula.png")); |
|
||||||
formulaButton.setToolTipText(Inter.getLocText("Formula") + "..."); |
|
||||||
formulaButton.setPreferredSize(new Dimension(24, formulaTextField.getPreferredSize().height)); |
|
||||||
formulaButton.addActionListener(formulaButtonActionListener); |
|
||||||
Component[] buttonComponent = new Component[]{ |
|
||||||
formulaButton |
|
||||||
}; |
|
||||||
JPanel pane = new JPanel(new BorderLayout(0, 0)); |
|
||||||
pane.add(formulaTextField, BorderLayout.CENTER); |
|
||||||
pane.add(GUICoreUtils.createFlowPane(buttonComponent, FlowLayout.LEFT, LayoutConstants.HGAP_LARGE), BorderLayout.EAST); |
|
||||||
Component[][] components = new Component[][]{ |
|
||||||
new Component[]{pane} |
|
||||||
}; |
|
||||||
JPanel panel = TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize); |
|
||||||
this.setLayout(new BorderLayout()); |
|
||||||
this.add(panel, BorderLayout.CENTER); |
|
||||||
} |
|
||||||
|
|
||||||
public void populate(String formulaContent) { |
|
||||||
this.formulaTextField.setText(formulaContent); |
|
||||||
} |
|
||||||
|
|
||||||
public void populateElement(CellElement cellElement) { |
|
||||||
this.cellElement = cellElement; |
|
||||||
} |
|
||||||
|
|
||||||
public String getFormulaText() { |
|
||||||
return this.formulaTextField.getText(); |
|
||||||
} |
|
||||||
|
|
||||||
private ActionListener formulaButtonActionListener = new ActionListener() { |
|
||||||
|
|
||||||
public void actionPerformed(ActionEvent evt) { |
|
||||||
Formula valueFormula = new Formula(); |
|
||||||
String text = formulaTextField.getText(); |
|
||||||
if (text == null || text.length() <= 0) { |
|
||||||
valueFormula.setContent(defaultValue); |
|
||||||
} else { |
|
||||||
valueFormula.setContent(text); |
|
||||||
} |
|
||||||
|
|
||||||
final UIFormula formulaPane = FormulaFactory.createFormulaPaneWhenReserveFormula(); |
|
||||||
|
|
||||||
if (cellElement == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
Object value = cellElement.getValue(); |
|
||||||
if (value == null || !(value instanceof DSColumn)) { |
|
||||||
return; |
|
||||||
} |
|
||||||
DSColumn dsColumn = (DSColumn) value; |
|
||||||
|
|
||||||
String[] displayNames = DesignTableDataManager.getSelectedColumnNames(DesignTableDataManager.getEditingTableDataSource(), dsColumn.getDSName()); |
|
||||||
|
|
||||||
formulaPane.populate(valueFormula, new CustomVariableResolver(displayNames, true)); |
|
||||||
formulaPane.showLargeWindow(SwingUtilities.getWindowAncestor(DSColumnAdvancedEditorPane.JFormulaField.this), new DialogActionAdapter() { |
|
||||||
@Override |
|
||||||
public void doOk() { |
|
||||||
Formula valueFormula = formulaPane.update(); |
|
||||||
if (valueFormula.getContent().length() <= 1) { |
|
||||||
formulaTextField.setText(defaultValue); |
|
||||||
} else { |
|
||||||
formulaTextField.setText(valueFormula.getContent().substring(1)); |
|
||||||
} |
|
||||||
} |
|
||||||
}).setVisible(true); |
|
||||||
} |
|
||||||
}; |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 单元格元素>数据集>高级设置>自定义值显示设置面板 |
|
||||||
* |
|
||||||
* @see DSColumnAdvancedPane.ValuePane |
|
||||||
*/ |
|
||||||
private static class CustomValuePane extends JPanel { |
|
||||||
private JFormulaField formulaField; |
|
||||||
|
|
||||||
public CustomValuePane() { |
|
||||||
double p = TableLayout.PREFERRED, f = TableLayout.FILL; |
|
||||||
this.setLayout(FRGUIPaneFactory.createBoxFlowLayout()); |
|
||||||
UILabel customValueLabel = new UILabel("显示值"); |
|
||||||
formulaField = new JFormulaField("$$$"); |
|
||||||
formulaField.setPreferredSize(new Dimension(159, 20)); |
|
||||||
this.add(TableLayoutHelper.createTableLayoutPane(new Component[][]{ |
|
||||||
{customValueLabel, formulaField}, |
|
||||||
}, new double[]{p}, new double[]{p, f}), BorderLayout.CENTER); |
|
||||||
} |
|
||||||
|
|
||||||
public void populate(CellElement cellElement) { |
|
||||||
if (cellElement == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
|
|
||||||
Object value = cellElement.getValue(); |
|
||||||
if (value == null || !(value instanceof DSColumn)) { |
|
||||||
return; |
|
||||||
} |
|
||||||
DSColumn dSColumn = (DSColumn) value; |
|
||||||
|
|
||||||
//formula
|
|
||||||
String valueFormula = dSColumn.getResult(); |
|
||||||
if (valueFormula == null) { |
|
||||||
valueFormula = "$$$"; |
|
||||||
} |
|
||||||
formulaField.populateElement(cellElement); |
|
||||||
formulaField.populate(valueFormula); |
|
||||||
} |
|
||||||
|
|
||||||
public void update(CellElement cellElement) { |
|
||||||
if (cellElement == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
Object value = cellElement.getValue(); |
|
||||||
if (value == null || !(value instanceof DSColumn)) { |
|
||||||
return; |
|
||||||
} |
|
||||||
DSColumn dSColumn = (DSColumn) (cellElement.getValue()); |
|
||||||
//formula
|
|
||||||
dSColumn.setResult(this.formulaField.getFormulaText()); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
@ -1,85 +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); |
|
||||||
this.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 15)); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
@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); |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue