]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetTOC.h
Do not check again and again for non existing files
[lyx.git] / src / insets / InsetTOC.h
index 334a0a33e0e31438b2db7f49b26674516ff11eea..4d48c3220f5ce40acf031689966539ca7290e3c0 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
 
 #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:
        ///
-       explicit InsetTOC(InsetCommandParams const &);
+       InsetTOC(Buffer * buf, InsetCommandParams const &);
+
+       /// \name Public functions inherited from Inset class
+       //@{
+       ///
+       InsetCode lyxCode() const { return TOC_CODE; }
+       ///
+       docstring layoutName() const;
+       ///
+       DisplayType display() const { return AlignCenter; }
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       virtual void validate(LaTeXFeatures &) const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
-       InsetBase::Code lyxCode() 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
+       //@{
        ///
-       bool display() const { return true; }
+       static ParamInfo const & findInfo(std::string const &);
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       static std::string defaultCommand() { return "tableofcontents"; }
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+       static bool isCompatibleCommand(std::string const & cmd);
+       //@}
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       ///
+       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;
+       //@}
 };