]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFloatList.h
Better TOC output for XHTML, per Rob and Pavel.
[lyx.git] / src / insets / InsetFloatList.h
index 3d9e444a1c2cf6faa75bd4d9bf7f37abaf1ad109..6f7844eb2658f65fdba1f499f2050877bce6ed2c 100644 (file)
@@ -26,8 +26,9 @@ public:
        InsetFloatList(Buffer *);
        ///
        InsetFloatList(Buffer *, std::string const & type);
-       ///
-       docstring screenLabel() const;
+
+       /// \name Public functions inherited from Inset class
+       //@{
        ///
        InsetCode lyxCode() const { return FLOAT_LIST_CODE; }
        ///
@@ -37,7 +38,7 @@ public:
        ///
        void read(Lexer &);
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const { return 0; }
        ///
@@ -46,15 +47,31 @@ public:
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures & features) const;
+       //@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
        static std::string defaultCommand() { return "listoftables"; }
        ///
        static bool isCompatibleCommand(std::string const & s);
+       //@}
+
 private:
+       /// \name Private functions inherited from Inset class
+       //@{
        ///
        Inset * clone() const { return new InsetFloatList(*this); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
+
        ///
        static ParamInfo param_info_;
 };