]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetIndex.h
Indicate see[also] refs in label and outliner
[features.git] / src / insets / InsetIndex.h
index c66be3004913b67d37f753923ba8f5bed1c314c6..a89a684974fa39e1ec9d4df81a44bc54981884b3 100644 (file)
 #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 &);
+       ///
+       const InsetIndexParams& params() const { return params_; }
+       ///
+       int rowFlags() const override { return CanBreakBefore | CanBreakAfter; }
 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"); }
        ///
-       ColorCode labelColor() const;
+       ColorCode labelColor() const override;
        ///
-       void write(std::ostream & os) const;
+       void write(std::ostream & os) const override;
        ///
-       void read(Lexer & lex);
+       void read(Lexer & lex) override;
+       ///
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
-       /// At the moment, this does nothing. See development/HTML.notes
-       /// for some remarks on what could be done.
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const override;
        ///
-       bool showInsetDialog(BufferView *) const;
+       void processLatexSorting(otexstream &, OutputParams const &,
+                                docstring const, docstring const) const;
        ///
-       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
+       bool showInsetDialog(BufferView *) const override;
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
-       /// should paragraph indendation be omitted in any case?
-       bool neverIndent() const { return true; }
+       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override;
        ///
-       void addToToc(DocIterator const &);
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
+       /// should paragraph indentation be omitted in any case?
+       bool neverIndent() const override { return true; }
        ///
-       docstring const buttonLabel(BufferView const & bv) const;
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype, TocBackend & backend) const override;
        ///
-       docstring toolTip(BufferView const & bv, int x, int y) const;
+       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 emptySubentriesWarning(docstring const & mainentry) const;
+       ///
+       void getSubentries(otexstream &, OutputParams const &, docstring const &) const;
+       ///
+       std::vector<docstring> getSubentriesAsText(OutputParams const &,
+                                                  bool const asLabel = false) const;
+       ///
+       docstring getMainSubentryAsText(OutputParams const & runparams) const;
+       ///
+       void getSeeRefs(otexstream &, OutputParams const &) const;
+       ///
+       docstring getSeeAsText(OutputParams const & runparams,
+                              bool const asLabel = false) const;
+       ///
+       std::vector<docstring> getSeeAlsoesAsText(OutputParams const & runparams,
+                                                 bool const asLabel = false) 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_;
 };
 
@@ -94,38 +149,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);
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       int latex(odocstream &, OutputParams const &) const;
-       /// Does nothing yet.
-       docstring xhtml(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
+       //@{
        ///
-       DisplayType display() const { return AlignCenter; }
+       static ParamInfo const & findInfo(std::string const &);
        ///
-       docstring screenLabel() const;
+       static std::string defaultCommand() { return "printindex"; }
+       ///
+       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;
+       //@}
 };