]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetIndex.h
Fix some bugs in the bibinfo caching mechanism. Comments to follow.
[lyx.git] / src / insets / InsetIndex.h
index c66be3004913b67d37f753923ba8f5bed1c314c6..993747931769ce66cb4b5c114c2f2237b87a9dcb 100644 (file)
@@ -38,7 +38,7 @@ public:
 class InsetIndex : public InsetCollapsable {
 public:
        ///
-       InsetIndex(Buffer const &, InsetIndexParams const &);
+       InsetIndex(Buffer *, InsetIndexParams const &);
        ///
        static std::string params2string(InsetIndexParams const &);
        ///
@@ -58,9 +58,8 @@ private:
        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(odocstream &, OutputParams const &) const;
+       /// 
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        int latex(odocstream &, OutputParams const &) const;
        ///
@@ -74,9 +73,9 @@ private:
        ///
        void addToToc(DocIterator const &);
        ///
-       docstring const buttonLabel(BufferView const & bv) const;
-       ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
+       docstring const buttonLabel(BufferView const & bv) const;
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
@@ -94,20 +93,20 @@ 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);
        ///
        int latex(odocstream &, OutputParams const &) const;
-       /// Does nothing yet.
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       /// 
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///