]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetIndex.h
Fixup 572b06d6: reduce cache size for breakString
[lyx.git] / src / insets / InsetIndex.h
index c66be3004913b67d37f753923ba8f5bed1c314c6..dacc477f8874e7e9221f396b8ddda85187591819 100644 (file)
@@ -13,7 +13,7 @@
 #define INSET_INDEX_H
 
 
-#include "InsetCollapsable.h"
+#include "InsetCollapsible.h"
 #include "InsetCommand.h"
 
 
@@ -35,54 +35,58 @@ public:
 
 /** 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 &);
+       ///
+       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;
+       bool showInsetDialog(BufferView *) const override;
        ///
-       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
+       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override;
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
-       /// should paragraph indendation be omitted in any case?
-       bool neverIndent() const { return true; }
+       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 &);
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype, TocBackend & backend) const override;
        ///
-       docstring const buttonLabel(BufferView const & bv) const;
+       docstring toolTip(BufferView const & bv, int x, int y) const override;
        ///
-       docstring toolTip(BufferView const & bv, int x, int y) const;
+       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;
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
+       std::string contextMenuName() const override;
        ///
-       Inset * clone() const { return new InsetIndex(*this); }
+       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; }
 
        ///
        friend class InsetIndexParams;
@@ -94,38 +98,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;
+       bool hasSettings() const override;
+       ///
+       int rowFlags() const override { return Display; }
+       //@}
 
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "printindex"; }
        ///
-       DisplayType display() const { return AlignCenter; }
+       static bool isCompatibleCommand(std::string const & s);
+       //@}
+
+private:
+       /// \name Private functions inherited from Inset class
+       //@{
        ///
-       docstring screenLabel() const;
+       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;
+       //@}
 };