X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetTOC.h;h=ead482b2e839870ec93ed3886d12eb528669f517;hb=0a6ff99f28686066675848f3410f77c0947bc357;hp=037d461f45c96e7c54e68c7d8f376f768e87dc69;hpb=ce8323e5d3d3c433919a816819f43704426456b8;p=lyx.git diff --git a/src/insets/InsetTOC.h b/src/insets/InsetTOC.h index 037d461f45..ead482b2e8 100644 --- a/src/insets/InsetTOC.h +++ b/src/insets/InsetTOC.h @@ -17,33 +17,70 @@ namespace lyx { +class Paragraph; +class Toc; /// 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 &); - /// - docstring screenLabel() const; - /// - EDITABLE editable() const { return NOT_EDITABLE; } + 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; } /// - 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(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 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 toc, const OutputParams & op) const; + /// + void makeTOCNoDepth(XHTMLStream xs, Toc 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; + //@} };