]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.h
tex2lyx: support for Spreadsheet and chess external templates
[lyx.git] / src / insets / InsetTOC.h
index 36d7d091c40f6480d9c80c34dbe471368e2a0fc6..cb32c66ac3f18c85b1df6313a151c12f3cba773f 100644 (file)
@@ -26,8 +26,9 @@ class InsetTOC : public InsetCommand {
 public:
        ///
        InsetTOC(Buffer * buf, InsetCommandParams const &);
-       ///
-       docstring screenLabel() const;
+
+       /// \name Public functions inherited from Inset class
+       //@{
        ///
        InsetCode lyxCode() const { return TOC_CODE; }
        ///
@@ -39,14 +40,32 @@ public:
        ///
        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 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;
+       //@}
 };