Browse Source

CHART-9141 删除图表设计器相关代码

research/10.0
zheng 5 years ago
parent
commit
a8993872e2
  1. 65
      designer-chart/src/main/java/com/fr/design/mainframe/chart/gui/ChartDesignerOtherPane.java

65
designer-chart/src/main/java/com/fr/design/mainframe/chart/gui/ChartDesignerOtherPane.java

@ -1,65 +0,0 @@
/*
* Copyright (c) 2001-2014,FineReport Inc, All Rights Reserved.
*/
package com.fr.design.mainframe.chart.gui;
import com.fr.design.mainframe.chart.gui.other.ChartDesignerConditionAttrPane;
import com.fr.design.mainframe.chart.gui.other.ChartDesignerInteractivePane;
import com.fr.design.dialog.BasicPane;
import javax.swing.*;
import java.awt.*;
import java.util.*;
/**
* 图表设计器的图标属性表高级tab
* Created by IntelliJ IDEA.
* Author : daisy
* Version: 6.5.6
* Date: 14-10-16
* Time: 下午2:04
*/
public class ChartDesignerOtherPane extends ChartOtherPane {
@Override
protected JPanel createContentPane() {
JPanel content = new JPanel(new BorderLayout());
otherPane = new ChartTabPane();
content.add(otherPane, BorderLayout.CENTER);
return content;
}
/**
* 界面标题
*
* @return 返回标题.
*/
public String title4PopupWindow() {
return com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Advanced");
}
private boolean isHaveCondition() {
return hasCondition;
}
private class ChartTabPane extends TabPane {
@Override
protected java.util.List<BasicPane> initPaneList() {
java.util.List<BasicPane> paneList = new ArrayList<BasicPane>();
interactivePane = new ChartDesignerInteractivePane(ChartDesignerOtherPane.this);
paneList.add(interactivePane);
if (ChartDesignerOtherPane.this.isHaveCondition()) {
conditionAttrPane = new ChartDesignerConditionAttrPane();
paneList.add(conditionAttrPane);
}
return paneList;
}
}
}
Loading…
Cancel
Save