2015-09-02 18:53:13 +00:00
|
|
|
/**
|
|
|
|
* \file InsetCaptionable.cpp
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "InsetCaptionable.h"
|
|
|
|
|
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "FloatList.h"
|
|
|
|
#include "TextClass.h"
|
|
|
|
#include "TocBackend.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCaptionable::setCaptionType(std::string const & type)
|
|
|
|
{
|
|
|
|
caption_type_ = type.empty() ? "senseless" : type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// common to InsetFloat and InsetWrap
|
|
|
|
docstring InsetCaptionable::floatName(string const & type) const
|
|
|
|
{
|
|
|
|
BufferParams const & bp = buffer().params();
|
|
|
|
FloatList const & floats = bp.documentClass().floats();
|
|
|
|
FloatList::const_iterator it = floats[type];
|
|
|
|
// FIXME UNICODE
|
|
|
|
return (it == floats.end()) ? from_ascii(type) : bp.B_(it->second.name());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-27 06:05:00 +00:00
|
|
|
void InsetCaptionable::addToToc(DocIterator const & cpit, bool output_active,
|
|
|
|
UpdateType utype) const
|
2015-09-02 18:53:13 +00:00
|
|
|
{
|
|
|
|
DocIterator pit = cpit;
|
|
|
|
pit.push_back(CursorSlice(const_cast<InsetCaptionable &>(*this)));
|
|
|
|
docstring str;
|
2015-09-27 06:05:00 +00:00
|
|
|
// Leave str empty if we generate for output (e.g. xhtml lists of figures).
|
|
|
|
// This ensures that there is a caption if and only if the string is
|
|
|
|
// non-empty.
|
|
|
|
if (utype != OutputUpdate)
|
|
|
|
text().forOutliner(str, TOC_ENTRY_LENGTH);
|
2015-09-02 18:53:13 +00:00
|
|
|
shared_ptr<TocBuilder> b = buffer().tocBackend().builder(caption_type_);
|
|
|
|
b->pushItem(pit, str, output_active);
|
|
|
|
// Proceed with the rest of the inset.
|
2015-09-27 06:05:00 +00:00
|
|
|
InsetCollapsable::addToToc(cpit, output_active, utype);
|
2015-09-02 18:53:13 +00:00
|
|
|
b->pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InsetCaptionable::updateBuffer(ParIterator const & it, UpdateType utype)
|
|
|
|
{
|
|
|
|
Counters & cnts =
|
|
|
|
buffer().masterBuffer()->params().documentClass().counters();
|
|
|
|
string const saveflt = cnts.current_float();
|
|
|
|
bool const savesubflt = cnts.isSubfloat();
|
|
|
|
if (utype == OutputUpdate) {
|
|
|
|
// counters are local to the float
|
|
|
|
cnts.saveLastCounter();
|
|
|
|
}
|
|
|
|
bool const subflt = hasSubCaptions(it);
|
|
|
|
// floats can only embed subfloats of their own kind
|
|
|
|
if (subflt && !saveflt.empty() && saveflt != "senseless")
|
|
|
|
setCaptionType(saveflt);
|
|
|
|
// Tell captions what the current float is
|
|
|
|
cnts.current_float(caption_type_);
|
|
|
|
cnts.isSubfloat(subflt);
|
|
|
|
InsetCollapsable::updateBuffer(it, utype);
|
|
|
|
// Restore counters
|
|
|
|
cnts.current_float(saveflt);
|
|
|
|
if (utype == OutputUpdate)
|
|
|
|
cnts.restoreLastCounter();
|
|
|
|
cnts.isSubfloat(savesubflt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetCaptionable::insetAllowed(InsetCode c) const
|
|
|
|
{
|
|
|
|
return (c == CAPTION_CODE) || InsetCollapsable::insetAllowed(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|