office-gobmx/filter
Maxim Monastirsky 7722a5906d fdo#68099 Move pdf viewer call to GUI related code
This change fixes two bugs:
1) In it's old location at PDFFilter::implExport, the pdf viewer is called
*before* the final file is actually written. It causes a problem under
Windows, because we use ShellExecute function which fails if the file
doesn't exist. Calling a function blocks execution, so we have no chance
to write the file before that function fails. (fdo#68099)
2) Being a part of the saving/filter code means that the pdf viewer will
open even when converting to a pdf in headless mode. It's definitely not
something that we want to happen.

Change-Id: I1a6f70ec76100ac9e008869aa57ad738ced3ab6c
Reviewed-on: https://gerrit.libreoffice.org/6565
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-11-04 07:52:14 -06:00
..
inc
qa
source fdo#68099 Move pdf viewer call to GUI related code 2013-11-04 07:52:14 -06:00
uiconfig/ui
AllLangResTarget_eps.mk
AllLangResTarget_flash.mk
AllLangResTarget_pdffilter.mk
AllLangResTarget_t602filter.mk
AllLangResTarget_xsltdlg.mk
Configuration_filter.mk filter: define filter_XcuResTarget_get_clean_target 2013-11-04 13:19:55 +01:00
CppunitTest_filter_pict_test.mk
CppunitTest_filter_tga_test.mk
CppunitTest_filter_tiff_test.mk
CustomTarget_svg.mk
Executable_svg2odf.mk
JunitTest_filter_complex.mk
Library_egi.mk
Library_eme.mk
Library_epb.mk
Library_epg.mk
Library_epp.mk
Library_eps.mk
Library_ept.mk
Library_era.mk
Library_eti.mk
Library_exp.mk
Library_filterconfig.mk
Library_flash.mk
Library_graphicfilter.mk
Library_icd.mk
Library_icg.mk
Library_idx.mk
Library_ime.mk
Library_ipb.mk
Library_ipd.mk
Library_ips.mk
Library_ipt.mk
Library_ipx.mk
Library_ira.mk
Library_itg.mk
Library_iti.mk
Library_msfilter.mk
Library_odfflatxml.mk
Library_pdffilter.mk
Library_placeware.mk
Library_svgfilter.mk
Library_t602filter.mk
Library_textfd.mk
Library_xmlfa.mk
Library_xmlfd.mk
Library_xsltdlg.mk
Library_xsltfilter.mk
Makefile
Module_filter.mk
Package_docbook.mk
Package_xhtml.mk
Package_xslt.mk
README
UIConfig_xsltdlg.mk

Filter registration and some simple filters (also descriptions).

Desperate splitting of code into small shared libraries for historical
reasons presumably (OS/2 and Windows 3.x). The libraries produced from
the code in each subdirectory of filter/source/graphicfilter are
graphic format import or export filters. But they don't have uniform
API. Some have either an GraphicImport or GraphicExport entry point,
and are loaded and used in a uniform fashion from code in
svtools/source/filter/filter.cxx. Others have different API and are
loaded from other places. For instance "icgm" has ImportCGM, and is
loaded and used by sd/source/filter/cgm/sdcgmfilter.cxx (!).