|
|
|
@ -17,7 +17,6 @@ import com.fr.report.fit.ReportFitAttr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.swing.*; |
|
|
|
|
import javax.swing.border.EmptyBorder; |
|
|
|
|
import java.awt.*; |
|
|
|
|
import java.awt.event.ActionEvent; |
|
|
|
|
import java.awt.event.ActionListener; |
|
|
|
@ -33,6 +32,7 @@ import static com.fr.design.i18n.Toolkit.i18nText;
|
|
|
|
|
public abstract class BaseFitAttrPane extends BasicBeanPane<ReportFitAttr> { |
|
|
|
|
|
|
|
|
|
protected JPanel contentJPanel; |
|
|
|
|
protected UILabel belowSetLabel; |
|
|
|
|
protected UIComboBox itemChoose; |
|
|
|
|
protected java.util.List<FitAttrModel> fitAttrModelList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
@ -97,7 +97,7 @@ public abstract class BaseFitAttrPane extends BasicBeanPane<ReportFitAttr> {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
attrJPanel = TableLayoutHelper.createTableLayoutPane(components, rowSize, columnSize); |
|
|
|
|
attrJPanel.setBorder(new EmptyBorder(0, 100, 10, 100)); |
|
|
|
|
attrJPanel.setBorder(BorderFactory.createEmptyBorder(5, 0, 10, 0)); |
|
|
|
|
contentJPanel.add(attrJPanel); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -136,9 +136,18 @@ public abstract class BaseFitAttrPane extends BasicBeanPane<ReportFitAttr> {
|
|
|
|
|
|
|
|
|
|
protected void initPreviewJPanel() { |
|
|
|
|
previewJPanel = new FitPreviewPane(); |
|
|
|
|
previewJPanel.setBorder(BorderFactory.createEmptyBorder(0, getPreviewJPanelLeft(), 0, 0)); |
|
|
|
|
contentJPanel.add(previewJPanel); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private int getPreviewJPanelLeft() { |
|
|
|
|
int left = 0; |
|
|
|
|
if (belowSetLabel.getPreferredSize() != null) { |
|
|
|
|
left = belowSetLabel.getPreferredSize().width + BELOW_SET_COMPONENT_HSPACE; |
|
|
|
|
} |
|
|
|
|
return left; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected int getStateInPC(int index) { |
|
|
|
|
FitType[] fitTypes = fitAttrModel.getFitTypes(); |
|
|
|
|
return fitTypes[index].getState(); |
|
|
|
@ -188,29 +197,26 @@ public abstract class BaseFitAttrPane extends BasicBeanPane<ReportFitAttr> {
|
|
|
|
|
protected void initComponents() { |
|
|
|
|
this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); |
|
|
|
|
this.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); |
|
|
|
|
contentJPanel = new JPanel(); |
|
|
|
|
contentJPanel.setLayout(FRGUIPaneFactory.createCenterFlowLayout()); |
|
|
|
|
contentJPanel = FRGUIPaneFactory.createVerticalFlowLayout_Pane(false, FlowLayout.LEFT, 0, 0); |
|
|
|
|
this.add(contentJPanel); |
|
|
|
|
initItemChoose(); |
|
|
|
|
initPrompt(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void initItemChoose() { |
|
|
|
|
JPanel chooseJPanel = new JPanel(); |
|
|
|
|
chooseJPanel.setLayout(FRGUIPaneFactory.createLabelFlowLayout()); |
|
|
|
|
JPanel chooseJPanel = FRGUIPaneFactory.createLeftFlowZeroGapBorderPane(); |
|
|
|
|
ItemListener itemListener = getItemListener(); |
|
|
|
|
itemChoose = new UIComboBox(getItemNames()); |
|
|
|
|
itemChoose.addItemListener(itemListener); |
|
|
|
|
UILabel belowSetLabel = new UILabel(i18nText("Fine-Design_Report_Blow_Set")); |
|
|
|
|
belowSetLabel = new UILabel(i18nText("Fine-Design_Report_Blow_Set")); |
|
|
|
|
JPanel hSpaceLabel = new JPanel(); |
|
|
|
|
hSpaceLabel.setSize(BELOW_SET_COMPONENT_HSPACE, 0); |
|
|
|
|
JPanel buttonPane = GUICoreUtils.createFlowPane(new Component[]{ |
|
|
|
|
belowSetLabel, itemChoose}, FlowLayout.LEFT, BELOW_SET_COMPONENT_HSPACE); |
|
|
|
|
belowSetLabel, hSpaceLabel, itemChoose}, FlowLayout.LEFT); |
|
|
|
|
chooseJPanel.add(buttonPane); |
|
|
|
|
chooseJPanel.setPreferredSize(new Dimension(500, 50)); |
|
|
|
|
JPanel jPanel = new JPanel(); |
|
|
|
|
jPanel.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
|
|
|
jPanel.add(chooseJPanel, BorderLayout.WEST); |
|
|
|
|
|
|
|
|
|
contentJPanel.add(jPanel); |
|
|
|
|
chooseJPanel.setBorder(BorderFactory.createEmptyBorder(0, 0, 5, 0)); |
|
|
|
|
contentJPanel.add(chooseJPanel); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -221,6 +227,9 @@ public abstract class BaseFitAttrPane extends BasicBeanPane<ReportFitAttr> {
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void initPrompt() { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void refresh() { |
|
|
|
|
validate(); |
|
|
|
|
repaint(); |
|
|
|
|