]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFloatList.h
Whitespace.
[lyx.git] / src / insets / InsetFloatList.h
index 3d9e444a1c2cf6faa75bd4d9bf7f37abaf1ad109..0b570766fd4a83c0e7cb79be76d5b72e8db61b04 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; }
        ///
@@ -45,16 +46,36 @@ public:
        ///
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       bool clickable(int, int) const { return true; }
+       ///
        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_;
 };