]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
* BufferParams:
[lyx.git] / src / insets / insetcite.h
index b66947db36859e51af9cbd933328f773f9c264fe..36b083fdf2dd040835a9f3731ec20468fd18361f 100644 (file)
 
 
 #include "insetcommand.h"
-#include "bufferparams.h"
+
+#include "frontends/controllers/biblio.h"
+
+
+namespace lyx {
 
 
 /** Used to insert citations
@@ -25,21 +29,22 @@ public:
        ///
        InsetCitation(InsetCommandParams const &);
        ///
-       lyx::docstring const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetBase::Code lyxCode() const { return InsetBase::CITE_CODE; }
        ///
-       int plaintext(Buffer const &, lyx::odocstream &, OutputParams const &) const;
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
        ///
-       int latex(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       int plaintext(Buffer const &, odocstream &,
+                     OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const &) const;
        /// the string that is passed to the TOC
-       virtual int textString(Buffer const &, lyx::odocstream &,
+       virtual int textString(Buffer const &, odocstream &,
                OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const;
@@ -53,23 +58,26 @@ private:
        }
 
        /// This function does the donkey work of creating the pretty label
-       lyx::docstring const generateLabel(Buffer const &) const;
+       docstring const generateLabel(Buffer const &) const;
 
        class Cache {
        public:
                ///
-               Cache() : engine(lyx::biblio::ENGINE_BASIC) {}
+               Cache() : engine(biblio::ENGINE_BASIC), params("cite") {}
                ///
-               lyx::biblio::CiteEngine engine;
+               biblio::CiteEngine engine;
                ///
                InsetCommandParams params;
                ///
-               lyx::docstring generated_label;
+               docstring generated_label;
                ///
-               lyx::docstring screen_label;
+               docstring screen_label;
        };
        ///
        mutable Cache cache;
 };
 
+
+} // namespace lyx
+
 #endif // INSET_CITE_H