]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.h
listerrors.lyx : Update a link.
[lyx.git] / src / insets / InsetTOC.h
index b95c9c4ebbc377005a663ff3a2351399bf8db0e1..cb32c66ac3f18c85b1df6313a151c12f3cba773f 100644 (file)
@@ -19,12 +19,16 @@ namespace lyx {
 
 
 /// Used to insert table of contents and similar lists
+/// at present, supports only \tableofcontents. Other
+/// such commands, such as \listoffigures, are supported
+/// by InsetFloatList.
 class InsetTOC : public InsetCommand {
 public:
        ///
-       explicit InsetTOC(InsetCommandParams const &);
-       ///
-       docstring screenLabel() const;
+       InsetTOC(Buffer * buf, InsetCommandParams const &);
+
+       /// \name Public functions inherited from Inset class
+       //@{
        ///
        InsetCode lyxCode() const { return TOC_CODE; }
        ///
@@ -34,14 +38,34 @@ public:
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
+       docstring xhtml(XHTMLStream & xs, OutputParams const &) const;
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       //@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
+       ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "tableofcontents"; };
+       static std::string defaultCommand() { return "tableofcontents"; }
        ///
        static bool isCompatibleCommand(std::string const & cmd)
                { return cmd == defaultCommand(); }
+       //@}
+
 private:
+       /// \name Private functions inherited from Inset class
+       //@{
+       ///
        Inset * clone() const { return new InsetTOC(*this); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
 };