X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCitation.h;h=b2a738cd9e10af24a4e95ae91e55d18d0eef5b69;hb=2d48072e664099385b2442f7166b3c57129799bb;hp=2e78e01f4ec08801f9061213166dd6a30b8c1d42;hpb=84c5e67e072fa091ffb8ecd5ae14145dd3e5b3b5;p=lyx.git diff --git a/src/insets/InsetCitation.h b/src/insets/InsetCitation.h index 2e78e01f4e..b2a738cd9e 100644 --- a/src/insets/InsetCitation.h +++ b/src/insets/InsetCitation.h @@ -14,6 +14,7 @@ #define INSET_CITATION_H #include "InsetCommand.h" +#include "Citation.h" namespace lyx { @@ -46,6 +47,8 @@ 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; @@ -59,15 +62,16 @@ public: /// void toString(odocstream &) const; /// - void forToc(docstring &, size_t) const; - /// - void validate(LaTeXFeatures &) const {} + void forOutliner(docstring &, size_t const, bool const) const; /// - void updateBuffer(ParIterator const & it, UpdateType); + void updateBuffer(ParIterator const & it, UpdateType, bool const deleted = false); /// - void addToToc(DocIterator const & di, bool output_active) const; + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype, TocBackend & backend) const; /// std::string contextMenuName() const; + /// + bool forceLTR(OutputParams const &) const; //@} /// \name Static public methods obligated for InsetCommand derived classes @@ -77,8 +81,19 @@ public: /// static std::string defaultCommand() { return "cite"; } /// - static bool isCompatibleCommand(std::string const & cmd); + static bool isCompatibleCommand(std::string const &); //@} + /// + typedef std::vector> QualifiedList; + /// + void redoLabel() { cache.recalculate = true; } + /// + CitationStyle getCitationStyle(BufferParams const & bp, std::string const & input, + std::vector const & valid_styles) const; + /// + QualifiedList getQualifiedLists(docstring const & p) const; + /// + static bool last_literal; private: /// tries to make a pretty label and makes a basic one if not @@ -100,10 +115,6 @@ private: docstring screenLabel() const; //@} - /// 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) {}