]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.h
Get rid of Qt resources
[lyx.git] / src / insets / InsetTOC.h
index 95fbfcdf7c86ae4105ef11844439f28db6106e83..4d48c3220f5ce40acf031689966539ca7290e3c0 100644 (file)
 
 #include "InsetCommand.h"
 
+#include "Toc.h"
+
 
 namespace lyx {
 
+class Paragraph;
 
 /// Used to insert table of contents and similar lists
+/// at present, supports only \tableofcontents and \listoflistings.
+/// Other such commands, such as \listoffigures, are supported
+/// by InsetFloatList.
 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; }
        ///
+       docstring layoutName() const;
+       ///
        DisplayType display() const { return AlignCenter; }
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       virtual void validate(LaTeXFeatures &) const;
+       ///
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
        docstring xhtml(XHTMLStream & xs, OutputParams const &) const;
        ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       bool clickable(BufferView const &, int, int) const { return true; }
+       //@}
+
+       /// \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(); }
-       ///
-       void validate(LaTeXFeatures & features) const;
+       static bool isCompatibleCommand(std::string const & cmd);
+       //@}
+
 private:
+       ///
+       void makeTOCWithDepth(XHTMLStream & xs, Toc const & toc, const OutputParams & op) const;
+       ///
+       void makeTOCNoDepth(XHTMLStream & xs, Toc const & toc, const OutputParams & op) const;
+       ///
+       void makeTOCEntry(XHTMLStream & xs, Paragraph const & par, OutputParams const & op) const;
+
+       /// \name Private functions inherited from Inset class
+       //@{
+       ///
        Inset * clone() const { return new InsetTOC(*this); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
 };