Added options for svg and raster image embedding
This commit is contained in:
parent
9c66ab4d21
commit
2b7d161bf9
6 changed files with 22 additions and 2 deletions
|
@ -83,7 +83,8 @@ public class XhtmlOptionsDialog extends OptionsDialogBase {
|
|||
loadTextFieldOption(xProps, "PageBreakStyle");
|
||||
|
||||
loadCheckBoxOption(xProps, "InlineCSS");
|
||||
|
||||
loadCheckBoxOption(xProps, "EmbedImg");
|
||||
loadCheckBoxOption(xProps, "EmbedSVG");
|
||||
|
||||
// Special content
|
||||
loadCheckBoxOption(xProps, "Notes");
|
||||
|
@ -142,6 +143,9 @@ public class XhtmlOptionsDialog extends OptionsDialogBase {
|
|||
|
||||
// Special content
|
||||
saveCheckBoxOption(xProps, helper, "InlineCSS", "css_inline");
|
||||
saveCheckBoxOption(xProps, helper, "EmbedImg", "embed_svg");
|
||||
saveCheckBoxOption(xProps, helper, "EmbedSVG", "embed_img");
|
||||
|
||||
saveCheckBoxOption(xProps, helper, "Notes", "notes");
|
||||
saveCheckBoxOption(xProps, helper, "UseDublinCore", "use_dublin_core");
|
||||
|
||||
|
@ -204,6 +208,8 @@ public class XhtmlOptionsDialog extends OptionsDialogBase {
|
|||
|
||||
// Special content
|
||||
setControlEnabled("InlineCSS",!isLocked("css_inline"));
|
||||
setControlEnabled("EmbedImg",!isLocked("embed_img"));
|
||||
setControlEnabled("EmbedSVG",!isLocked("embed_svg"));
|
||||
|
||||
setControlEnabled("Notes",!isLocked("notes"));
|
||||
setControlEnabled("UseDublinCore",!isLocked("use_dublin_core"));
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
<prop oor:name="ConfigName" oor:type="xs:string" />
|
||||
<prop oor:name="ConvertToPx" oor:type="xs:boolean" />
|
||||
<prop oor:name="InlineCSS" oor:type="xs:boolean" />
|
||||
<prop oor:name="EmbedSVG" oor:type="xs:boolean" />
|
||||
<prop oor:name="EmbedImg" oor:type="xs:boolean" />
|
||||
<prop oor:name="Scaling" oor:type="xs:int" />
|
||||
<prop oor:name="ColumnScaling" oor:type="xs:int" />
|
||||
<prop oor:name="OriginalImageSize" oor:type="xs:boolean"/>
|
||||
|
|
|
@ -183,6 +183,12 @@
|
|||
<prop oor:name="InlineCSS" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="EmbedImg" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="EmbedSVG" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="UseSheetNamesAsHeadings" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
|
|
|
@ -131,3 +131,5 @@
|
|||
147.XhtmlOptions.MinimumLetterSpacing.HelpText=Minimum Letter Spacing
|
||||
148.XhtmlOptions.MinLetterSpacing.HelpText=Minimum Letter Spacing Value
|
||||
152.XhtmlOptions.InlineCSS.Label=Inline CSS
|
||||
156.XhtmlOptions.EmbedSVG.Label=Embed SVG
|
||||
160.XhtmlOptions.EmbedImg.Label=Embed images
|
||||
|
|
|
@ -131,3 +131,5 @@
|
|||
147.XhtmlOptions.MinimumLetterSpacing.HelpText=\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u043C\u0435\u0436\u0441\u0438\u043C\u0432\u043E\u043B\u044C\u043D\u043E\u0435 \u0440\u0430\u0441\u0441\u0442\u043E\u044F\u043D\u0438\u0435
|
||||
148.XhtmlOptions.MinLetterSpacing.HelpText=\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u043C\u0435\u0436\u0441\u0438\u043C\u0432\u043E\u043B\u044C\u043D\u043E\u0435 \u0440\u0430\u0441\u0441\u0442\u043E\u044F\u043D\u0438\u0435
|
||||
152.XhtmlOptions.InlineCSS.Label=Inline CSS
|
||||
156.XhtmlOptions.EmbedSVG.Label=Embed SVG
|
||||
160.XhtmlOptions.EmbedImg.Label=Embed images
|
||||
|
|
|
@ -68,6 +68,8 @@
|
|||
<dlg:text dlg:id="MinimumLetterSpacing" dlg:tab-index="29" dlg:left="9" dlg:top="63" dlg:width="138" dlg:height="12" dlg:help-text="&147.XhtmlOptions.MinimumLetterSpacing.HelpText" dlg:value="&146.XhtmlOptions.MinimumLetterSpacing.Label"/>
|
||||
<dlg:textfield dlg:id="MinLetterSpacing" dlg:tab-index="30" dlg:left="151" dlg:top="63" dlg:width="29" dlg:height="12" dlg:help-text="&148.XhtmlOptions.MinLetterSpacing.HelpText"/>
|
||||
<dlg:textfield dlg:id="PageBreakStyle" dlg:tab-index="31" dlg:left="90" dlg:top="2" dlg:width="235" dlg:height="13" dlg:help-text="&151.XhtmlOptions.PageBreakStyle.HelpText" dlg:value="&152.XhtmlOptions.PageBreakStyle.Text"/>
|
||||
<dlg:checkbox dlg:id="InlineCSS" dlg:tab-index="32" dlg:left="208" dlg:top="38" dlg:width="81" dlg:height="12" dlg:help-text="&151.XhtmlOptions.InlineCSS.HelpText" dlg:help-url="org.openoffice.da.writer2xhtml.oxt:OptionsNotes" dlg:value="&152.XhtmlOptions.InlineCSS.Label" dlg:checked="true"/>
|
||||
<dlg:checkbox dlg:id="InlineCSS" dlg:tab-index="32" dlg:left="209" dlg:top="38" dlg:width="81" dlg:height="12" dlg:help-text="&151.XhtmlOptions.InlineCSS.HelpText" dlg:help-url="org.openoffice.da.writer2xhtml.oxt:OptionsNotes" dlg:value="&152.XhtmlOptions.InlineCSS.Label" dlg:checked="true"/>
|
||||
<dlg:checkbox dlg:id="EmbedSVG" dlg:tab-index="33" dlg:left="208" dlg:top="58" dlg:width="81" dlg:height="12" dlg:help-text="&155.XhtmlOptions.EmbedSVG.HelpText" dlg:help-url="org.openoffice.da.writer2xhtml.oxt:OptionsNotes" dlg:value="&156.XhtmlOptions.EmbedSVG.Label" dlg:checked="true"/>
|
||||
<dlg:checkbox dlg:id="EmbedImg" dlg:tab-index="34" dlg:left="208" dlg:top="75" dlg:width="81" dlg:height="12" dlg:help-text="&159.XhtmlOptions.EmbedImg.HelpText" dlg:help-url="org.openoffice.da.writer2xhtml.oxt:OptionsNotes" dlg:value="&160.XhtmlOptions.EmbedImg.Label" dlg:checked="true"/>
|
||||
</dlg:bulletinboard>
|
||||
</dlg:window>
|
Loading…
Add table
Reference in a new issue