X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCitation.h;h=417b46f518700d857066bba6b179c64388858e7d;hb=e4c46abeb7385960c9dd42494e3c7c1f3e699b56;hp=a0845c639b18bdfc275909318b1a71aafcd4ac82;hpb=c75d667e788bbb43f98698217afacc107b73d353;p=lyx.git diff --git a/src/insets/InsetCitation.h b/src/insets/InsetCitation.h index a0845c639b..417b46f518 100644 --- a/src/insets/InsetCitation.h +++ b/src/insets/InsetCitation.h @@ -14,10 +14,6 @@ #define INSET_CITATION_H #include "InsetCommand.h" -#include "InsetCode.h" - -#include "BiblioInfo.h" - namespace lyx { @@ -33,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 //@{ @@ -43,35 +44,38 @@ public: /// docstring toolTip(BufferView const & bv, int x, int y) const; /// + void doDispatch(Cursor & cur, FuncRequest & cmd); + /// InsetCode lyxCode() const { return CITE_CODE; } /// - int latex(odocstream &, OutputParams const &) const; + 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; /// docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - void tocString(odocstream &) const; + void toString(odocstream &) 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 &); + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype) const; /// - docstring contextMenu(BufferView const & bv, int x, int y) const; + std::string contextMenuName() const; //@} /// \name Static public methods obligated for InsetCommand derived classes //@{ /// 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); @@ -97,19 +101,15 @@ 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_; /// - class Cache { - public: - /// - Cache() : engine(ENGINE_BASIC), params(CITE_CODE) {} - /// - CiteEngine engine; + struct Cache { + Cache() : recalculate(true) {} /// - InsetCommandParams params; + bool recalculate; /// docstring generated_label; ///