]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.h
Minor string fixes
[lyx.git] / src / insets / InsetCitation.h
index 0cdde7b2ee7ece7666fcaa85ffcece71dc95a36c..cde7bd126ce511f0475029944020dd40e84ae208 100644 (file)
@@ -14,7 +14,6 @@
 #define INSET_CITATION_H
 
 #include "InsetCommand.h"
-
 #include "Citation.h"
 
 namespace lyx {
@@ -31,6 +30,11 @@ class InsetCitation : public InsetCommand
 public:
        ///
        InsetCitation(Buffer * buf, InsetCommandParams const &);
+       ///
+       ~InsetCitation();
+
+       ///
+       bool addKey(std::string const & key);
 
        /// \name Public functions inherited from Inset class
        //@{
@@ -43,11 +47,14 @@ public:
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+       ///
        InsetCode lyxCode() const { return CITE_CODE; }
        ///
        void latex(otexstream &, OutputParams const &) const;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
@@ -55,13 +62,14 @@ public:
        ///
        void toString(odocstream &) const;
        ///
-       void forToc(docstring &, size_t) const;
+       void forOutliner(docstring &, size_t const, bool const) const;
        ///
        void validate(LaTeXFeatures &) const {}
        ///
        void updateBuffer(ParIterator const & it, UpdateType);
        ///
-       void addToToc(DocIterator const &) const;
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype) const;
        ///
        std::string contextMenuName() const;
        //@}
@@ -73,8 +81,11 @@ public:
        ///
        static std::string defaultCommand() { return "cite"; }
        ///
-       static bool isCompatibleCommand(std::string const & cmd);
+       static bool isCompatibleCommand(std::string const &);
        //@}
+       ///
+       CitationStyle getCitationStyle(BufferParams const & bp, std::string const & input,
+                                      std::vector<CitationStyle> const & valid_styles) const;
 
 private:
        /// tries to make a pretty label and makes a basic one if not
@@ -102,7 +113,7 @@ private:
 
        ///
        struct Cache {
-               Cache() : recalculate(true) {};
+               Cache() : recalculate(true) {}
                ///
                bool recalculate;
                ///