X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetIndex.h;h=6a74b796016404b68f9b7a29ac7643c66c8d8374;hb=f352a375;hp=83bf4beaa8cc39b113d537e09bacdff1f66519b0;hpb=0bd5c5fca866a53c4bf319b41afbb9b655d8e108;p=lyx.git diff --git a/src/insets/InsetIndex.h b/src/insets/InsetIndex.h index 83bf4beaa8..6a74b79601 100644 --- a/src/insets/InsetIndex.h +++ b/src/insets/InsetIndex.h @@ -13,75 +13,126 @@ #define INSET_INDEX_H -#include "InsetCollapsable.h" +#include "InsetCollapsible.h" #include "InsetCommand.h" namespace lyx { +class IndexEntry; + class InsetIndexParams { public: + enum PageRange { + None, + Start, + End + }; /// explicit InsetIndexParams(docstring const & b = docstring()) - : index(b) {} + : index(b), range(None), pagefmt("default") {} /// void write(std::ostream & os) const; /// void read(Lexer & lex); /// docstring index; + /// + PageRange range; + /// + std::string pagefmt; }; /** Used to insert index labels */ -class InsetIndex : public InsetCollapsable { +class InsetIndex : public InsetCollapsible { public: /// - InsetIndex(Buffer const &, InsetIndexParams const &); + InsetIndex(Buffer *, InsetIndexParams const &); /// static std::string params2string(InsetIndexParams const &); /// static void string2params(std::string const &, InsetIndexParams &); private: /// - bool hasSettings() const; + bool hasSettings() const override; /// - InsetCode lyxCode() const { return INDEX_CODE; } + InsetCode lyxCode() const override { return INDEX_CODE; } /// - docstring name() const { return from_ascii("Index"); } + docstring layoutName() const override { return from_ascii("Index"); } /// - void write(std::ostream & os) const; + ColorCode labelColor() const override; /// - void read(Lexer & lex); + void write(std::ostream & os) const override; /// - int docbook(odocstream &, OutputParams const &) const; + void read(Lexer & lex) override; /// - int latex(odocstream &, OutputParams const &) const; + void docbook(XMLStream &, OutputParams const &) const override; /// - bool showInsetDialog(BufferView *) const; + docstring xhtml(XMLStream &, OutputParams const &) const override; /// - bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; + void latex(otexstream &, OutputParams const &) const override; /// - void doDispatch(Cursor & cur, FuncRequest & cmd); - /// should paragraph indendation be omitted in any case? - bool neverIndent() const { return true; } + void processLatexSorting(otexstream &, OutputParams const &, + docstring const, docstring const) const; /// - void addToToc(DocIterator const &); + bool showInsetDialog(BufferView *) const override; /// - docstring const buttonLabel(BufferView const & bv) const; + bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override; /// - docstring toolTip(BufferView const & bv, int x, int y) const; + void doDispatch(Cursor & cur, FuncRequest & cmd) override; + /// should paragraph indentation be omitted in any case? + bool neverIndent() const override { return true; } + /// + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype, TocBackend & backend) const override; + /// + docstring toolTip(BufferView const & bv, int x, int y) const override; + /// + docstring const buttonLabel(BufferView const & bv) const override; /// Updates needed features for this inset. - void validate(LaTeXFeatures & features) const; + void validate(LaTeXFeatures & features) const override; + /// + void getSortkey(otexstream &, OutputParams const &) const; + /// + docstring getSortkeyAsText(OutputParams const &) const; + /// + void getSubentries(otexstream &, OutputParams const &) const; + /// + std::vector getSubentriesAsText(OutputParams const &) const; + /// + docstring getMainSubentryAsText(OutputParams const & runparams) const; + /// + void getSeeRefs(otexstream &, OutputParams const &) const; + /// + docstring getSeeAsText(OutputParams const & runparams) const; + /// + std::vector getSeeAlsoesAsText(OutputParams const & runparams) const; + /// + bool hasSubentries() const; /// - docstring contextMenu(BufferView const & bv, int x, int y) const; + bool hasSeeRef() const; /// - Inset * clone() const { return new InsetIndex(*this); } + bool hasSortKey() const; + /// + bool macrosPossible(std::string const type) const; + /// + std::string contextMenuName() const override; + /// + std::string contextMenu(BufferView const &, int, int) const override; + /// + Inset * clone() const override { return new InsetIndex(*this); } + /// Is the content of this inset part of the immediate text sequence? + bool isPartOfTextSequence() const override { return false; } + /// + bool insetAllowed(InsetCode code) const override; /// friend class InsetIndexParams; /// + friend class IndexEntry; + /// InsetIndexParams params_; }; @@ -89,37 +140,54 @@ private: class InsetPrintIndex : public InsetCommand { public: /// - InsetPrintIndex(InsetCommandParams const &); - /// - InsetCode lyxCode() const { return INDEX_PRINT_CODE; } + InsetPrintIndex(Buffer * buf, InsetCommandParams const &); + /// \name Public functions inherited from Inset class + //@{ /// - static ParamInfo const & findInfo(std::string const &); + InsetCode lyxCode() const override { return INDEX_PRINT_CODE; } /// - static std::string defaultCommand() { return "printindex"; }; + void latex(otexstream &, OutputParams const &) const override; /// - static bool isCompatibleCommand(std::string const & s) - { return s == "printindex" || s == "printsubindex"; } + docstring xhtml(XMLStream &, OutputParams const &) const override; /// - int latex(odocstream &, OutputParams const &) const; + void doDispatch(Cursor & cur, FuncRequest & cmd) override; /// - void doDispatch(Cursor & cur, FuncRequest & cmd); + bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override; /// - bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; + void updateBuffer(ParIterator const & it, UpdateType, bool const deleted = false) override; /// - virtual docstring contextMenu(BufferView const & bv, int x, int y) const; -private: + std::string contextMenuName() const override; /// Updates needed features for this inset. - void validate(LaTeXFeatures & features) const; + void validate(LaTeXFeatures & features) const override; + /// + bool hasSettings() const override; /// - bool hasSettings() const; + int rowFlags() const override { return Display; } + //@} + /// \name Static public methods obligated for InsetCommand derived classes + //@{ + /// + static ParamInfo const & findInfo(std::string const &); /// - DisplayType display() const { return AlignCenter; } + static std::string defaultCommand() { return "printindex"; } /// - docstring screenLabel() const; + static bool isCompatibleCommand(std::string const & s); + //@} + +private: + /// \name Private functions inherited from Inset class + //@{ + /// + Inset * clone() const override { return new InsetPrintIndex(*this); } + //@} + + /// \name Private functions inherited from InsetCommand class + //@{ /// - Inset * clone() const { return new InsetPrintIndex(*this); } + docstring screenLabel() const override; + //@} };