X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fformat.C;h=fa327785dadd188a85976ccb42f90777708a94f2;hb=ba62665f966508db5a4de6864f4aa7374c5a5356;hp=e51358df6dafb42da824ce405b231c1a1c952a57;hpb=b6e30400f512a894fc87052293a47f0e958d4fe6;p=lyx.git diff --git a/src/format.C b/src/format.C index e51358df6d..fa327785da 100644 --- a/src/format.C +++ b/src/format.C @@ -18,36 +18,38 @@ #include "gettext.h" #include "lyxsocket.h" +#include "frontends/Application.h" #include "frontends/Alert.h" //to be removed? #include "support/filetools.h" #include "support/lstrings.h" #include "support/os.h" -#include "support/path.h" #include "support/systemcall.h" #include -using lyx::support::bformat; -using lyx::support::compare_ascii_no_case; -using lyx::support::contains; -using lyx::support::libScriptSearch; -using lyx::support::makeDisplayPath; -using lyx::support::onlyFilename; -using lyx::support::onlyPath; -using lyx::support::Path; -using lyx::support::quoteName; -using lyx::support::subst; -using lyx::support::Systemcall; -using lyx::support::token; + +namespace lyx { + +using support::absolutePath; +using support::bformat; +using support::compare_ascii_no_case; +using support::contains; +using support::FileName; +using support::libScriptSearch; +using support::makeDisplayPath; +using support::onlyPath; +using support::quoteName; +using support::subst; +using support::Systemcall; +using support::token; using std::string; using std::distance; +namespace Alert = frontend::Alert; namespace fs = boost::filesystem; -namespace os = lyx::support::os; - -extern LyXServerSocket * lyxsocket; +namespace os = support::os; namespace { @@ -92,9 +94,12 @@ bool operator<(Format const & a, Format const & b) return compare_ascii_no_case(a.prettyname(), b.prettyname()) < 0; } + Format::Format(string const & n, string const & e, string const & p, - string const & s, string const & v, string const & ed) - : name_(n), extension_(e), prettyname_(p), shortcut_(s), viewer_(v), editor_(ed) + string const & s, string const & v, string const & ed, + int flags) + : name_(n), extension_(e), prettyname_(p), shortcut_(s), viewer_(v), + editor_(ed), flags_(flags) {} @@ -132,17 +137,17 @@ Format const * Formats::getFormat(string const & name) const } -string Formats::getFormatFromFile(string const & filename) const +string Formats::getFormatFromFile(FileName const & filename) const { if (filename.empty()) return string(); - string const format = lyx::support::getFormatFromContents(filename); + string const format = support::getFormatFromContents(filename); if (!format.empty()) return format; // try to find a format from the file extension. - string const ext(lyx::support::getExtension(filename)); + string const ext(support::getExtension(filename.absFilename())); if (!ext.empty()) { // this is ambigous if two formats have the same extension, // but better than nothing @@ -161,7 +166,7 @@ string Formats::getFormatFromFile(string const & filename) const namespace { -string fixCommand(string const & cmd, string const & ext, +string fixCommand(string const & cmd, string const & ext, os::auto_open_mode mode) { // configure.py says we do not want a viewer/editor @@ -173,7 +178,7 @@ string fixCommand(string const & cmd, string const & ext, return "auto"; // if configure.py found nothing, clear the command - if (token(cmd, ' ', 0) == "none") + if (token(cmd, ' ', 0) == "auto") return string(); // use the command found by configure.py @@ -208,22 +213,25 @@ int Formats::getNumber(string const & name) const void Formats::add(string const & name) { if (!getFormat(name)) - add(name, name, name, string(), string(), string()); + add(name, name, name, string(), string(), string(), + Format::document); } void Formats::add(string const & name, string const & extension, string const & prettyname, string const & shortcut, - string const & viewer, string const & editor) + string const & viewer, string const & editor, + int flags) { FormatList::iterator it = find_if(formatlist.begin(), formatlist.end(), FormatNamesEqual(name)); if (it == formatlist.end()) formatlist.push_back(Format(name, extension, prettyname, - shortcut, viewer, editor)); + shortcut, viewer, editor, flags)); else - *it = Format(name, extension, prettyname, shortcut, viewer, editor); + *it = Format(name, extension, prettyname, shortcut, viewer, + editor, flags); } @@ -254,13 +262,13 @@ void Formats::setViewer(string const & name, string const & command) } -bool Formats::view(Buffer const & buffer, string const & filename, +bool Formats::view(Buffer const & buffer, FileName const & filename, string const & format_name) const { - if (filename.empty() || !fs::exists(filename)) { + if (filename.empty() || !fs::exists(filename.toFilesystemEncoding())) { Alert::error(_("Cannot view file"), bformat(_("File does not exist: %1$s"), - filename)); + from_utf8(filename.absFilename()))); return false; } @@ -278,12 +286,12 @@ bool Formats::view(Buffer const & buffer, string const & filename, } // viewer is 'auto' if (format->viewer() == "auto") { - if (os::autoOpenFile(filename, os::VIEW)) + if (os::autoOpenFile(filename.absFilename(), os::VIEW)) return true; else { Alert::error(_("Cannot view file"), bformat(_("Auto-view file %1$s failed"), - filename)); + from_utf8(filename.absFilename()))); return false; } } @@ -304,14 +312,13 @@ bool Formats::view(Buffer const & buffer, string const & filename, if (!contains(command, token_from)) command += ' ' + token_from; - command = subst(command, token_from, - quoteName(onlyFilename(filename))); - command = subst(command, token_path, quoteName(onlyPath(filename))); - command = subst(command, token_socket, quoteName(lyxsocket->address())); + command = subst(command, token_from, quoteName(filename.toFilesystemEncoding())); + command = subst(command, token_path, quoteName(onlyPath(filename.toFilesystemEncoding()))); + command = subst(command, token_socket, quoteName(theLyXServerSocket().address())); lyxerr[Debug::FILES] << "Executing command: " << command << std::endl; - buffer.message(_("Executing command: ") + command); + // FIXME UNICODE utf8 can be wrong for files + buffer.message(_("Executing command: ") + from_utf8(command)); - Path p(onlyPath(filename)); Systemcall one; int const res = one.startscript(Systemcall::DontWait, command); @@ -325,13 +332,13 @@ bool Formats::view(Buffer const & buffer, string const & filename, } -bool Formats::edit(Buffer const & buffer, string const & filename, +bool Formats::edit(Buffer const & buffer, FileName const & filename, string const & format_name) const { - if (filename.empty() || !fs::exists(filename)) { + if (filename.empty() || !fs::exists(filename.toFilesystemEncoding())) { Alert::error(_("Cannot edit file"), bformat(_("File does not exist: %1$s"), - filename)); + from_utf8(filename.absFilename()))); return false; } @@ -349,12 +356,12 @@ bool Formats::edit(Buffer const & buffer, string const & filename, } // editor is 'auto' if (format->editor() == "auto") { - if (os::autoOpenFile(filename, os::EDIT)) + if (os::autoOpenFile(filename.absFilename(), os::EDIT)) return true; else { Alert::error(_("Cannot edit file"), bformat(_("Auto-edit file %1$s failed"), - filename)); + from_utf8(filename.absFilename()))); return false; } } @@ -364,14 +371,13 @@ bool Formats::edit(Buffer const & buffer, string const & filename, if (!contains(command, token_from)) command += ' ' + token_from; - command = subst(command, token_from, - quoteName(onlyFilename(filename))); - command = subst(command, token_path, quoteName(onlyPath(filename))); - command = subst(command, token_socket, quoteName(lyxsocket->address())); + command = subst(command, token_from, quoteName(filename.toFilesystemEncoding())); + command = subst(command, token_path, quoteName(onlyPath(filename.toFilesystemEncoding()))); + command = subst(command, token_socket, quoteName(theLyXServerSocket().address())); lyxerr[Debug::FILES] << "Executing command: " << command << std::endl; - buffer.message(_("Executing command: ") + command); + // FIXME UNICODE utf8 can be wrong for files + buffer.message(_("Executing command: ") + from_utf8(command)); - Path p(onlyPath(filename)); Systemcall one; int const res = one.startscript(Systemcall::DontWait, command); @@ -385,13 +391,13 @@ bool Formats::edit(Buffer const & buffer, string const & filename, } -string const Formats::prettyName(string const & name) const +docstring const Formats::prettyName(string const & name) const { Format const * format = getFormat(name); if (format) - return format->prettyname(); + return from_utf8(format->prettyname()); else - return name; + return from_utf8(name); } @@ -410,3 +416,6 @@ string const Formats::extension(string const & name) const Formats formats; Formats system_formats; + + +} // namespace lyx