diff options
author | Eike Rathke <erack@redhat.com> | 2017-09-18 18:46:21 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-09-18 18:46:51 +0200 |
commit | 52a6c68fb2fc817fc58419835cca73f6cd20b8fe (patch) | |
tree | ca6ba42c9b5c0f02968bb57fbe8fea9c448d12ed | |
parent | b149201a076ed2d39fb95dd1c3d1367c9ef6924d (diff) |
Calc: support export to JPEG, just because we can.. tdf#108317 related
Change-Id: I7b78fe3efe97267eca7bf2f085d8375ba7b483ca
-rw-r--r-- | filter/Configuration_filter.mk | 1 | ||||
-rw-r--r-- | filter/source/config/fragments/filters/calc_jpg_Export.xcu | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/filter/Configuration_filter.mk b/filter/Configuration_filter.mk index 4406d197fa5b..7b39020f8e7a 100644 --- a/filter/Configuration_filter.mk +++ b/filter/Configuration_filter.mk @@ -801,6 +801,7 @@ $(eval $(call filter_Configuration_add_types,fcfg_langpack,fcfg_calcgraphics_typ )) $(eval $(call filter_Configuration_add_filters,fcfg_langpack,fcfg_calcgraphics_filters.xcu,filter/source/config/fragments/filters,\ + calc_jpg_Export \ calc_png_Export \ )) diff --git a/filter/source/config/fragments/filters/calc_jpg_Export.xcu b/filter/source/config/fragments/filters/calc_jpg_Export.xcu new file mode 100644 index 000000000000..80a72878f8b4 --- /dev/null +++ b/filter/source/config/fragments/filters/calc_jpg_Export.xcu @@ -0,0 +1,20 @@ +<!-- + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. +--> + <node oor:name="calc_jpg_Export" oor:op="replace"> + <prop oor:name="Flags"><value>EXPORT ALIEN 3RDPARTYFILTER SUPPORTSSELECTION</value></prop> + <prop oor:name="UIComponent"><value>com.sun.star.svtools.SvFilterOptionsDialog</value></prop> + <prop oor:name="FilterService"><value>com.sun.star.comp.GraphicExportFilter</value></prop> + <prop oor:name="UserData"><value></value></prop> + <prop oor:name="UIName"> + <value xml:lang="en-US">JPEG - Joint Photographic Experts Group</value> + </prop> + <prop oor:name="FileFormatVersion"><value>0</value></prop> + <prop oor:name="Type"><value>jpg_JPEG</value></prop> + <prop oor:name="TemplateName"/> + <prop oor:name="DocumentService"><value>com.sun.star.sheet.SpreadsheetDocument</value></prop> + </node> |