]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.h
Fix bug #10901.
[lyx.git] / src / insets / InsetCitation.h
index 40926b310a3330ec27522826c9fe8c24885116c1..a8e9e1853d9fc797b2715b4c41a49e093f8f527e 100644 (file)
@@ -14,6 +14,7 @@
 #define INSET_CITATION_H
 
 #include "InsetCommand.h"
+#include "Citation.h"
 
 namespace lyx {
 
@@ -63,12 +64,10 @@ public:
        ///
        void forOutliner(docstring &, size_t const, bool const) const;
        ///
-       void validate(LaTeXFeatures &) const {}
-       ///
        void updateBuffer(ParIterator const & it, UpdateType);
        ///
        void addToToc(DocIterator const & di, bool output_active,
-                                 UpdateType utype) const;
+                                 UpdateType utype, TocBackend & backend) const;
        ///
        std::string contextMenuName() const;
        //@}
@@ -82,6 +81,15 @@ public:
        ///
        static bool isCompatibleCommand(std::string const &);
        //@}
+       ///
+       void redoLabel() { cache.recalculate = true; }
+       ///
+       CitationStyle getCitationStyle(BufferParams const & bp, std::string const & input,
+                                      std::vector<CitationStyle> const & valid_styles) const;
+       ///
+       std::map<docstring, docstring> getQualifiedLists(docstring const p) const;
+       ///
+       static bool last_literal;
 
 private:
        /// tries to make a pretty label and makes a basic one if not
@@ -103,10 +111,6 @@ private:
        docstring screenLabel() const;
        //@}
 
-       /// we'll eventually want to be able to get info on this from the
-       /// various CiteEngines
-       static ParamInfo param_info_;
-
        ///
        struct Cache {
                Cache() : recalculate(true) {}