|
|
|
@ -156,7 +156,7 @@ public class CenterRegionContainerPane extends JPanel {
|
|
|
|
|
private void addExtraButtons() { |
|
|
|
|
|
|
|
|
|
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
|
|
|
if (jt == null) { |
|
|
|
|
if (!JTemplate.isValid(jt)) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -172,7 +172,7 @@ public class CenterRegionContainerPane extends JPanel {
|
|
|
|
|
|
|
|
|
|
private void addCheckButton() { |
|
|
|
|
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
|
|
|
if (jt == null) { |
|
|
|
|
if (!JTemplate.isValid(jt)) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
combineUp.addSeparator(new Dimension(2, 16)); |
|
|
|
@ -185,7 +185,7 @@ public class CenterRegionContainerPane extends JPanel {
|
|
|
|
|
private void addShareButton() { |
|
|
|
|
|
|
|
|
|
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
|
|
|
if (jt == null) { |
|
|
|
|
if (!JTemplate.isValid(jt)) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -205,7 +205,7 @@ public class CenterRegionContainerPane extends JPanel {
|
|
|
|
|
protected void checkCombineUp(boolean flag, ArrayList<String> al) { |
|
|
|
|
//Yvan: 检查当前是否为WORK_SHEET状态,因为只有WORK_SHEET中含有格式刷组件,此时是不需要进行checkComponentsByNames的
|
|
|
|
|
JTemplate<?, ?> jTemplate = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
|
|
|
if (jTemplate != null) { |
|
|
|
|
if (JTemplate.isValid(jTemplate)) { |
|
|
|
|
// 第一个条件满足后还需要添加一重判断,判断是编辑报表块还是参数面板,编辑报表块时则直接return
|
|
|
|
|
if (jTemplate.getMenuState() == DesignState.WORK_SHEET && !jTemplate.isUpMode()) { |
|
|
|
|
return; |
|
|
|
|