X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetTOC.h;h=4d48c3220f5ce40acf031689966539ca7290e3c0;hb=2d48072e664099385b2442f7166b3c57129799bb;hp=5dba25ca8d0a4806a3fcc27212586bbae7bc7cee;hpb=c75d667e788bbb43f98698217afacc107b73d353;p=lyx.git diff --git a/src/insets/InsetTOC.h b/src/insets/InsetTOC.h index 5dba25ca8d..4d48c3220f 100644 --- a/src/insets/InsetTOC.h +++ b/src/insets/InsetTOC.h @@ -14,13 +14,16 @@ #include "InsetCommand.h" +#include "Toc.h" + namespace lyx { +class Paragraph; /// Used to insert table of contents and similar lists -/// at present, supports only \tableofcontents. Other -/// such commands, such as \listoffigures, are supported +/// at present, supports only \tableofcontents and \listoflistings. +/// Other such commands, such as \listoffigures, are supported /// by InsetFloatList. class InsetTOC : public InsetCommand { public: @@ -32,13 +35,22 @@ public: /// 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 @@ -48,11 +60,17 @@ public: /// static std::string defaultCommand() { return "tableofcontents"; } /// - static bool isCompatibleCommand(std::string const & cmd) - { return cmd == defaultCommand(); } + 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 //@{ ///