|
|
|
@ -91,6 +91,8 @@ public class DesignerEnvManager implements XMLReadable, XMLWriter {
|
|
|
|
|
private static final String VERSION100 = "100"; |
|
|
|
|
private static final int CACHINGTEMPLATE_LIMIT = 5; |
|
|
|
|
private static final String WEB_NAME = "webapps"; |
|
|
|
|
public static final int LAYOUT_TEMPLATE_SIMPLE_STYLE = 0; |
|
|
|
|
public static final int LAYOUT_TEMPLATE_REAL_STYLE = 1; |
|
|
|
|
/** |
|
|
|
|
* 指定默认工作空间 |
|
|
|
|
*/ |
|
|
|
@ -205,7 +207,7 @@ public class DesignerEnvManager implements XMLReadable, XMLWriter {
|
|
|
|
|
|
|
|
|
|
private boolean showTemplateMissingPlugin = true; |
|
|
|
|
|
|
|
|
|
private boolean useSimpleStyleLayout = false; |
|
|
|
|
private int layoutTemplateStyle = LAYOUT_TEMPLATE_SIMPLE_STYLE; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* DesignerEnvManager. |
|
|
|
@ -1693,12 +1695,12 @@ public class DesignerEnvManager implements XMLReadable, XMLWriter {
|
|
|
|
|
this.openDebug = openDebug; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public boolean isUseSimpleStyleLayout() { |
|
|
|
|
return useSimpleStyleLayout; |
|
|
|
|
public int getLayoutTemplateStyle() { |
|
|
|
|
return layoutTemplateStyle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setUseSimpleStyleLayout(boolean useSimpleStyleLayout) { |
|
|
|
|
this.useSimpleStyleLayout = useSimpleStyleLayout; |
|
|
|
|
public void setLayoutTemplateStyle(int layoutTemplateStyle) { |
|
|
|
|
this.layoutTemplateStyle = layoutTemplateStyle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -1871,7 +1873,7 @@ public class DesignerEnvManager implements XMLReadable, XMLWriter {
|
|
|
|
|
this.setEmbedServerLazyStartup(reader.getAttrAsBoolean("embedServerLazyStartup", false)); |
|
|
|
|
this.setShowTemplateMissingPlugin(reader.getAttrAsBoolean("showTemplateMissingPlugin", true)); |
|
|
|
|
this.setShowServerDatasetAuthTip(reader.getAttrAsBoolean("showServerDatasetAuthTip", true)); |
|
|
|
|
this.setUseSimpleStyleLayout(reader.getAttrAsBoolean("useSimpleStyleLayout", false)); |
|
|
|
|
this.setLayoutTemplateStyle(reader.getAttrAsInt("layoutTemplateStyle", LAYOUT_TEMPLATE_SIMPLE_STYLE)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void readReportPaneAttributions(XMLableReader reader) { |
|
|
|
@ -2145,7 +2147,7 @@ public class DesignerEnvManager implements XMLReadable, XMLWriter {
|
|
|
|
|
if (!this.isShowTemplateMissingPlugin()) { |
|
|
|
|
writer.attr("showTemplateMissingPlugin", this.isShowTemplateMissingPlugin()); |
|
|
|
|
} |
|
|
|
|
writer.attr("useSimpleStyleLayout", this.isUseSimpleStyleLayout()); |
|
|
|
|
writer.attr("layoutTemplateStyle", this.getLayoutTemplateStyle()); |
|
|
|
|
writer.attr("showServerDatasetAuthTip", this.isShowServerDatasetAuthTip()); |
|
|
|
|
writer.end(); |
|
|
|
|
} |
|
|
|
|