]> git.lyx.org Git - lyx.git/blobdiff - src/format.C
more cursor dispatch
[lyx.git] / src / format.C
index fd9a07e4a54577b2d9d4234a5cf97a187e21ef5b..e3a0b5a2af1656128070d07c6418e6c183b95d1c 100644 (file)
 #include "lyxrc.h"
 #include "debug.h"
 #include "gettext.h"
+#include "lyxsocket.h"
 
 #include "frontends/Alert.h" //to be removed?
 
 #include "support/filetools.h"
 #include "support/path.h"
 #include "support/systemcall.h"
-#include "support/lyxfunctional.h"
 
-using namespace lyx::support;
+using lyx::support::bformat;
+using lyx::support::compare_ascii_no_case;
+using lyx::support::contains;
+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 std::string;
+
+extern LyXServerSocket * lyxsocket;
 
 namespace {
 
 string const token_from("$$i");
 string const token_path("$$p");
+string const token_socket("$$a");
+
+
+class FormatNamesEqual : public std::unary_function<Format, bool> {
+public:
+       FormatNamesEqual(string const & name)
+               : name_(name) {}
+       bool operator()(Format const & f) const
+       {
+               return f.name() == name_;
+       }
+private:
+       string name_;
+};
 
 } //namespace anon
 
@@ -44,11 +69,8 @@ bool operator<(Format const & a, Format const & b)
 }
 
 Format::Format(string const & n, string const & e, string const & p,
-       string const & s, string const & v): name_(n),
-                                           extension_(e),
-                                           prettyname_(p),
-                                           shortcut_(s),
-                                           viewer_(v)
+              string const & s, string const & v)
+       : name_(n), extension_(e), prettyname_(p),shortcut_(s), viewer_(v)
 {}
 
 
@@ -78,7 +100,7 @@ Format const * Formats::getFormat(string const & name) const
 {
        FormatList::const_iterator cit =
                find_if(formatlist.begin(), formatlist.end(),
-                       lyx::compare_memfun(&Format::name, name));
+                       FormatNamesEqual(name));
        if (cit != formatlist.end())
                return &(*cit);
        else
@@ -90,9 +112,9 @@ int Formats::getNumber(string const & name) const
 {
        FormatList::const_iterator cit =
                find_if(formatlist.begin(), formatlist.end(),
-                       lyx::compare_memfun(&Format::name, name));
+                       FormatNamesEqual(name));
        if (cit != formatlist.end())
-               return cit - formatlist.begin();
+               return distance(formatlist.begin(), cit);
        else
                return -1;
 }
@@ -110,7 +132,7 @@ void Formats::add(string const & name, string const & extension,
 {
        FormatList::iterator it =
                find_if(formatlist.begin(), formatlist.end(),
-                       lyx::compare_memfun(&Format::name, name));
+                       FormatNamesEqual(name));
        if (it == formatlist.end())
                formatlist.push_back(Format(name, extension, prettyname,
                                            shortcut, ""));
@@ -125,7 +147,7 @@ void Formats::erase(string const & name)
 {
        FormatList::iterator it =
                find_if(formatlist.begin(), formatlist.end(),
-                       lyx::compare_memfun(&Format::name, name));
+                       FormatNamesEqual(name));
        if (it != formatlist.end())
                formatlist.erase(it);
 }
@@ -142,7 +164,7 @@ void Formats::setViewer(string const & name, string const & command)
        add(name);
        FormatList::iterator it =
                find_if(formatlist.begin(), formatlist.end(),
-                       lyx::compare_memfun(&Format::name, name));
+                       FormatNamesEqual(name));
        if (it != formatlist.end())
                it->setViewer(command);
 }
@@ -186,7 +208,7 @@ bool Formats::view(Buffer const & buffer, string const & filename,
        command = subst(command, token_from,
                        QuoteName(OnlyFilename(filename)));
        command = subst(command, token_path, QuoteName(OnlyPath(filename)));
-
+       command = subst(command, token_socket, QuoteName(lyxsocket->address()));
        lyxerr[Debug::FILES] << "Executing command: " << command << std::endl;
        buffer.message(_("Executing command: ") + command);