forked from fanruan/design
Browse Source
Merge in DESIGN/design from ~HENRY.WANG/design:feature/10.0 to feature/10.0 * commit '66bbd54f45db034d8ffaa82ff3022d687b61f1b7': KERNEL-7376 优化设计器上一些性能问题 KERNEL-7376 优化设计器上一些性能问题 KERNEL-7376 优化设计器上一些性能问题 KERNEL-7376 优化设计器上一些性能问题 KERNEL-7376 优化设计器上一些性能问题feature/10.0
Henry.Wang
4 years ago
10 changed files with 264 additions and 244 deletions
@ -1,165 +0,0 @@
|
||||
/* |
||||
* Copyright(c) 2001-2011, FineReport Inc, All Rights Reserved. |
||||
*/ |
||||
package com.fr.design.mainframe; |
||||
|
||||
import com.fr.base.BaseUtils; |
||||
import com.fr.base.chart.BaseChartCollection; |
||||
import com.fr.chart.chartattr.ChartCollection; |
||||
import com.fr.chartx.attr.ChartProvider; |
||||
import com.fr.design.ChartTypeInterfaceManager; |
||||
import com.fr.design.designer.TargetComponent; |
||||
import com.fr.design.gui.chart.BaseChartPropertyPane; |
||||
import com.fr.design.gui.chart.ChartEditPaneProvider; |
||||
import com.fr.design.gui.frpane.UITitlePanel; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.gui.itabpane.TitleChangeListener; |
||||
import com.fr.design.mainframe.chart.ChartEditPane; |
||||
import com.fr.stable.StableUtils; |
||||
|
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.Icon; |
||||
import javax.swing.JComponent; |
||||
import java.awt.BorderLayout; |
||||
|
||||
public abstract class MiddleChartPropertyPane extends BaseChartPropertyPane{ |
||||
|
||||
protected TargetComponentContainer container = new TargetComponentContainer(); |
||||
protected UILabel nameLabel; |
||||
|
||||
protected ChartEditPane chartEditPane; |
||||
|
||||
public MiddleChartPropertyPane() { |
||||
initComponenet(); |
||||
} |
||||
|
||||
protected void initComponenet() { |
||||
this.setLayout(new BorderLayout()); |
||||
this.setBorder(BorderFactory.createEmptyBorder(10,0,0,0)); |
||||
|
||||
createNameLabel(); |
||||
//去掉上方名字,先注释掉
|
||||
// this.add(createNorthComponent(), BorderLayout.NORTH);
|
||||
chartEditPane = StableUtils.construct(ChartEditPane.class); |
||||
chartEditPane.setSupportCellData(true); |
||||
} |
||||
|
||||
public void addChartEditPane(String plotID){ |
||||
chartEditPane = ChartTypeInterfaceManager.getInstance().getChartEditPane(plotID); |
||||
chartEditPane.setSupportCellData(true); |
||||
this.createMainPane(); |
||||
setSureProperty(); |
||||
} |
||||
|
||||
protected abstract void createNameLabel(); |
||||
|
||||
protected abstract JComponent createNorthComponent(); |
||||
|
||||
protected abstract void createMainPane(); |
||||
|
||||
|
||||
@Override |
||||
public ChartEditPaneProvider getChartEditPane() { |
||||
return chartEditPane; |
||||
} |
||||
|
||||
public void setSureProperty() { |
||||
chartEditPane.setContainer(container); |
||||
chartEditPane.addTitleChangeListener(titleListener); |
||||
String tabname = chartEditPane.getSelectedTabName(); |
||||
nameLabel.setText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Chart_Property_Table") + (tabname != null ? ('-' + chartEditPane.getSelectedTabName()) : "")); |
||||
resetChartEditPane(); |
||||
} |
||||
|
||||
protected void resetChartEditPane() { |
||||
remove(chartEditPane); |
||||
add(chartEditPane, BorderLayout.CENTER); |
||||
validate(); |
||||
repaint(); |
||||
revalidate(); |
||||
} |
||||
|
||||
protected TitleChangeListener titleListener = new TitleChangeListener() { |
||||
|
||||
@Override |
||||
public void fireTitleChange(String addName) { |
||||
nameLabel.setText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Chart_Property_Table") + '-' + addName); |
||||
} |
||||
}; |
||||
|
||||
/** |
||||
* 感觉ChartCollection加载图表属性界面. |
||||
* @param collection 收集图表 |
||||
* @param ePane 面板 |
||||
*/ |
||||
public void populateChartPropertyPane(ChartCollection collection, TargetComponent<?> ePane) { |
||||
addChartEditPane(collection.getSelectedChartProvider(ChartProvider.class).getID()); |
||||
setSupportCellData(true); |
||||
this.container.setEPane(ePane); |
||||
chartEditPane.populate(collection); |
||||
} |
||||
|
||||
/** |
||||
* 感觉ChartCollection加载图表属性界面. |
||||
* @param collection 收集图表 |
||||
* @param ePane 面板 |
||||
*/ |
||||
public void populateChartPropertyPane(BaseChartCollection collection, TargetComponent<?> ePane) { |
||||
if (collection instanceof ChartCollection) { |
||||
populateChartPropertyPane((ChartCollection)collection, ePane); |
||||
} |
||||
} |
||||
|
||||
// public void clear() {
|
||||
// this.container.setEPane(null);
|
||||
// chartEditPane.clear();
|
||||
// getParent().remove(this);
|
||||
// }
|
||||
|
||||
/** |
||||
* 返回View的标题. |
||||
*/ |
||||
public String getViewTitle() { |
||||
return com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Chart_Cell_Element_Property_Table"); |
||||
} |
||||
|
||||
/** |
||||
* 返回View的Icon地址. |
||||
*/ |
||||
public Icon getViewIcon() { |
||||
return BaseUtils.readIcon("/com/fr/design/images/m_report/qb.png"); |
||||
} |
||||
|
||||
/** |
||||
* 预定义定位 |
||||
* @return 定位 |
||||
*/ |
||||
public Location preferredLocation() { |
||||
return Location.WEST_BELOW; |
||||
} |
||||
|
||||
/** |
||||
* 创建标题Panel |
||||
* @return 标题panel |
||||
*/ |
||||
public UITitlePanel createTitlePanel() { |
||||
return new UITitlePanel(this); |
||||
} |
||||
|
||||
/** |
||||
* 刷新Dockview |
||||
*/ |
||||
public void refreshDockingView() { |
||||
// TODO Auto-generated method stub
|
||||
|
||||
} |
||||
|
||||
/** |
||||
* 设置是否支持单元格数据. |
||||
*/ |
||||
public void setSupportCellData(boolean supportCellData) { |
||||
if(chartEditPane != null) { |
||||
chartEditPane.setSupportCellData(supportCellData); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue