]> git.lyx.org Git - lyx.git/blobdiff - src/CiteEnginesList.h
Fix text direction issue for InsetInfo in RTL context
[lyx.git] / src / CiteEnginesList.h
index 42264863c50e359b5f786ad83beb0f349098261b..2f419b4bfe1e7ef9fac35b15db013da21a3b80fe 100644 (file)
@@ -22,8 +22,7 @@ namespace lyx {
 
 /**
  *  This class represents a particular LyX "cite engine", which defines the features
- * of a particular citation backend such as natbib or biblatex. In that sense, it is more like
- *  a LaTeX package, where a layout file corresponds to a LaTeX class.
+ *  of a particular citation backend such as natbib or biblatex.
  *
  *  In general, a given cite engine can be used with any document class. That said,
  *  one cite engine may `require' another, or it may `exclude' some other cite engine.
@@ -54,9 +53,7 @@ public:
                      std::string const & cfm,
                      std::vector<std::string> const & defaultbiblios,
                      std::string const & description,
-                     std::vector<std::string> const & packagelist,
-                     std::vector<std::string> const & requires,
-                     std::vector<std::string> const & excludes);
+                     std::vector<std::string> const & packagelist);
        /// whether the required packages are available
        bool isAvailable() const;
        /// the missing prerequisites, if any
@@ -83,18 +80,7 @@ public:
        std::vector<std::string> const & getPackageList() const
                { return package_list_; }
        ///
-       std::vector<std::string> const & getRequiredEngines() const
-               { return required_engines_; }
-       /// Engines this one excludes: the list should be treated disjunctively
-       std::vector<std::string> const & getExcludedEngines() const
-               { return excluded_engines_; }
-       /// \return true if the engine is compatible with this one, i.e.,
-       /// it does not exclude us and we do not exclude it.
-       /// this will also return true if cename is unknown and we do not
-       /// exclude it, since in that case we cannot check its exclusions.
-       bool isCompatible(std::string const & cename) const;
-       ///
-       static bool areCompatible(std::string const & eng1, std::string const & eng2);
+       bool requires(std::string const p) const;
 private:
        /// what appears in the ui
        std::string name_;
@@ -113,12 +99,8 @@ private:
        std::string description_;
        /// the LaTeX packages on which this depends, if any
        std::vector<std::string> package_list_;
-       /// Engines this one requires: at least one
-       std::vector<std::string> required_engines_;
-       /// Engines this one excludes: none of these
-       std::vector<std::string> excluded_engines_;
        // these are mutable because they are used to cache the results
-       // or an otherwise const operation.
+       // of an otherwise const operation.
        ///
        mutable bool checked_;
        ///
@@ -167,12 +149,11 @@ public:
        void addCiteEngine(std::string const &, std::string const &,
                std::vector<std::string> const &, std::string const &,
                std::vector<std::string> const &, std::string const &,
-               std::vector<std::string> const &, std::vector<std::string> const &,
                std::vector<std::string> const &);
        ///
        std::vector<LyXCiteEngine> englist_;
 };
 
 extern CiteEnginesList theCiteEnginesList;
-}
+} // namespace lyx
 #endif