forked from fanruan/design
Browse Source
Merge in DESIGN/design from ~YYMING/design:release/10.0 to release/10.0 * commit 'b306fea3705407c7cf5bde824be3c43540aa5c5e': REPORT-39884 换一个改动方案 REPORT-39965 新建聚合报表下方没有添加普通报表的按钮feature/big-screen
Yyming
4 years ago
3 changed files with 30 additions and 39 deletions
@ -1,35 +1,38 @@ |
|||||||
package com.fr.design.mainframe; |
package com.fr.design.mainframe; |
||||||
|
|
||||||
import java.awt.Graphics2D; |
|
||||||
|
|
||||||
import com.fr.design.menu.MenuDef; |
import com.fr.design.menu.MenuDef; |
||||||
|
|
||||||
|
import java.awt.Graphics2D; |
||||||
|
|
||||||
|
|
||||||
/** |
/** |
||||||
* 获取 |
* 获取 |
||||||
* |
* |
||||||
* @date 2015-2-5-上午10:19:17 |
* @date 2015-2-5-上午10:19:17 |
||||||
* |
* @deprecated 让聚合报表也可以新建普通报表sheet, 逻辑和普通报表保持一致, 弃用此个性化设置 |
||||||
*/ |
*/ |
||||||
public class PolySheetNameTabPane extends SheetNameTabPane{ |
@Deprecated |
||||||
|
public class PolySheetNameTabPane extends SheetNameTabPane { |
||||||
/** |
|
||||||
* 构造函数 |
/** |
||||||
*/ |
* 构造函数 |
||||||
public PolySheetNameTabPane(ReportComponentComposite reportCompositeX) { |
*/ |
||||||
super(reportCompositeX); |
public PolySheetNameTabPane(ReportComponentComposite reportCompositeX) { |
||||||
} |
super(reportCompositeX); |
||||||
|
} |
||||||
|
|
||||||
protected void paintAddButton(Graphics2D g2d){ |
protected void paintAddButton(Graphics2D g2d) { |
||||||
ADD_POLY_SHEET.paintIcon(this, g2d, iconLocation, 3); |
ADD_POLY_SHEET.paintIcon(this, g2d, iconLocation, 3); |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
protected void firstInsertActionPerformed(){ |
protected void firstInsertActionPerformed() { |
||||||
new PolyReportInsertAction().actionPerformed(null); |
new PolyReportInsertAction().actionPerformed(null); |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
protected void addInsertGridShortCut(MenuDef def){ |
protected void addInsertGridShortCut(MenuDef def) { |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
Loading…
Reference in new issue