mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 16:18:22 +00:00
55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
|
// -*- 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:
|
||
|
InsetCaptionable(Buffer * buffer)
|
||
|
: InsetCollapsable(buffer), caption_type_("senseless") {}
|
||
|
InsetCaptionable(Buffer * buffer, std::string const & type)
|
||
|
: InsetCollapsable(buffer), caption_type_(type) {}
|
||
|
///
|
||
|
std::string const & captionType() const { return caption_type_; }
|
||
|
///
|
||
|
docstring floatName(std::string const & type) const;
|
||
|
///
|
||
|
protected:
|
||
|
///
|
||
|
virtual void setCaptionType(std::string const & type);
|
||
|
/// are our captions subcaptions?
|
||
|
virtual bool hasSubCaptions(ParIterator const &) const { return false; }
|
||
|
///
|
||
|
void addToToc(DocIterator const & di, bool output_active) const;
|
||
|
/// 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
|