X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetTOC.h;h=cb32c66ac3f18c85b1df6313a151c12f3cba773f;hb=2906a35663b92030b0668a42ab370dba8ffca4cf;hp=992bf943d7088a39ea55df00b86073ac8de29ef2;hpb=8e9410b3d034178f5e391c6cfffca3d65afe59ff;p=lyx.git diff --git a/src/insets/InsetTOC.h b/src/insets/InsetTOC.h index 992bf943d7..cb32c66ac3 100644 --- a/src/insets/InsetTOC.h +++ b/src/insets/InsetTOC.h @@ -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. */ @@ -19,33 +19,53 @@ namespace lyx { /// Used to insert table of contents and similar lists +/// at present, supports only \tableofcontents. Other +/// such commands, such as \listoffigures, are supported +/// by InsetFloatList. class InsetTOC : public InsetCommand { public: /// - explicit InsetTOC(InsetCommandParams const &); - /// - docstring const getScreenLabel(Buffer const &) const; - /// - EDITABLE editable() const { return IS_EDITABLE; } + InsetTOC(Buffer * buf, InsetCommandParams const &); + + /// \name Public functions inherited from Inset class + //@{ /// InsetCode lyxCode() const { return TOC_CODE; } /// DisplayType display() const { return AlignCenter; } /// - int plaintext(Buffer const &, odocstream &, - OutputParams const &) const; + int plaintext(odocstream &, OutputParams const &) const; + /// + int docbook(odocstream &, OutputParams const &) const; + /// + docstring xhtml(XHTMLStream & xs, OutputParams const &) const; /// - int docbook(Buffer const &, odocstream &, - 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 std::string defaultCommand() { return "tableofcontents"; } /// static bool isCompatibleCommand(std::string const & cmd) - {return cmd == defaultCommand(); } + { return cmd == defaultCommand(); } + //@} + private: - virtual Inset * clone() 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; + //@} };