lyx_mirror/src/insets/InsetFoot.h
Jean-Marc Lasgouttes 441c6a9359 Revert "Fix bug #10263"
A series of commits, culminating at 812ff7de, pushed a few days later,
fixes the bug at its root. This one is not needed anymore to fix

This reverts commit 001f5a4786
2021-04-13 10:21:25 +02:00

59 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file InsetFoot.h
* 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
*
* Full author contact details are available in file CREDITS.
*/
#ifndef INSETFOOT_H
#define INSETFOOT_H
#include "InsetFootlike.h"
namespace lyx {
/** The footnote inset
*/
class InsetFoot : public InsetFootlike
{
public:
///
explicit InsetFoot(Buffer *);
private:
///
InsetCode lyxCode() const override { return FOOT_CODE; }
///
docstring layoutName() const override;
///
int plaintext(odocstringstream & ods, OutputParams const & op,
size_t max_length = INT_MAX) const override;
///
void docbook(XMLStream &, OutputParams const &) const override;
///
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;
///
docstring toolTip(BufferView const & bv, int x, int y) const override;
///
Inset * clone() const override { return new InsetFoot(*this); }
///
docstring custom_label_;
///
bool intitle_;
///
bool infloattable_;
};
} // namespace lyx
#endif