X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCitation.h;h=417b46f518700d857066bba6b179c64388858e7d;hb=e4c46abeb7385960c9dd42494e3c7c1f3e699b56;hp=2762bfd9f2c964ed647a5cffe70362aa6d732e36;hpb=7287a259c5436b8f3f384c0d0bd7641a2f2601e9;p=lyx.git diff --git a/src/insets/InsetCitation.h b/src/insets/InsetCitation.h index 2762bfd9f2..417b46f518 100644 --- a/src/insets/InsetCitation.h +++ b/src/insets/InsetCitation.h @@ -15,8 +15,6 @@ #include "InsetCommand.h" -#include "Citation.h" - namespace lyx { ///////////////////////////////////////////////////////////////////////// @@ -31,6 +29,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 //@{ @@ -47,7 +50,8 @@ public: /// 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 +59,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 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; //@} @@ -70,10 +75,7 @@ public: //@{ /// static ParamInfo const & findInfo(std::string const &); - // FIXME This is the locus of the design problem we have. - // It really ought to do what default_cite_command() does, - // but to do that it needs to know what CiteEngine we are - // using. + /// static std::string defaultCommand() { return "cite"; } /// static bool isCompatibleCommand(std::string const & cmd); @@ -99,13 +101,13 @@ private: docstring screenLabel() const; //@} - /// we'll eventually want to be able to get info on this from the + /// 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) {}; + Cache() : recalculate(true) {} /// bool recalculate; ///