X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCitation.h;h=a8e9e1853d9fc797b2715b4c41a49e093f8f527e;hb=9762ba5d388e8a81a6e58c464b635ca4cf48cbfa;hp=64996e7403839ac2d907f50cc1d7291e59f954f0;hpb=caa4e94bf02b9d3131bc280390fae44683fd5e9a;p=lyx.git diff --git a/src/insets/InsetCitation.h b/src/insets/InsetCitation.h index 64996e7403..a8e9e1853d 100644 --- a/src/insets/InsetCitation.h +++ b/src/insets/InsetCitation.h @@ -14,10 +14,7 @@ #define INSET_CITATION_H #include "InsetCommand.h" -#include "InsetCode.h" - -#include "BiblioInfo.h" - +#include "Citation.h" namespace lyx { @@ -32,67 +29,93 @@ class InsetCitation : public InsetCommand { public: /// - explicit InsetCitation(Buffer * buf, InsetCommandParams const &); + InsetCitation(Buffer * buf, InsetCommandParams const &); /// - bool isLabeled() const { return true; } + ~InsetCitation(); + /// - docstring screenLabel() const; + bool addKey(std::string const & key); + + /// \name Public functions inherited from Inset class + //@{ + /// + bool isLabeled() const { return true; } /// bool hasSettings() const { return true; } /// docstring toolTip(BufferView const & bv, int x, int y) const; /// + void doDispatch(Cursor & cur, FuncRequest & cmd); + /// + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const; + /// 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; - /// the string that is passed to the TOC - void tocString(odocstream &) const; /// - void validate(LaTeXFeatures &) const; + void toString(odocstream &) const; + /// + void forOutliner(docstring &, size_t const, bool const) const; /// - void updateLabels(ParIterator const & it, UpdateType); + void updateBuffer(ParIterator const & it, UpdateType); /// - void addToToc(DocIterator const &); + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype, TocBackend & backend) 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); + static bool isCompatibleCommand(std::string const &); + //@} /// - virtual docstring contextMenu(BufferView const & bv, int x, int y) const; -private: + void redoLabel() { cache.recalculate = true; } /// - Inset * clone() const { return new InsetCitation(*this); } + CitationStyle getCitationStyle(BufferParams const & bp, std::string const & input, + std::vector const & valid_styles) const; + /// + std::map getQualifiedLists(docstring const p) const; + /// + static bool last_literal; + +private: /// tries to make a pretty label and makes a basic one if not docstring generateLabel(bool for_xhtml = false) const; /// makes a pretty label docstring complexLabel(bool for_xhtml = false) const; /// makes a very basic label, in case we can't make a pretty one docstring basicLabel(bool for_xhtml = false) const; - /// we'll eventually want to be able to get info on this from the - /// various CiteEngines - static ParamInfo param_info_; + /// \name Private functions inherited from Inset class + //@{ /// - class Cache { - public: - /// - Cache() : engine(ENGINE_BASIC), params(CITE_CODE) {} - /// - CiteEngine engine; + Inset * clone() const { return new InsetCitation(*this); } + //@} + + /// \name Private functions inherited from InsetCommand class + //@{ + /// + docstring screenLabel() const; + //@} + + /// + struct Cache { + Cache() : recalculate(true) {} /// - InsetCommandParams params; + bool recalculate; /// docstring generated_label; /// @@ -102,6 +125,7 @@ private: mutable Cache cache; }; + } // namespace lyx #endif // INSET_CITATION_H