X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fexporter.C;h=2f3ee4068372b1b86b5b266b16af9f29aca4c279;hb=f268743f8c014ef2dadd260fd1a3873cb1d2038b;hp=e32a451926d200590674b73bb9412ef06f2a72ea;hpb=e9d6c8c04c1446e681395902a8b429ab0c0f39de;p=lyx.git diff --git a/src/exporter.C b/src/exporter.C index e32a451926..2f3ee40683 100644 --- a/src/exporter.C +++ b/src/exporter.C @@ -4,48 +4,57 @@ * Licence details can be found in the file COPYING. * * \author unknown + * \author Alfredo Braunstein + * \author Lars Gullik Bjønnes + * \author Jean Marc Lasgouttes + * \author Angus Leeming + * \author John Levon + * \author André Pönitz * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #include #include "exporter.h" #include "buffer.h" -#include "lyx_cb.h" //ShowMessage() +#include "buffer_funcs.h" #include "support/filetools.h" #include "lyxrc.h" #include "converter.h" #include "format.h" #include "frontends/Alert.h" #include "gettext.h" -#include "BufferView.h" #include +using namespace lyx::support; + using std::vector; using std::find; + +namespace { + +vector const Backends(Buffer const & buffer) +{ + vector v; + if (buffer.params.getLyXTextClass().isTeXClassAvailable()) + v.push_back(BufferFormat(buffer)); + v.push_back("text"); + return v; +} + +} //namespace anon + + bool Exporter::Export(Buffer * buffer, string const & format, bool put_in_tempdir, string & result_file) { - // There are so many different places that this function can be called - // from that the removal of auto insets is best done here. This ensures - // we always have a clean buffer for inserting errors found during export. - BufferView * bv = buffer->getUser(); - if (bv) { - // Remove all error insets - if (bv->removeAutoInsets()) { -#warning repaint() or update() or nothing ? - bv->repaint(); - bv->fitCursor(); - } - } - string backend_format; LatexRunParams runparams; runparams.flavor = LatexRunParams::LATEX; - vector backends = Backends(buffer); + vector backends = Backends(*buffer); if (find(backends.begin(), backends.end(), format) == backends.end()) { for (vector::const_iterator it = backends.begin(); it != backends.end(); ++it) { @@ -103,11 +112,10 @@ bool Exporter::Export(Buffer * buffer, string const & format, return false; if (!put_in_tempdir) - ShowMessage(buffer, - _("Document exported as ") - + formats.prettyName(format) - + _(" to file `") - + MakeDisplayPath(result_file) +'\''); + buffer->message(_("Document exported as ") + + formats.prettyName(format) + + _(" to file `") + + MakeDisplayPath(result_file) +'\''); return true; } @@ -125,11 +133,11 @@ bool Exporter::Preview(Buffer * buffer, string const & format) string result_file; if (!Export(buffer, format, true, result_file)) return false; - return formats.view(buffer, result_file, format); + return formats.view(*buffer, result_file, format); } -bool Exporter::IsExportable(Buffer const * buffer, string const & format) +bool Exporter::IsExportable(Buffer const & buffer, string const & format) { vector backends = Backends(buffer); for (vector::const_iterator it = backends.begin(); @@ -141,7 +149,7 @@ bool Exporter::IsExportable(Buffer const * buffer, string const & format) vector const -Exporter::GetExportableFormats(Buffer const * buffer, bool only_viewable) +Exporter::GetExportableFormats(Buffer const & buffer, bool only_viewable) { vector backends = Backends(buffer); vector result = @@ -154,26 +162,3 @@ Exporter::GetExportableFormats(Buffer const * buffer, bool only_viewable) } return result; } - - -string const Exporter::BufferFormat(Buffer const * buffer) -{ - if (buffer->isLinuxDoc()) - return "linuxdoc"; - else if (buffer->isDocBook()) - return "docbook"; - else if (buffer->isLiterate()) - return "literate"; - else - return "latex"; -} - - -vector const Exporter::Backends(Buffer const * buffer) -{ - vector v; - if (buffer->params.getLyXTextClass().isTeXClassAvailable()) - v.push_back(BufferFormat(buffer)); - v.push_back("text"); - return v; -}