X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiSendto.cpp;h=0bfb1de465f0051536ce5a13dcabfa18f54c40df;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=5e29f9b2664d346ac204578515596f5edfb67851;hpb=cf7fdf78bb67cb3806de8e314e3ded889b2220c7;p=lyx.git diff --git a/src/frontends/qt4/GuiSendto.cpp b/src/frontends/qt4/GuiSendto.cpp index 5e29f9b266..0bfb1de465 100644 --- a/src/frontends/qt4/GuiSendto.cpp +++ b/src/frontends/qt4/GuiSendto.cpp @@ -4,7 +4,7 @@ * Licence details can be found in the file COPYING. * * \author Angus Leeming - * \author Jürgen Spitzmüller + * \author Jürgen Spitzmüller * * Full author contact details are available in file CREDITS. */ @@ -15,10 +15,8 @@ #include "qt_helpers.h" #include "Buffer.h" -#include "Converter.h" #include "Format.h" #include "FuncRequest.h" -#include "LyXRC.h" #include "support/qstring_helpers.h" #include "support/filetools.h" @@ -69,7 +67,7 @@ void GuiSendTo::changed_adaptor() void GuiSendTo::updateContents() { - all_formats_ = allFormats(); + all_formats_ = buffer().exportableFormats(false); // Save the current selection if any Format const * current_format = 0; @@ -141,7 +139,6 @@ bool GuiSendTo::isValid() bool GuiSendTo::initialiseParams(string const &) { format_ = 0; - command_ = toqstr(lyxrc.custom_export_command); paramsToDialog(format_, command_); return true; } @@ -165,59 +162,10 @@ void GuiSendTo::dispatchParams() dispatch(FuncRequest(getLfun(), data)); } -// FIXME: Move to Converters? -vector GuiSendTo::allFormats() const -{ - // What formats can we output natively? - vector exports; - exports.push_back("lyx"); - exports.push_back("text"); - - if (buffer().isLatex()) { - exports.push_back("latex"); - exports.push_back("pdflatex"); - } - else if (buffer().isDocBook()) - exports.push_back("docbook"); - else if (buffer().isLiterate()) - exports.push_back("literate"); - - // Loop over these native formats and ascertain what formats we - // can convert to - vector to; - - vector::const_iterator ex_it = exports.begin(); - vector::const_iterator ex_end = exports.end(); - for (; ex_it != ex_end; ++ex_it) { - // Start off with the native export format. - // "formats" is LyX's list of recognised formats - to.push_back(formats.getFormat(*ex_it)); - - Formats::const_iterator fo_it = formats.begin(); - Formats::const_iterator fo_end = formats.end(); - for (; fo_it != fo_end; ++fo_it) { - // we need to hide the default graphic export formats - // from the external menu, because we need them only - // for the internal lyx-view and external latex run - string const name = fo_it->name(); - if (name != "eps" && name != "xpm" && name != "png" && - theConverters().isReachable(*ex_it, name)) - to.push_back(&(*fo_it)); - } - } - - // Remove repeated formats. - sort(to.begin(), to.end()); - to.erase(unique(to.begin(), to.end()), to.end()); - - return to; -} - - Dialog * createGuiSendTo(GuiView & lv) { return new GuiSendTo(lv); } } // namespace frontend } // namespace lyx -#include "GuiSendto_moc.cpp" +#include "moc_GuiSendto.cpp"