]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetIndex.h
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetIndex.h
index 15c5e7e3fdcb60fff340913b1c7a3f9bb8bcde42..d0b0d1da29856f9f7d89fa1baec4857fb4ef0847 100644 (file)
@@ -38,23 +38,34 @@ public:
 class InsetIndex : public InsetCollapsable {
 public:
        ///
-       InsetIndex(Buffer const &, InsetIndexParams const &);
+       InsetIndex(Buffer *, InsetIndexParams const &);
+       ///
+       static std::string params2string(InsetIndexParams const &);
+       ///
+       static void string2params(std::string const &, InsetIndexParams &);
 private:
        ///
-       EDITABLE editable() const { return HIGHLY_EDITABLE; }
+       bool hasSettings() const;
        ///
        InsetCode lyxCode() const { return INDEX_CODE; }
        ///
        docstring name() const { return from_ascii("Index"); }
        ///
+       ColorCode labelColor() const;
+       ///
        void write(std::ostream & os) const;
        ///
        void read(Lexer & lex);
        ///
        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(XHTMLStream &, OutputParams const &) const;
        ///
        int latex(odocstream &, OutputParams const &) const;
        ///
+       bool showInsetDialog(BufferView *) const;
+       ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
@@ -83,19 +94,22 @@ private:
 class InsetPrintIndex : public InsetCommand {
 public:
        ///
-       InsetPrintIndex(InsetCommandParams const &);
+       InsetPrintIndex(Buffer * buf, InsetCommandParams const &);
        ///
        InsetCode lyxCode() const { return INDEX_PRINT_CODE; }
 
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "printindex"; };
+       static std::string defaultCommand() { return "printindex"; }
        ///
-       static bool isCompatibleCommand(std::string const & s) 
-               { return s == "printindex"; }
+       static bool isCompatibleCommand(std::string const & s);
        ///
        int latex(odocstream &, OutputParams const &) const;
+       /// Does nothing yet.
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
@@ -104,7 +118,8 @@ private:
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
-       EDITABLE editable() const { return NOT_EDITABLE; }
+       bool hasSettings() const;
+
        ///
        DisplayType display() const { return AlignCenter; }
        ///