]> git.lyx.org Git - lyx.git/blobdiff - src/Format.cpp
cmake: remove 2.8 warning
[lyx.git] / src / Format.cpp
index 7d495b7aa91897b8fe4f56740e3c9a9df787399a..ec61b84387ea2a5c620f8d2e1ddf380ed13a0fd2 100644 (file)
@@ -25,6 +25,7 @@
 #include "support/os.h"
 #include "support/Systemcall.h"
 #include "support/textutils.h"
+#include "support/Translator.h"
 
 #include <algorithm>
 
@@ -260,27 +261,6 @@ void Formats::setEditor(string const & name, string const & command)
 }
 
 
-bool Formats::viewURL(docstring const & url) {
-       Format const * format = getFormat("html");
-       if (!format)
-               return false;
-
-       string command = libScriptSearch(format->viewer());
-
-       if (!contains(command, token_from_format))
-               command += ' ' + token_from_format;
-       command = subst(command, token_from_format, quoteName(to_utf8(url)));
-
-       LYXERR(Debug::FILES, "Executing command: " << command);
-
-       Systemcall one;
-       one.startscript(Systemcall::DontWait, command);
-
-       // we can't report any sort of error, since we aren't waiting
-       return true;
-}
-
-
 bool Formats::view(Buffer const & buffer, FileName const & filename,
                   string const & format_name) const
 {
@@ -381,7 +361,7 @@ bool Formats::edit(Buffer const & buffer, FileName const & filename,
                                prettyName(format_name)));
                return false;
        }
-       
+
        // editor is 'auto'
        if (format->editor() == "auto") {
                if (os::autoOpenFile(filename.absFileName(), os::EDIT))
@@ -434,8 +414,42 @@ string const Formats::extension(string const & name) const
 }
 
 
+namespace {
+typedef Translator<OutputParams::FLAVOR, string> FlavorTranslator;
+
+FlavorTranslator initFlavorTranslator()
+{
+       FlavorTranslator f(OutputParams::LATEX, "latex");
+       f.addPair(OutputParams::LUATEX, "luatex");
+       f.addPair(OutputParams::PDFLATEX, "pdflatex");
+       f.addPair(OutputParams::XETEX, "xetex");
+       f.addPair(OutputParams::XML, "docbook-xml");
+       f.addPair(OutputParams::HTML, "xhtml");
+       f.addPair(OutputParams::TEXT, "text");
+       return f;
+}
+
+
+FlavorTranslator const & flavorTranslator()
+{
+       static FlavorTranslator translator = initFlavorTranslator();
+       return translator;
+}
+}
+
+
+std::string flavor2format(OutputParams::FLAVOR flavor)
+{
+       return flavorTranslator().find(flavor);
+}
 
 
+/* Not currently needed, but I'll leave the code in case it is.
+OutputParams::FLAVOR format2flavor(std::string fmt)
+{
+       return flavorTranslator().find(fmt);
+} */
+
 Formats formats;
 
 Formats system_formats;