You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
4.6 KiB
157 lines
4.6 KiB
package com.fr.extended.chart; |
|
|
|
import com.fr.chart.chartattr.Chart; |
|
import com.fr.chart.chartattr.ChartCollection; |
|
import com.fr.data.util.function.AbstractDataFunction; |
|
import com.fr.design.gui.icombobox.UIComboBox; |
|
import com.fr.design.gui.ilable.UILabel; |
|
import com.fr.design.layout.TableLayout; |
|
import com.fr.design.layout.TableLayoutHelper; |
|
import com.fr.design.mainframe.chart.gui.data.CalculateComboBox; |
|
import com.fr.design.mainframe.chart.gui.data.table.AbstractTableDataContentPane; |
|
import com.fr.general.GeneralUtils; |
|
|
|
import javax.swing.JPanel; |
|
import javax.swing.SwingConstants; |
|
import java.awt.BorderLayout; |
|
import java.awt.Component; |
|
import java.awt.Dimension; |
|
import java.util.Arrays; |
|
import java.util.List; |
|
|
|
/** |
|
* Created by shine on 2018/3/2. |
|
*/ |
|
public abstract class AbstractExtendedChartTableDataPane<T extends AbstractDataConfig> extends AbstractTableDataContentPane { |
|
|
|
private CalculateComboBox function; |
|
|
|
public AbstractExtendedChartTableDataPane() { |
|
initComponents(); |
|
} |
|
|
|
protected void initComponents() { |
|
|
|
String[] labels = fieldLabels(); |
|
Component[] fieldComponents = fieldComponents(); |
|
|
|
int len = Math.min(labels.length, fieldComponents.length); |
|
|
|
Component[][] components = new Component[len + (hasFunction() ? 1 : 0)][2]; |
|
for (int i = 0; i < len; i++) { |
|
Component fieldComponent = fieldComponents[i]; |
|
fieldComponent.setPreferredSize(new Dimension(100, 20)); |
|
|
|
components[i] = new Component[]{new UILabel(labels[i], SwingConstants.LEFT), fieldComponent}; |
|
} |
|
|
|
if (hasFunction()) { |
|
function = new CalculateComboBox(); |
|
components[len] = new Component[]{new UILabel("function", SwingConstants.LEFT), function}; |
|
} |
|
|
|
double p = TableLayout.PREFERRED; |
|
double[] columnSize = {p, p}; |
|
double[] rowSize = new double[len + (hasFunction() ? 1 : 0)]; |
|
Arrays.fill(rowSize, p); |
|
|
|
JPanel panel = TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize); |
|
|
|
this.setLayout(new BorderLayout()); |
|
this.add(panel, BorderLayout.CENTER); |
|
this.add(addSouthPane(), BorderLayout.SOUTH); |
|
} |
|
|
|
protected JPanel addSouthPane() { |
|
return new JPanel(); |
|
} |
|
|
|
protected boolean hasFunction() { |
|
return false; |
|
} |
|
|
|
protected Component[] fieldComponents() { |
|
return filedComboBoxes(); |
|
} |
|
|
|
protected abstract String[] fieldLabels(); |
|
|
|
protected abstract UIComboBox[] filedComboBoxes(); |
|
|
|
protected abstract void populate(T dataConf); |
|
|
|
protected abstract T update(); |
|
|
|
@Override |
|
public void populateBean(ChartCollection collection) { |
|
if (collection == null || collection.getSelectedChart() == null) { |
|
return; |
|
} |
|
|
|
Chart chart = collection.getSelectedChart(); |
|
|
|
if (chart.getFilterDefinition() instanceof ExtendedTableDataSet) { |
|
ExtendedTableDataSet dataSet = (ExtendedTableDataSet) chart.getFilterDefinition(); |
|
|
|
AbstractDataConfig dataConfig = dataSet.getDataConfig(); |
|
if (dataConfig != null) { |
|
populate((T) dataConfig); |
|
} |
|
|
|
if (hasFunction()) { |
|
function.populateBean((AbstractDataFunction) dataSet.getDataFunction()); |
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@Override |
|
public void updateBean(ChartCollection ob) { |
|
if (ob != null) { |
|
Chart chart = ob.getSelectedChart(); |
|
if (chart != null) { |
|
|
|
ExtendedTableDataSet dataSet = new ExtendedTableDataSet(); |
|
dataSet.setDataConfig(update()); |
|
|
|
if (hasFunction()) { |
|
dataSet.setDataFunction(function.updateBean()); |
|
} |
|
|
|
chart.setFilterDefinition(dataSet); |
|
} |
|
} |
|
} |
|
|
|
@Override |
|
public void checkBoxUse(boolean hasUse) { |
|
for (UIComboBox comboBox : filedComboBoxes()) { |
|
comboBox.setEnabled(hasUse); |
|
} |
|
} |
|
|
|
@Override |
|
public void clearAllBoxList() { |
|
for (UIComboBox comboBox : filedComboBoxes()) { |
|
clearBoxItems(comboBox); |
|
} |
|
} |
|
|
|
@Override |
|
protected void refreshBoxListWithSelectTableData(List columnNameList) { |
|
for (UIComboBox comboBox : filedComboBoxes()) { |
|
refreshBoxItems(comboBox, columnNameList); |
|
} |
|
} |
|
|
|
protected void populateField(UIComboBox comboBox, ExtendedField field) { |
|
comboBox.setSelectedItem(field.getFieldName()); |
|
} |
|
|
|
protected void updateField(UIComboBox comboBox, ExtendedField field) { |
|
field.setFieldName(GeneralUtils.objectToString(comboBox.getSelectedItem())); |
|
} |
|
|
|
}
|
|
|