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.
38 lines
810 B
38 lines
810 B
package com.fr.design.mainframe; |
|
|
|
|
|
import com.fr.design.menu.MenuDef; |
|
|
|
import java.awt.Graphics2D; |
|
|
|
|
|
/** |
|
* 获取 |
|
* |
|
* @date 2015-2-5-上午10:19:17 |
|
* @deprecated 让聚合报表也可以新建普通报表sheet, 逻辑和普通报表保持一致, 弃用此个性化设置 |
|
*/ |
|
@Deprecated |
|
public class PolySheetNameTabPane extends SheetNameTabPane { |
|
|
|
/** |
|
* 构造函数 |
|
*/ |
|
public PolySheetNameTabPane(ReportComponentComposite reportCompositeX) { |
|
super(reportCompositeX); |
|
} |
|
|
|
protected void paintAddButton(Graphics2D g2d) { |
|
ADD_POLY_SHEET.paintIcon(this, g2d, iconLocation, 3); |
|
} |
|
|
|
|
|
protected void firstInsertActionPerformed() { |
|
new PolyReportInsertAction().actionPerformed(null); |
|
} |
|
|
|
|
|
protected void addInsertGridShortCut(MenuDef def) { |
|
} |
|
|
|
} |