2015-09-02 18:53:13 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file InsetCaptionable.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
* \author Jürgen Vigna
|
|
|
|
* \author Lars Gullik Bjønnes
|
|
|
|
* \author Guillaume Munch
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INSET_CAPTIONABLE_H
|
|
|
|
#define INSET_CAPTIONABLE_H
|
|
|
|
|
|
|
|
#include "InsetCollapsable.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
class InsetCaptionable : public InsetCollapsable
|
|
|
|
{
|
|
|
|
public:
|
2016-09-23 22:49:00 +00:00
|
|
|
InsetCaptionable(Buffer * buffer, std::string const & type = "senseless")
|
2015-09-02 18:53:13 +00:00
|
|
|
: InsetCollapsable(buffer), caption_type_(type) {}
|
|
|
|
///
|
|
|
|
std::string const & captionType() const { return caption_type_; }
|
|
|
|
///
|
|
|
|
docstring floatName(std::string const & type) const;
|
|
|
|
///
|
|
|
|
protected:
|
2016-09-23 22:49:00 +00:00
|
|
|
///
|
|
|
|
InsetCaption const * getCaptionInset() const;
|
|
|
|
///
|
|
|
|
docstring getCaptionText(OutputParams const &) const;
|
|
|
|
///
|
|
|
|
docstring getCaptionHTML(OutputParams const &) const;
|
2015-09-02 18:53:13 +00:00
|
|
|
///
|
|
|
|
virtual void setCaptionType(std::string const & type);
|
|
|
|
/// are our captions subcaptions?
|
|
|
|
virtual bool hasSubCaptions(ParIterator const &) const { return false; }
|
|
|
|
///
|
2015-09-27 06:05:00 +00:00
|
|
|
void addToToc(DocIterator const & di, bool output_active,
|
2017-01-13 10:06:48 +00:00
|
|
|
UpdateType utype, TocBackend & backend) const;
|
2015-09-02 18:53:13 +00:00
|
|
|
/// Update the counters of this inset and of its contents
|
|
|
|
void updateBuffer(ParIterator const &, UpdateType);
|
|
|
|
///
|
|
|
|
bool insetAllowed(InsetCode) const;
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
std::string caption_type_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif // INSET_CAPTIONABLE_H
|