richie
7 years ago
8 changed files with 1682 additions and 1678 deletions
File diff suppressed because it is too large
Load Diff
@ -1,178 +1,176 @@
|
||||
package com.fr.design.data.tabledata.tabledatapane; |
||||
|
||||
import java.awt.BorderLayout; |
||||
import java.awt.Component; |
||||
import java.util.Date; |
||||
import java.util.HashMap; |
||||
|
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import javax.swing.JPanel; |
||||
|
||||
import com.fr.base.Formula; |
||||
import com.fr.general.NameObject; |
||||
import com.fr.base.StoreProcedureParameter; |
||||
import com.fr.data.impl.storeproc.StoreProcedureConstants; |
||||
import com.fr.design.gui.icombobox.UIComboBox; |
||||
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.dialog.BasicPane; |
||||
import com.fr.design.editor.ValueEditorPane; |
||||
import com.fr.design.editor.ValueEditorPaneFactory; |
||||
import com.fr.design.editor.editor.CursorEditor; |
||||
import com.fr.general.Inter; |
||||
|
||||
|
||||
public class StoreProcedureParameterPane extends BasicPane { |
||||
|
||||
private static String[] schemaName = new String[]{ |
||||
"IN", "OUT", "INOUT" |
||||
}; |
||||
|
||||
private static NameObject[] nameAndValue = new NameObject[]{ |
||||
new NameObject(Inter.getLocText("Cursor"), StoreProcedureConstants.CURSOR), |
||||
new NameObject(Inter.getLocText("Parameter-String"), StoreProcedureConstants.VARCHAR), |
||||
new NameObject(Inter.getLocText("Integer"), StoreProcedureConstants.INTEGER), |
||||
new NameObject(Inter.getLocText("Double"), StoreProcedureConstants.DECIMAL), |
||||
new NameObject(Inter.getLocText("Date"), StoreProcedureConstants.DATE), |
||||
new NameObject(Inter.getLocText("Parameter-Boolean"), StoreProcedureConstants.BOOLEAN), |
||||
new NameObject(Inter.getLocText("Formula"), StoreProcedureConstants.FORMULA), |
||||
new NameObject("IN",StoreProcedureConstants.IN), |
||||
new NameObject("OUT",StoreProcedureConstants.OUT), |
||||
new NameObject("INOUT",StoreProcedureConstants.INOUT) |
||||
}; |
||||
|
||||
private static HashMap<String, Integer> infoMap = new HashMap<String, Integer>(); |
||||
static { |
||||
for(int i = 0; i < nameAndValue.length; i ++){ |
||||
infoMap.put(nameAndValue[i].getName(), (Integer) nameAndValue[i].getObject()); |
||||
} |
||||
} |
||||
|
||||
private UITextField nameField; |
||||
private UIComboBox schemaCombo; |
||||
private ValueEditorPane valueEditPane; |
||||
private JPanel valuePane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
|
||||
public StoreProcedureParameterPane(){ |
||||
valueEditPane = ValueEditorPaneFactory.createStoreProcedValueEditorPane(); |
||||
this.initComponents(); |
||||
} |
||||
|
||||
public void checkValid() throws Exception{ |
||||
StoreProcedureParameter spp=this.update(); |
||||
if(spp.getSchema()!= StoreProcedureConstants.OUT && spp.getType() == StoreProcedureConstants.CURSOR){ |
||||
throw new Exception(Inter.getLocText("IN_and_INOUT_type_not_as_cursor")); |
||||
} |
||||
} |
||||
|
||||
private void initComponents(){ |
||||
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
||||
|
||||
schemaCombo = new UIComboBox(); |
||||
initUIComboBox(schemaCombo, schemaName); |
||||
JPanel namePane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
namePane.add(new UILabel(" " + Inter.getLocText("Name") + ":"), BorderLayout.WEST); |
||||
nameField = new UITextField(10); |
||||
namePane.add(nameField, BorderLayout.CENTER); |
||||
namePane.add(new UILabel(" "), BorderLayout.EAST); |
||||
valuePane.add(new UILabel(" " + Inter.getLocText("CellWrite-InsertRow_DEFAULT") + ":"), BorderLayout.WEST); |
||||
valuePane.add(valueEditPane, BorderLayout.CENTER); |
||||
valuePane.add(new UILabel(" "), BorderLayout.EAST); |
||||
Component[][] components = {{null}, |
||||
{namePane}, |
||||
{addPane("Model", 1, schemaCombo)}, |
||||
{valuePane}, |
||||
{null} |
||||
}; |
||||
double p = TableLayout.PREFERRED; |
||||
double[] rowSize = {p, p, p, p, p, p}; |
||||
double[] columnSize = {p}; |
||||
JPanel centerPane = TableLayoutHelper.createGapTableLayoutPane( |
||||
components, rowSize, columnSize, 20, 10); |
||||
this.add(centerPane, BorderLayout.CENTER); |
||||
|
||||
} |
||||
|
||||
private JPanel addPane(String s, int i, UIComboBox combo){ |
||||
JPanel pane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
pane.add(new UILabel(" " + Inter.getLocText(s) + ":"), BorderLayout.WEST); |
||||
combo.setSelectedIndex(i); |
||||
pane.add(combo, BorderLayout.CENTER); |
||||
pane.add(new UILabel(" "), BorderLayout.EAST); |
||||
|
||||
return pane; |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return Inter.getLocText("Parameter"); |
||||
} |
||||
|
||||
public void populate(StoreProcedureParameter stpParameter) { |
||||
if(stpParameter == null) |
||||
return; |
||||
this.nameField.setText(stpParameter.getName()); |
||||
String schema = getInfo4Name(stpParameter.getSchema()); |
||||
this.schemaCombo.setSelectedItem(schema); |
||||
this.valueEditPane.populate(stpParameter.getValue()); |
||||
|
||||
} |
||||
|
||||
public StoreProcedureParameter update(){ |
||||
StoreProcedureParameter p = new StoreProcedureParameter(); |
||||
p.setName(nameField.getText()); |
||||
Object value = valueEditPane.update(); |
||||
String type = ""; |
||||
if(value instanceof CursorEditor) |
||||
type=Inter.getLocText("Cursor"); |
||||
else if(value instanceof String ){ |
||||
if(((String) value).length() > 0 && ((String) value).charAt(0) == '=') |
||||
type = Inter.getLocText("Formula"); |
||||
else |
||||
type = Inter.getLocText("Parameter-String"); |
||||
}else if(value instanceof Integer) |
||||
type = Inter.getLocText("Integer"); |
||||
else if(value instanceof Double) |
||||
type = Inter.getLocText("Double"); |
||||
else if(value instanceof Date) |
||||
type = Inter.getLocText("Date"); |
||||
else if(value instanceof Boolean) |
||||
type = Inter.getLocText("Parameter-Boolean"); |
||||
else if(value instanceof Formula) |
||||
type = Inter.getLocText("Formula"); |
||||
else |
||||
type = Inter.getLocText("Parameter-String"); |
||||
int typeVl = getInfo4Value(type); |
||||
p.setType(typeVl); |
||||
String schema = (String)schemaCombo.getSelectedItem(); |
||||
int schemaVl = getInfo4Value(schema); |
||||
p.setSchema(schemaVl); |
||||
p.setValue(value); |
||||
|
||||
return p; |
||||
} |
||||
|
||||
private void initUIComboBox(UIComboBox combo, String[] p){ |
||||
for(int i = 0; i < p.length; i ++) |
||||
combo.addItem(p[i]); |
||||
} |
||||
|
||||
public static int getInfo4Value(String name){ |
||||
return infoMap.get(name); |
||||
} |
||||
|
||||
public static String getInfo4Name(int value){ |
||||
java.util.Set<String> set = infoMap.keySet(); |
||||
for(String s : set){ |
||||
if(infoMap.get(s) == value) |
||||
return s; |
||||
} |
||||
return null; |
||||
} |
||||
/** |
||||
* |
||||
*/ |
||||
private static final long serialVersionUID = 1L; |
||||
package com.fr.design.data.tabledata.tabledatapane; |
||||
|
||||
import com.fr.base.BaseFormula; |
||||
import com.fr.base.StoreProcedureParameter; |
||||
import com.fr.data.impl.storeproc.StoreProcedureConstants; |
||||
import com.fr.design.dialog.BasicPane; |
||||
import com.fr.design.editor.ValueEditorPane; |
||||
import com.fr.design.editor.ValueEditorPaneFactory; |
||||
import com.fr.design.editor.editor.CursorEditor; |
||||
import com.fr.design.gui.icombobox.UIComboBox; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
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.general.Inter; |
||||
import com.fr.general.NameObject; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.util.Date; |
||||
import java.util.HashMap; |
||||
|
||||
|
||||
public class StoreProcedureParameterPane extends BasicPane { |
||||
|
||||
private static String[] schemaName = new String[]{ |
||||
"IN", "OUT", "INOUT" |
||||
}; |
||||
|
||||
private static NameObject[] nameAndValue = new NameObject[]{ |
||||
new NameObject(Inter.getLocText("Cursor"), StoreProcedureConstants.CURSOR), |
||||
new NameObject(Inter.getLocText("Parameter-String"), StoreProcedureConstants.VARCHAR), |
||||
new NameObject(Inter.getLocText("Integer"), StoreProcedureConstants.INTEGER), |
||||
new NameObject(Inter.getLocText("Double"), StoreProcedureConstants.DECIMAL), |
||||
new NameObject(Inter.getLocText("Date"), StoreProcedureConstants.DATE), |
||||
new NameObject(Inter.getLocText("Parameter-Boolean"), StoreProcedureConstants.BOOLEAN), |
||||
new NameObject(Inter.getLocText("Formula"), StoreProcedureConstants.FORMULA), |
||||
new NameObject("IN",StoreProcedureConstants.IN), |
||||
new NameObject("OUT",StoreProcedureConstants.OUT), |
||||
new NameObject("INOUT",StoreProcedureConstants.INOUT) |
||||
}; |
||||
|
||||
private static HashMap<String, Integer> infoMap = new HashMap<String, Integer>(); |
||||
static { |
||||
for(int i = 0; i < nameAndValue.length; i ++){ |
||||
infoMap.put(nameAndValue[i].getName(), (Integer) nameAndValue[i].getObject()); |
||||
} |
||||
} |
||||
|
||||
private UITextField nameField; |
||||
private UIComboBox schemaCombo; |
||||
private ValueEditorPane valueEditPane; |
||||
private JPanel valuePane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
|
||||
public StoreProcedureParameterPane(){ |
||||
valueEditPane = ValueEditorPaneFactory.createStoreProcedValueEditorPane(); |
||||
this.initComponents(); |
||||
} |
||||
|
||||
public void checkValid() throws Exception{ |
||||
StoreProcedureParameter spp=this.update(); |
||||
if(spp.getSchema()!= StoreProcedureConstants.OUT && spp.getType() == StoreProcedureConstants.CURSOR){ |
||||
throw new Exception(Inter.getLocText("IN_and_INOUT_type_not_as_cursor")); |
||||
} |
||||
} |
||||
|
||||
private void initComponents(){ |
||||
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
||||
|
||||
schemaCombo = new UIComboBox(); |
||||
initUIComboBox(schemaCombo, schemaName); |
||||
JPanel namePane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
namePane.add(new UILabel(" " + Inter.getLocText("Name") + ":"), BorderLayout.WEST); |
||||
nameField = new UITextField(10); |
||||
namePane.add(nameField, BorderLayout.CENTER); |
||||
namePane.add(new UILabel(" "), BorderLayout.EAST); |
||||
valuePane.add(new UILabel(" " + Inter.getLocText("CellWrite-InsertRow_DEFAULT") + ":"), BorderLayout.WEST); |
||||
valuePane.add(valueEditPane, BorderLayout.CENTER); |
||||
valuePane.add(new UILabel(" "), BorderLayout.EAST); |
||||
Component[][] components = {{null}, |
||||
{namePane}, |
||||
{addPane("Model", 1, schemaCombo)}, |
||||
{valuePane}, |
||||
{null} |
||||
}; |
||||
double p = TableLayout.PREFERRED; |
||||
double[] rowSize = {p, p, p, p, p, p}; |
||||
double[] columnSize = {p}; |
||||
JPanel centerPane = TableLayoutHelper.createGapTableLayoutPane( |
||||
components, rowSize, columnSize, 20, 10); |
||||
this.add(centerPane, BorderLayout.CENTER); |
||||
|
||||
} |
||||
|
||||
private JPanel addPane(String s, int i, UIComboBox combo){ |
||||
JPanel pane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
pane.add(new UILabel(" " + Inter.getLocText(s) + ":"), BorderLayout.WEST); |
||||
combo.setSelectedIndex(i); |
||||
pane.add(combo, BorderLayout.CENTER); |
||||
pane.add(new UILabel(" "), BorderLayout.EAST); |
||||
|
||||
return pane; |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return Inter.getLocText("Parameter"); |
||||
} |
||||
|
||||
public void populate(StoreProcedureParameter stpParameter) { |
||||
if(stpParameter == null) |
||||
return; |
||||
this.nameField.setText(stpParameter.getName()); |
||||
String schema = getInfo4Name(stpParameter.getSchema()); |
||||
this.schemaCombo.setSelectedItem(schema); |
||||
this.valueEditPane.populate(stpParameter.getValue()); |
||||
|
||||
} |
||||
|
||||
public StoreProcedureParameter update(){ |
||||
StoreProcedureParameter p = new StoreProcedureParameter(); |
||||
p.setName(nameField.getText()); |
||||
Object value = valueEditPane.update(); |
||||
String type = ""; |
||||
if(value instanceof CursorEditor) |
||||
type=Inter.getLocText("Cursor"); |
||||
else if(value instanceof String ){ |
||||
if(((String) value).length() > 0 && ((String) value).charAt(0) == '=') |
||||
type = Inter.getLocText("Formula"); |
||||
else |
||||
type = Inter.getLocText("Parameter-String"); |
||||
}else if(value instanceof Integer) |
||||
type = Inter.getLocText("Integer"); |
||||
else if(value instanceof Double) |
||||
type = Inter.getLocText("Double"); |
||||
else if(value instanceof Date) |
||||
type = Inter.getLocText("Date"); |
||||
else if(value instanceof Boolean) |
||||
type = Inter.getLocText("Parameter-Boolean"); |
||||
else if(value instanceof BaseFormula) |
||||
type = Inter.getLocText("Formula"); |
||||
else |
||||
type = Inter.getLocText("Parameter-String"); |
||||
int typeVl = getInfo4Value(type); |
||||
p.setType(typeVl); |
||||
String schema = (String)schemaCombo.getSelectedItem(); |
||||
int schemaVl = getInfo4Value(schema); |
||||
p.setSchema(schemaVl); |
||||
p.setValue(value); |
||||
|
||||
return p; |
||||
} |
||||
|
||||
private void initUIComboBox(UIComboBox combo, String[] p){ |
||||
for(int i = 0; i < p.length; i ++) |
||||
combo.addItem(p[i]); |
||||
} |
||||
|
||||
public static int getInfo4Value(String name){ |
||||
return infoMap.get(name); |
||||
} |
||||
|
||||
public static String getInfo4Name(int value){ |
||||
java.util.Set<String> set = infoMap.keySet(); |
||||
for(String s : set){ |
||||
if(infoMap.get(s) == value) |
||||
return s; |
||||
} |
||||
return null; |
||||
} |
||||
/** |
||||
* |
||||
*/ |
||||
private static final long serialVersionUID = 1L; |
||||
} |
@ -1,229 +1,233 @@
|
||||
package com.fr.design.gui.frpane; |
||||
|
||||
import com.fr.base.Formula; |
||||
import com.fr.design.data.BasicTableDataTreePane; |
||||
import com.fr.design.data.DesignTableDataManager; |
||||
import com.fr.design.data.datapane.EditOrNewLabel; |
||||
import com.fr.design.data.datapane.TableDataTreePane; |
||||
import com.fr.design.data.datapane.TreeTableDataComboBox; |
||||
import com.fr.design.data.datapane.preview.PreviewLabel; |
||||
import com.fr.data.impl.NameTableData; |
||||
import com.fr.data.impl.RecursionTableData; |
||||
import com.fr.data.impl.TableDataDictionary; |
||||
import com.fr.design.data.tabledata.wrapper.AbstractTableDataWrapper; |
||||
import com.fr.design.data.tabledata.wrapper.TableDataWrapper; |
||||
import com.fr.design.data.tabledata.wrapper.TemplateTableDataWrapper; |
||||
import com.fr.design.DesignModelAdapter; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.layout.TableLayout; |
||||
import com.fr.design.layout.TableLayoutHelper; |
||||
import com.fr.design.dialog.BasicPane; |
||||
import com.fr.design.editor.ValueEditorPane; |
||||
import com.fr.design.editor.ValueEditorPaneFactory; |
||||
import com.fr.design.editor.editor.*; |
||||
import com.fr.general.Inter; |
||||
import com.fr.stable.StringUtils; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.awt.event.ItemEvent; |
||||
import java.awt.event.ItemListener; |
||||
import java.util.List; |
||||
|
||||
public class JTreeAutoBuildPane extends BasicPane implements PreviewLabel.Previewable, EditOrNewLabel.Editable { |
||||
private TreeTableDataComboBox treeTableDataComboBox; |
||||
private ValueEditorPane valuePane; |
||||
private ValueEditorPane textPane; |
||||
private JPanel centerPane; |
||||
private JPanel selectTreeDataPanel; |
||||
|
||||
public JTreeAutoBuildPane() { |
||||
this.initComponent(); |
||||
} |
||||
|
||||
/** |
||||
* 初始化 |
||||
*/ |
||||
public void initComponent() { |
||||
this.setLayout(FRGUIPaneFactory.createM_BorderLayout()); |
||||
UILabel selectTreeDataLabel = new UILabel(Inter.getLocText("Select_A_Tree_DataSource_To_Build") + ": "); |
||||
treeTableDataComboBox = new TreeTableDataComboBox(DesignTableDataManager.getEditingTableDataSource()); |
||||
treeTableDataComboBox.setPreferredSize(new Dimension(180, 20)); |
||||
selectTreeDataPanel = FRGUIPaneFactory.createBoxFlowInnerContainer_S_Pane(); |
||||
selectTreeDataPanel.add(selectTreeDataLabel); |
||||
treeTableDataComboBox.addItemListener(new ItemListener() { |
||||
public void itemStateChanged(ItemEvent e) { |
||||
tdChange(); |
||||
} |
||||
}); |
||||
selectTreeDataPanel.add(treeTableDataComboBox); |
||||
treeTableDataComboBox.setPreferredSize(new Dimension(200, 25)); |
||||
treeTableDataComboBox.setSelectedIndex(-1); |
||||
PreviewLabel pl = new PreviewLabel(this); |
||||
pl.setPreferredSize(new Dimension(25, 25)); |
||||
EditOrNewLabel enl = new EditOrNewLabel(this, this); |
||||
enl.setPreferredSize(new Dimension(25, 25)); |
||||
selectTreeDataPanel.add(pl); |
||||
selectTreeDataPanel.add(enl); |
||||
|
||||
this.add(selectTreeDataPanel, BorderLayout.NORTH); |
||||
|
||||
valuePane = ValueEditorPaneFactory.createValueEditorPane(new Editor[]{new ColumnNameEditor(), new ColumnIndexEditor()}); |
||||
FormulaEditor formulaEditor = new FormulaEditor(Inter.getLocText("Parameter-Formula")); |
||||
formulaEditor.setEnabled(true); |
||||
textPane = ValueEditorPaneFactory.createValueEditorPane(new Editor[]{new ColumnNameEditor(), new ColumnIndexEditor(), formulaEditor}); |
||||
Component[][] coms = { |
||||
{new UILabel(Inter.getLocText("Actual_Value") + ":"), |
||||
valuePane}, |
||||
{new UILabel(Inter.getLocText("Display_Value") + ":"), |
||||
textPane}}; |
||||
|
||||
double p = TableLayout.PREFERRED; |
||||
|
||||
double[] rowSize = {p, p, p}; |
||||
double[] columnSize = {p, p}; |
||||
centerPane = TableLayoutHelper.createTableLayoutPane(coms, rowSize, |
||||
columnSize); |
||||
|
||||
this.add(centerPane, BorderLayout.CENTER); |
||||
tdChange(); |
||||
} |
||||
|
||||
private void tdChange() { |
||||
TableDataWrapper tableDataWrappe = this.treeTableDataComboBox.getSelectedItem(); |
||||
if (tableDataWrappe == null) { |
||||
return; |
||||
} |
||||
try { |
||||
List<String> namelist = tableDataWrappe.calculateColumnNameList(); |
||||
String[] columnNames = new String[namelist.size()]; |
||||
namelist.toArray(columnNames); |
||||
valuePane.setEditors(new Editor[]{new ColumnNameEditor(columnNames), new ColumnIndexEditor(columnNames.length)}, columnNames[0]); |
||||
FormulaEditor formulaEditor = new FormulaEditor(Inter.getLocText("Parameter-Formula")); |
||||
formulaEditor.setEnabled(true); |
||||
textPane.setEditors(new Editor[]{new ColumnNameEditor(columnNames), new ColumnIndexEditor(columnNames.length), formulaEditor}, columnNames[0]); |
||||
} catch (Exception e) { |
||||
valuePane.setEditors(new Editor[]{new OldColumnIndexEditor(100, Inter.getLocText("ColumnName"))}, 1); |
||||
FormulaEditor formulaEditor = new FormulaEditor(Inter.getLocText("Parameter-Formula")); |
||||
formulaEditor.setEnabled(true); |
||||
textPane.setEditors(new Editor[]{new OldColumnIndexEditor(100, Inter.getLocText("ColumnName")), formulaEditor}, 1); |
||||
} |
||||
} |
||||
|
||||
public void populate(TableDataDictionary tableDataDict) { |
||||
if (tableDataDict == null) { |
||||
this.treeTableDataComboBox.setSelectedItem(""); |
||||
this.textPane.populate(1); |
||||
this.valuePane.populate(1); |
||||
return; |
||||
} else { |
||||
String _name = ""; |
||||
if (tableDataDict.getTableData() instanceof NameTableData) { |
||||
_name = ((NameTableData) tableDataDict.getTableData()).getName(); |
||||
} |
||||
this.treeTableDataComboBox.setSelectedTableDataByName(_name); |
||||
tdChange(); |
||||
// alex:因为显示到界面上的index是以1为始的,所以要加1
|
||||
if (!StringUtils.isEmpty(tableDataDict.getKeyColumnName())) { |
||||
this.valuePane.populate(tableDataDict.getKeyColumnName()); |
||||
} else { |
||||
this.valuePane.populate(tableDataDict.getKeyColumnIndex() + 1); |
||||
} |
||||
Object value = null; |
||||
if ((tableDataDict).getFormula() != null) { |
||||
value = (tableDataDict).getFormula(); |
||||
} else { |
||||
if (!StringUtils.isEmpty(tableDataDict.getValueColumnName())) { |
||||
value = tableDataDict.getValueColumnName(); |
||||
} else { |
||||
value = tableDataDict.getValueColumnIndex() + 1; |
||||
} |
||||
} |
||||
|
||||
this.textPane.populate(value); |
||||
} |
||||
} |
||||
|
||||
public TableDataDictionary update() { |
||||
TableDataDictionary tableDataDict = new TableDataDictionary(); |
||||
Object object = this.valuePane.update(StringUtils.EMPTY); |
||||
// alex:因为显示到界面上的index是以1为始的,所以要减1
|
||||
// carl:假如这里的序号要变,请考虑6.2的兼容
|
||||
|
||||
if (object instanceof Object[]) { |
||||
Object[] temp = (Object[]) object; |
||||
tableDataDict.setKeyColumnIndex(((Integer) temp[0]).intValue() - 1); |
||||
tableDataDict.setKeyColumnName((String) temp[1]); |
||||
} else if (object instanceof Integer) { |
||||
tableDataDict.setKeyColumnIndex((Integer) object - 1); |
||||
} else if (object instanceof String) { |
||||
tableDataDict.setKeyColumnName((String) object); |
||||
} |
||||
Object object_text = this.textPane.update(StringUtils.EMPTY); |
||||
if (object_text instanceof Object[]) { |
||||
Object[] temp = (Object[]) object_text; |
||||
if (temp[0] instanceof Formula) { |
||||
tableDataDict.setFormula((Formula) temp[0]); |
||||
} else { |
||||
tableDataDict.setValueColumnIndex(((Integer) temp[0]).intValue() - 1); |
||||
tableDataDict.setValueColumnName((String) temp[1]); |
||||
} |
||||
} else if (object_text instanceof Integer) { |
||||
tableDataDict.setValueColumnIndex((Integer) this.textPane.update() - 1); |
||||
} else if (object_text instanceof String) { |
||||
tableDataDict.setValueColumnName((String) object_text); |
||||
} else { |
||||
tableDataDict.setFormula(((Formula) object)); |
||||
} |
||||
|
||||
TableDataWrapper tableDataWrappe = this.treeTableDataComboBox.getSelectedItem(); |
||||
if (tableDataWrappe != null) { |
||||
tableDataDict.setTableData(new NameTableData(tableDataWrappe.getTableDataName())); |
||||
} |
||||
|
||||
return tableDataDict; |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return "Auto Build Tree"; |
||||
} |
||||
|
||||
/** |
||||
* 预览 |
||||
*/ |
||||
public void preview() { |
||||
TableDataWrapper tableDataWrappe = treeTableDataComboBox.getSelectedItem(); |
||||
if (tableDataWrappe == null) { |
||||
return; |
||||
} |
||||
tableDataWrappe.previewData(); |
||||
} |
||||
|
||||
/** |
||||
* 编辑 |
||||
* @param jPanel 面板 |
||||
*/ |
||||
public void edit(JPanel jPanel) { |
||||
RecursionTableData rtd = null; |
||||
String name = ""; |
||||
BasicTableDataTreePane tdtp = TableDataTreePane.getInstance(DesignModelAdapter.getCurrentModelAdapter()); |
||||
if (treeTableDataComboBox.getSelectedItem() == null) { |
||||
//新建
|
||||
rtd = new RecursionTableData(); |
||||
name = TableDataTreePane.createUnrepeatedName(tdtp.getDataTree(), "Tree"); |
||||
} else { |
||||
//编辑
|
||||
rtd = treeTableDataComboBox.getSelcetedTableData(); |
||||
name = treeTableDataComboBox.getSelectedItem().getTableDataName(); |
||||
} |
||||
AbstractTableDataWrapper atdw = new TemplateTableDataWrapper(rtd, ""); |
||||
tdtp.dgEdit(atdw.creatTableDataPane(), name); |
||||
treeTableDataComboBox.refresh(); |
||||
treeTableDataComboBox.setSelectedTableDataByName(name); |
||||
textPane.populate(1); |
||||
valuePane.populate(1); |
||||
} |
||||
|
||||
package com.fr.design.gui.frpane; |
||||
|
||||
import com.fr.base.BaseFormula; |
||||
import com.fr.data.impl.NameTableData; |
||||
import com.fr.data.impl.RecursionTableData; |
||||
import com.fr.data.impl.TableDataDictionary; |
||||
import com.fr.design.DesignModelAdapter; |
||||
import com.fr.design.data.BasicTableDataTreePane; |
||||
import com.fr.design.data.DesignTableDataManager; |
||||
import com.fr.design.data.datapane.EditOrNewLabel; |
||||
import com.fr.design.data.datapane.TableDataTreePane; |
||||
import com.fr.design.data.datapane.TreeTableDataComboBox; |
||||
import com.fr.design.data.datapane.preview.PreviewLabel; |
||||
import com.fr.design.data.tabledata.wrapper.AbstractTableDataWrapper; |
||||
import com.fr.design.data.tabledata.wrapper.TableDataWrapper; |
||||
import com.fr.design.data.tabledata.wrapper.TemplateTableDataWrapper; |
||||
import com.fr.design.dialog.BasicPane; |
||||
import com.fr.design.editor.ValueEditorPane; |
||||
import com.fr.design.editor.ValueEditorPaneFactory; |
||||
import com.fr.design.editor.editor.ColumnIndexEditor; |
||||
import com.fr.design.editor.editor.ColumnNameEditor; |
||||
import com.fr.design.editor.editor.Editor; |
||||
import com.fr.design.editor.editor.FormulaEditor; |
||||
import com.fr.design.editor.editor.OldColumnIndexEditor; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.layout.TableLayout; |
||||
import com.fr.design.layout.TableLayoutHelper; |
||||
import com.fr.general.Inter; |
||||
import com.fr.stable.StringUtils; |
||||
|
||||
import javax.swing.*; |
||||
import java.awt.*; |
||||
import java.awt.event.ItemEvent; |
||||
import java.awt.event.ItemListener; |
||||
import java.util.List; |
||||
|
||||
public class JTreeAutoBuildPane extends BasicPane implements PreviewLabel.Previewable, EditOrNewLabel.Editable { |
||||
private TreeTableDataComboBox treeTableDataComboBox; |
||||
private ValueEditorPane valuePane; |
||||
private ValueEditorPane textPane; |
||||
private JPanel centerPane; |
||||
private JPanel selectTreeDataPanel; |
||||
|
||||
public JTreeAutoBuildPane() { |
||||
this.initComponent(); |
||||
} |
||||
|
||||
/** |
||||
* 初始化 |
||||
*/ |
||||
public void initComponent() { |
||||
this.setLayout(FRGUIPaneFactory.createM_BorderLayout()); |
||||
UILabel selectTreeDataLabel = new UILabel(Inter.getLocText("Select_A_Tree_DataSource_To_Build") + ": "); |
||||
treeTableDataComboBox = new TreeTableDataComboBox(DesignTableDataManager.getEditingTableDataSource()); |
||||
treeTableDataComboBox.setPreferredSize(new Dimension(180, 20)); |
||||
selectTreeDataPanel = FRGUIPaneFactory.createBoxFlowInnerContainer_S_Pane(); |
||||
selectTreeDataPanel.add(selectTreeDataLabel); |
||||
treeTableDataComboBox.addItemListener(new ItemListener() { |
||||
public void itemStateChanged(ItemEvent e) { |
||||
tdChange(); |
||||
} |
||||
}); |
||||
selectTreeDataPanel.add(treeTableDataComboBox); |
||||
treeTableDataComboBox.setPreferredSize(new Dimension(200, 25)); |
||||
treeTableDataComboBox.setSelectedIndex(-1); |
||||
PreviewLabel pl = new PreviewLabel(this); |
||||
pl.setPreferredSize(new Dimension(25, 25)); |
||||
EditOrNewLabel enl = new EditOrNewLabel(this, this); |
||||
enl.setPreferredSize(new Dimension(25, 25)); |
||||
selectTreeDataPanel.add(pl); |
||||
selectTreeDataPanel.add(enl); |
||||
|
||||
this.add(selectTreeDataPanel, BorderLayout.NORTH); |
||||
|
||||
valuePane = ValueEditorPaneFactory.createValueEditorPane(new Editor[]{new ColumnNameEditor(), new ColumnIndexEditor()}); |
||||
FormulaEditor formulaEditor = new FormulaEditor(Inter.getLocText("Parameter-Formula")); |
||||
formulaEditor.setEnabled(true); |
||||
textPane = ValueEditorPaneFactory.createValueEditorPane(new Editor[]{new ColumnNameEditor(), new ColumnIndexEditor(), formulaEditor}); |
||||
Component[][] coms = { |
||||
{new UILabel(Inter.getLocText("Actual_Value") + ":"), |
||||
valuePane}, |
||||
{new UILabel(Inter.getLocText("Display_Value") + ":"), |
||||
textPane}}; |
||||
|
||||
double p = TableLayout.PREFERRED; |
||||
|
||||
double[] rowSize = {p, p, p}; |
||||
double[] columnSize = {p, p}; |
||||
centerPane = TableLayoutHelper.createTableLayoutPane(coms, rowSize, |
||||
columnSize); |
||||
|
||||
this.add(centerPane, BorderLayout.CENTER); |
||||
tdChange(); |
||||
} |
||||
|
||||
private void tdChange() { |
||||
TableDataWrapper tableDataWrappe = this.treeTableDataComboBox.getSelectedItem(); |
||||
if (tableDataWrappe == null) { |
||||
return; |
||||
} |
||||
try { |
||||
List<String> namelist = tableDataWrappe.calculateColumnNameList(); |
||||
String[] columnNames = new String[namelist.size()]; |
||||
namelist.toArray(columnNames); |
||||
valuePane.setEditors(new Editor[]{new ColumnNameEditor(columnNames), new ColumnIndexEditor(columnNames.length)}, columnNames[0]); |
||||
FormulaEditor formulaEditor = new FormulaEditor(Inter.getLocText("Parameter-Formula")); |
||||
formulaEditor.setEnabled(true); |
||||
textPane.setEditors(new Editor[]{new ColumnNameEditor(columnNames), new ColumnIndexEditor(columnNames.length), formulaEditor}, columnNames[0]); |
||||
} catch (Exception e) { |
||||
valuePane.setEditors(new Editor[]{new OldColumnIndexEditor(100, Inter.getLocText("ColumnName"))}, 1); |
||||
FormulaEditor formulaEditor = new FormulaEditor(Inter.getLocText("Parameter-Formula")); |
||||
formulaEditor.setEnabled(true); |
||||
textPane.setEditors(new Editor[]{new OldColumnIndexEditor(100, Inter.getLocText("ColumnName")), formulaEditor}, 1); |
||||
} |
||||
} |
||||
|
||||
public void populate(TableDataDictionary tableDataDict) { |
||||
if (tableDataDict == null) { |
||||
this.treeTableDataComboBox.setSelectedItem(""); |
||||
this.textPane.populate(1); |
||||
this.valuePane.populate(1); |
||||
return; |
||||
} else { |
||||
String _name = ""; |
||||
if (tableDataDict.getTableData() instanceof NameTableData) { |
||||
_name = ((NameTableData) tableDataDict.getTableData()).getName(); |
||||
} |
||||
this.treeTableDataComboBox.setSelectedTableDataByName(_name); |
||||
tdChange(); |
||||
// alex:因为显示到界面上的index是以1为始的,所以要加1
|
||||
if (!StringUtils.isEmpty(tableDataDict.getKeyColumnName())) { |
||||
this.valuePane.populate(tableDataDict.getKeyColumnName()); |
||||
} else { |
||||
this.valuePane.populate(tableDataDict.getKeyColumnIndex() + 1); |
||||
} |
||||
Object value = null; |
||||
if ((tableDataDict).getFormula() != null) { |
||||
value = (tableDataDict).getFormula(); |
||||
} else { |
||||
if (!StringUtils.isEmpty(tableDataDict.getValueColumnName())) { |
||||
value = tableDataDict.getValueColumnName(); |
||||
} else { |
||||
value = tableDataDict.getValueColumnIndex() + 1; |
||||
} |
||||
} |
||||
|
||||
this.textPane.populate(value); |
||||
} |
||||
} |
||||
|
||||
public TableDataDictionary update() { |
||||
TableDataDictionary tableDataDict = new TableDataDictionary(); |
||||
Object object = this.valuePane.update(StringUtils.EMPTY); |
||||
// alex:因为显示到界面上的index是以1为始的,所以要减1
|
||||
// carl:假如这里的序号要变,请考虑6.2的兼容
|
||||
|
||||
if (object instanceof Object[]) { |
||||
Object[] temp = (Object[]) object; |
||||
tableDataDict.setKeyColumnIndex(((Integer) temp[0]).intValue() - 1); |
||||
tableDataDict.setKeyColumnName((String) temp[1]); |
||||
} else if (object instanceof Integer) { |
||||
tableDataDict.setKeyColumnIndex((Integer) object - 1); |
||||
} else if (object instanceof String) { |
||||
tableDataDict.setKeyColumnName((String) object); |
||||
} |
||||
Object object_text = this.textPane.update(StringUtils.EMPTY); |
||||
if (object_text instanceof Object[]) { |
||||
Object[] temp = (Object[]) object_text; |
||||
if (temp[0] instanceof BaseFormula) { |
||||
tableDataDict.setFormula((BaseFormula) temp[0]); |
||||
} else { |
||||
tableDataDict.setValueColumnIndex(((Integer) temp[0]).intValue() - 1); |
||||
tableDataDict.setValueColumnName((String) temp[1]); |
||||
} |
||||
} else if (object_text instanceof Integer) { |
||||
tableDataDict.setValueColumnIndex((Integer) this.textPane.update() - 1); |
||||
} else if (object_text instanceof String) { |
||||
tableDataDict.setValueColumnName((String) object_text); |
||||
} else { |
||||
tableDataDict.setFormula(((BaseFormula) object)); |
||||
} |
||||
|
||||
TableDataWrapper tableDataWrappe = this.treeTableDataComboBox.getSelectedItem(); |
||||
if (tableDataWrappe != null) { |
||||
tableDataDict.setTableData(new NameTableData(tableDataWrappe.getTableDataName())); |
||||
} |
||||
|
||||
return tableDataDict; |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return "Auto Build Tree"; |
||||
} |
||||
|
||||
/** |
||||
* 预览 |
||||
*/ |
||||
public void preview() { |
||||
TableDataWrapper tableDataWrappe = treeTableDataComboBox.getSelectedItem(); |
||||
if (tableDataWrappe == null) { |
||||
return; |
||||
} |
||||
tableDataWrappe.previewData(); |
||||
} |
||||
|
||||
/** |
||||
* 编辑 |
||||
* @param jPanel 面板 |
||||
*/ |
||||
public void edit(JPanel jPanel) { |
||||
RecursionTableData rtd = null; |
||||
String name = ""; |
||||
BasicTableDataTreePane tdtp = TableDataTreePane.getInstance(DesignModelAdapter.getCurrentModelAdapter()); |
||||
if (treeTableDataComboBox.getSelectedItem() == null) { |
||||
//新建
|
||||
rtd = new RecursionTableData(); |
||||
name = TableDataTreePane.createUnrepeatedName(tdtp.getDataTree(), "Tree"); |
||||
} else { |
||||
//编辑
|
||||
rtd = treeTableDataComboBox.getSelcetedTableData(); |
||||
name = treeTableDataComboBox.getSelectedItem().getTableDataName(); |
||||
} |
||||
AbstractTableDataWrapper atdw = new TemplateTableDataWrapper(rtd, ""); |
||||
tdtp.dgEdit(atdw.creatTableDataPane(), name); |
||||
treeTableDataComboBox.refresh(); |
||||
treeTableDataComboBox.setSelectedTableDataByName(name); |
||||
textPane.populate(1); |
||||
valuePane.populate(1); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue