Browse Source
* commit 'aaa9350a4aaadd474aab1896f2ffffb1e481e75c': 1 1 冲突 update update update 接口 rt 接口 去掉无用返回值 private 改成循环存取 邮件图片导出设置part5 in 5 接口命名规范 接口命名规范 1、更新对话框在插件管理背面的问题 2、下载插件和更新插件时提醒登陆 数据集分组插件调整 updatemaster
superman
9 years ago
20 changed files with 237 additions and 122 deletions
@ -1,67 +1,89 @@
|
||||
package com.fr.design.report; |
||||
|
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.BoxLayout; |
||||
import javax.swing.*; |
||||
|
||||
import com.fr.design.ExtraDesignClassManager; |
||||
import com.fr.design.dialog.BasicPane; |
||||
import com.fr.design.fun.AbstractExportPane; |
||||
import com.fr.design.fun.ExportAttrTabProvider; |
||||
import com.fr.design.gui.frpane.UITabbedPane; |
||||
import com.fr.general.Inter; |
||||
import com.fr.io.attr.ReportExportAttr; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
|
||||
public class ReportExportAttrPane extends BasicPane { |
||||
private ExcelExportPane excelExportPane; |
||||
private PDFExportPane pdfExportPane; |
||||
private WordExportPane wordExportPane; |
||||
|
||||
public ReportExportAttrPane() { |
||||
this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); |
||||
this.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); |
||||
excelExportPane = new ExcelExportPane(); |
||||
this.add(excelExportPane); |
||||
pdfExportPane = new PDFExportPane(); |
||||
this.add(pdfExportPane); |
||||
wordExportPane = new WordExportPane(); |
||||
this.add(wordExportPane); |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return Inter.getLocText("ReportD-Excel_Export"); |
||||
} |
||||
|
||||
public void populate(ReportExportAttr reportExportAttr) { |
||||
if (reportExportAttr == null) { |
||||
reportExportAttr = new ReportExportAttr(); |
||||
} |
||||
|
||||
if (this.excelExportPane != null) { |
||||
this.excelExportPane.populate(reportExportAttr.getExcelExportAttr()); |
||||
} |
||||
|
||||
if (this.pdfExportPane != null) { |
||||
this.pdfExportPane.populate(reportExportAttr.getPDFExportAttr()); |
||||
} |
||||
|
||||
if (this.wordExportPane != null) { |
||||
this.wordExportPane.populate(reportExportAttr.getWordExportAttr()); |
||||
} |
||||
} |
||||
|
||||
public ReportExportAttr update() { |
||||
|
||||
ReportExportAttr reportExportAttr = new ReportExportAttr(); |
||||
if (this.excelExportPane != null) { |
||||
reportExportAttr.setExcelExportAttr(this.excelExportPane.update()); |
||||
} |
||||
|
||||
if (this.pdfExportPane != null) { |
||||
reportExportAttr.setPDFExportAttr(this.pdfExportPane.update()); |
||||
} |
||||
|
||||
if (this.wordExportPane != null) { |
||||
reportExportAttr.setWordExportAttr(this.wordExportPane.update()); |
||||
} |
||||
|
||||
return reportExportAttr; |
||||
} |
||||
private ExcelExportPane excelExportPane; |
||||
private PDFExportPane pdfExportPane; |
||||
private WordExportPane wordExportPane; |
||||
private List<AbstractExportPane> paneList; |
||||
|
||||
public ReportExportAttrPane() { |
||||
UITabbedPane uiTabbedPane = new UITabbedPane(); |
||||
this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); |
||||
this.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); |
||||
excelExportPane = new ExcelExportPane(); |
||||
uiTabbedPane.addTab("Excel", excelExportPane); |
||||
pdfExportPane = new PDFExportPane(); |
||||
uiTabbedPane.addTab("PDF", pdfExportPane); |
||||
wordExportPane = new WordExportPane(); |
||||
uiTabbedPane.addTab("Word", wordExportPane); |
||||
ExportAttrTabProvider[] providers = ExtraDesignClassManager.getInstance().getExportAttrTabProviders(); |
||||
paneList = new ArrayList<AbstractExportPane>(); |
||||
for (ExportAttrTabProvider provider : providers) { |
||||
uiTabbedPane.addTab(provider.title(), provider.toSwingComponent()); |
||||
paneList.add(provider.toExportPane()); |
||||
} |
||||
this.add(uiTabbedPane); |
||||
} |
||||
|
||||
@Override |
||||
protected String title4PopupWindow() { |
||||
return Inter.getLocText("ReportD-Excel_Export"); |
||||
} |
||||
|
||||
public void populate(ReportExportAttr reportExportAttr) { |
||||
if (reportExportAttr == null) { |
||||
reportExportAttr = new ReportExportAttr(); |
||||
} |
||||
|
||||
if (this.excelExportPane != null) { |
||||
this.excelExportPane.populate(reportExportAttr.getExcelExportAttr()); |
||||
} |
||||
|
||||
if (this.pdfExportPane != null) { |
||||
this.pdfExportPane.populate(reportExportAttr.getPDFExportAttr()); |
||||
} |
||||
|
||||
if (this.wordExportPane != null) { |
||||
this.wordExportPane.populate(reportExportAttr.getWordExportAttr()); |
||||
} |
||||
|
||||
for (AbstractExportPane exportpane : paneList) { |
||||
exportpane.populate(reportExportAttr); |
||||
} |
||||
} |
||||
|
||||
public ReportExportAttr update() { |
||||
|
||||
ReportExportAttr reportExportAttr = new ReportExportAttr(); |
||||
if (this.excelExportPane != null) { |
||||
reportExportAttr.setExcelExportAttr(this.excelExportPane.update()); |
||||
} |
||||
|
||||
if (this.pdfExportPane != null) { |
||||
reportExportAttr.setPDFExportAttr(this.pdfExportPane.update()); |
||||
} |
||||
|
||||
if (this.wordExportPane != null) { |
||||
reportExportAttr.setWordExportAttr(this.wordExportPane.update()); |
||||
} |
||||
|
||||
for (AbstractExportPane exportPane : paneList) { |
||||
exportPane.update(reportExportAttr); |
||||
} |
||||
return reportExportAttr; |
||||
} |
||||
} |
@ -0,0 +1,13 @@
|
||||
package com.fr.design.fun; |
||||
|
||||
import com.fr.design.dialog.BasicPane; |
||||
|
||||
/** |
||||
* Created by vito on 16/5/5. |
||||
*/ |
||||
public abstract class AbstractExportPane extends BasicPane { |
||||
|
||||
public abstract void populate(Object t); |
||||
|
||||
public abstract void update(Object t); |
||||
} |
@ -0,0 +1,22 @@
|
||||
package com.fr.design.fun; |
||||
|
||||
import com.fr.stable.fun.Level; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
/** |
||||
* Created by vito on 16/5/5. |
||||
*/ |
||||
public interface ExportAttrTabProvider extends Level{ |
||||
String XML_TAG = "ExportAttrTabProvider"; |
||||
|
||||
int CURRENT_LEVEL = 1; |
||||
|
||||
JComponent toSwingComponent(); |
||||
|
||||
AbstractExportPane toExportPane(); |
||||
|
||||
String title(); |
||||
|
||||
String tag(); |
||||
} |
@ -0,0 +1,19 @@
|
||||
package com.fr.design.fun.impl; |
||||
|
||||
import com.fr.design.fun.ExportAttrTabProvider; |
||||
import com.fr.stable.fun.impl.AbstractProvider; |
||||
|
||||
/** |
||||
* Created by vito on 16/5/5. |
||||
*/ |
||||
public abstract class AbstractExportAttrTabProvider extends AbstractProvider implements ExportAttrTabProvider { |
||||
@Override |
||||
public int currentAPILevel() { |
||||
return CURRENT_LEVEL; |
||||
} |
||||
|
||||
@Override |
||||
public String mark4Provider() { |
||||
return this.getClass().getName(); |
||||
} |
||||
} |
@ -1,13 +1,13 @@
|
||||
package com.fr.design.fun.impl; |
||||
|
||||
import com.fr.design.fun.WidgetAttrProvider; |
||||
import com.fr.design.fun.WidgetPropertyUIProvider; |
||||
import com.fr.stable.fun.impl.AbstractProvider; |
||||
|
||||
|
||||
/** |
||||
* Created by vito on 16/4/27. |
||||
*/ |
||||
public abstract class AbstractWidgetAttrProvider extends AbstractProvider implements WidgetAttrProvider { |
||||
public abstract class AbstractWidgetPropertyUIProvider extends AbstractProvider implements WidgetPropertyUIProvider { |
||||
|
||||
@Override |
||||
public int currentAPILevel() { |
Loading…
Reference in new issue