]> git.lyx.org Git - lyx.git/blobdiff - src/ModuleList.cpp
Remove todo
[lyx.git] / src / ModuleList.cpp
index 258b71c585f9cff1159019ca8d5e17881363ca90..d1ff3bee0a368d5d23767bc1939eb676b16d51d7 100644 (file)
 #include "ModuleList.h"
 
 #include "support/debug.h"
+#include "LaTeXFeatures.h"
 #include "Lexer.h"
 
+#include "support/FileName.h"
 #include "support/filetools.h"
 #include "support/lstrings.h"
 
 #include <algorithm>
 #include <ostream>
        
-using std::endl;
-using std::map;
-using std::string;
-using std::vector;
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
-using support::FileName;
-using support::libFileSearch;
-using support::makeDisplayPath;
 
 //global variable: module list
 ModuleList moduleList;
 
 
+LyXModule::LyXModule(string const & n, string const & f, 
+                          string const & d, vector<string> const & p) : 
+       name(n), filename(f), description(d), packageList(p), checked(false)
+{}
+
+
+bool LyXModule::isAvailable() {
+       if (packageList.empty())
+               return true;
+       if (checked)
+               return available;
+       checked = true;
+       vector<string>::const_iterator it  = packageList.begin();
+       vector<string>::const_iterator end = packageList.end(); 
+       for (; it != end; ++it) {
+               if (!LaTeXFeatures::isAvailable(*it))
+                       available = false;
+                       return available;
+       }
+       available = true;
+       return available;
+}
+
+
 // used when sorting the module list.
 class ModuleSorter
 {
@@ -51,7 +72,7 @@ public:
 //Much of this is borrowed from TextClassList::read()
 bool ModuleList::load()
 {
-       support::FileName const real_file = libFileSearch("", "lyxmodules.lst");
+       FileName const real_file = libFileSearch("", "lyxmodules.lst");
        LYXERR(Debug::TCLASS, "Reading modules from `" << real_file << '\'');
 
        if (real_file.empty()) {
@@ -107,7 +128,7 @@ bool ModuleList::load()
                        vector<string> pkgs;
                        while (!packages.empty()) {
                                string p;
-                               packages = support::split(packages, p, ',');
+                               packages = split(packages, p, ',');
                                pkgs.push_back(p);
                        }
                        // This code is run when we have
@@ -119,7 +140,7 @@ bool ModuleList::load()
        LYXERR(Debug::TCLASS, "End of parsing of lyxmodules.lst");
 
        if (!moduleList.empty())
-               std::sort(moduleList.begin(), moduleList.end(), ModuleSorter());
+               sort(moduleList.begin(), moduleList.end(), ModuleSorter());
        return true;
 }
 
@@ -128,11 +149,7 @@ void ModuleList::addLayoutModule(string const & moduleName,
        string const & filename, string const & description,
        vector<string> const & pkgs)
 {
-       LyXModule lm;
-       lm.name = moduleName;
-       lm.filename = filename;
-       lm.description = description;
-       lm.packageList = pkgs;
+       LyXModule lm(moduleName, filename, description, pkgs);
        modlist_.push_back(lm);
 }