X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetFoot.h;h=1e4b0d26e83749e97e550ef6ceef6bbd5dab78e2;hb=eeb36e808c9726fd3689926a3c20457e3b801341;hp=f10c11097dcd63b71c9f4c7cf1ab6d476ede8604;hpb=897436efbb9bd641b61467d185a2dfae9839e575;p=lyx.git diff --git a/src/insets/InsetFoot.h b/src/insets/InsetFoot.h index f10c11097d..1e4b0d26e8 100644 --- a/src/insets/InsetFoot.h +++ b/src/insets/InsetFoot.h @@ -4,8 +4,8 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Jürgen Vigna - * \author Lars Gullik Bjønnes + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -21,29 +21,39 @@ namespace lyx { /** The footnote inset */ -class InsetFoot : public InsetFootlike { +class InsetFoot : public InsetFootlike +{ public: /// - InsetFoot(BufferParams const &); + explicit InsetFoot(Buffer *); +private: /// - Inset::Code lyxCode() const { return Inset::FOOT_CODE; } + InsetCode lyxCode() const override { return FOOT_CODE; } /// - docstring name() const { return from_ascii("Foot"); } + docstring layoutName() const override; /// - int latex(Buffer const &, odocstream &, - OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const override; /// - int plaintext(Buffer const &, odocstream &, - OutputParams const &) const; + void docbook(XMLStream &, OutputParams const &) const override; /// - int docbook(Buffer const &, odocstream &, - OutputParams const &) const; + void validate(LaTeXFeatures & features) const override; + /// Update the counters of this inset and of its contents + void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override; /// - virtual docstring const editMessage() const; -protected: - InsetFoot(InsetFoot const &); -private: - virtual std::auto_ptr doClone() const; + docstring toolTip(BufferView const & bv, int x, int y) const override; + /// + Inset * clone() const override { return new InsetFoot(*this); } + /// + bool inheritFont() const override { return true; } + /// + bool allowMultiPar() const override { return true; } + /// + docstring custom_label_; + /// + bool intitle_; + /// + bool infloattable_; };