2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetFoot.cpp
|
2002-09-25 14:26:13 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Jürgen Vigna
|
|
|
|
* \author Lars Gullik Bjønnes
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2000-06-28 16:03:01 +00:00
|
|
|
*/
|
2000-03-08 13:52:57 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetFoot.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
2007-05-01 08:26:40 +00:00
|
|
|
#include "Buffer.h"
|
2007-08-13 20:29:33 +00:00
|
|
|
#include "BufferParams.h"
|
|
|
|
#include "Counters.h"
|
2009-07-12 20:09:53 +00:00
|
|
|
#include "Language.h"
|
2007-09-29 20:02:32 +00:00
|
|
|
#include "Layout.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "OutputParams.h"
|
2007-08-13 20:29:33 +00:00
|
|
|
#include "ParIterator.h"
|
2007-11-07 23:25:08 +00:00
|
|
|
#include "TextClass.h"
|
2008-02-11 13:06:01 +00:00
|
|
|
#include "TocBackend.h"
|
2000-03-08 13:52:57 +00:00
|
|
|
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
2008-04-10 10:05:00 +00:00
|
|
|
#include "support/docstream.h"
|
2008-06-18 18:54:31 +00:00
|
|
|
#include "support/gettext.h"
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
namespace lyx {
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2009-11-08 15:53:21 +00:00
|
|
|
InsetFoot::InsetFoot(Buffer * buf)
|
2008-03-04 22:28:18 +00:00
|
|
|
: InsetFootlike(buf)
|
2007-11-02 17:47:51 +00:00
|
|
|
{}
|
2000-03-08 13:52:57 +00:00
|
|
|
|
|
|
|
|
2010-03-03 22:13:45 +00:00
|
|
|
void InsetFoot::updateBuffer(ParIterator const & it, UpdateType utype)
|
2007-08-13 20:29:33 +00:00
|
|
|
{
|
2009-07-12 20:09:53 +00:00
|
|
|
BufferParams const & bp = buffer().masterBuffer()->params();
|
|
|
|
Counters & cnts = bp.documentClass().counters();
|
2010-01-20 19:42:12 +00:00
|
|
|
if (utype == OutputUpdate) {
|
2010-01-20 19:03:17 +00:00
|
|
|
// the footnote counter is local to this inset
|
|
|
|
cnts.saveLastCounter();
|
|
|
|
}
|
2009-08-10 12:51:27 +00:00
|
|
|
Paragraph const & outer = it.paragraph();
|
2010-11-29 19:11:38 +00:00
|
|
|
if (!outer.layout().intitle) {
|
|
|
|
InsetLayout const & il = getLayout();
|
|
|
|
docstring const & count = il.counter();
|
|
|
|
custom_label_ = translateIfPossible(il.labelstring()) + ' ';
|
|
|
|
if (cnts.hasCounter(count))
|
|
|
|
cnts.step(count, utype);
|
|
|
|
custom_label_ +=
|
|
|
|
cnts.theCounter(count, outer.getParLanguage(bp)->code());
|
|
|
|
setLabel(custom_label_);
|
2007-08-13 20:29:33 +00:00
|
|
|
}
|
2010-03-03 22:13:45 +00:00
|
|
|
InsetCollapsable::updateBuffer(it, utype);
|
2010-01-20 19:42:12 +00:00
|
|
|
if (utype == OutputUpdate)
|
2010-01-20 19:03:17 +00:00
|
|
|
cnts.restoreLastCounter();
|
2007-08-13 20:29:33 +00:00
|
|
|
}
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
|
2013-03-08 21:18:26 +00:00
|
|
|
void InsetFoot::addToToc(DocIterator const & cpit, bool output_active) const
|
2008-02-11 13:06:01 +00:00
|
|
|
{
|
2008-05-13 08:23:44 +00:00
|
|
|
DocIterator pit = cpit;
|
2011-01-12 22:23:27 +00:00
|
|
|
pit.push_back(CursorSlice(const_cast<InsetFoot &>(*this)));
|
2008-02-11 13:06:01 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
Toc & toc = buffer().tocBackend().toc("footnote");
|
2010-12-20 21:55:09 +00:00
|
|
|
docstring str = custom_label_ + ": ";
|
|
|
|
text().forToc(str, TOC_ENTRY_LENGTH);
|
2013-03-08 21:18:26 +00:00
|
|
|
toc.push_back(TocItem(pit, 0, str, output_active, toolTipText(docstring(), 3, 60)));
|
2008-06-03 11:33:13 +00:00
|
|
|
// Proceed with the rest of the inset.
|
2013-03-08 21:18:26 +00:00
|
|
|
InsetFootlike::addToToc(cpit, output_active);
|
2008-02-11 13:06:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-10 10:05:00 +00:00
|
|
|
docstring InsetFoot::toolTip(BufferView const & bv, int x, int y) const
|
|
|
|
{
|
2010-11-17 17:25:22 +00:00
|
|
|
if (isOpen(bv))
|
|
|
|
// this will give us something useful if there is no button
|
|
|
|
return InsetCollapsable::toolTip(bv, x, y);
|
|
|
|
return toolTipText(custom_label_);
|
2008-04-10 10:05:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
void InsetFoot::latex(otexstream & os, OutputParams const & runparams_in) const
|
2000-03-08 13:52:57 +00:00
|
|
|
{
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams runparams = runparams_in;
|
2004-08-05 09:18:54 +00:00
|
|
|
// footnotes in titling commands like \title have moving arguments
|
|
|
|
runparams.moving_arg |= runparams_in.intitle;
|
2004-10-26 21:16:44 +00:00
|
|
|
|
2011-03-12 01:40:01 +00:00
|
|
|
os << safebreakln;
|
|
|
|
if (runparams.lastid != -1)
|
|
|
|
os.texrow().start(runparams.lastid, runparams.lastpos);
|
|
|
|
|
2004-10-25 09:11:12 +00:00
|
|
|
// in titling commands, \thanks should be used instead of \footnote.
|
|
|
|
// some classes (e.g. memoir) do not understand \footnote.
|
|
|
|
if (runparams_in.intitle)
|
2011-03-12 01:40:01 +00:00
|
|
|
os << "\\thanks{";
|
2004-10-25 09:11:12 +00:00
|
|
|
else
|
2011-03-12 01:40:01 +00:00
|
|
|
os << "\\footnote{";
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
InsetText::latex(os, runparams);
|
2001-06-29 14:01:29 +00:00
|
|
|
os << "%\n}";
|
2007-03-18 10:59:16 +00:00
|
|
|
runparams_in.encoding = runparams.encoding;
|
2000-03-08 13:52:57 +00:00
|
|
|
}
|
2002-04-03 17:44:05 +00:00
|
|
|
|
|
|
|
|
2013-03-08 19:52:18 +00:00
|
|
|
int InsetFoot::plaintext(odocstringstream & os,
|
|
|
|
OutputParams const & runparams, size_t max_length) const
|
2007-02-15 16:07:36 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
os << '[' << buffer().B_("footnote") << ":\n";
|
2013-03-08 19:52:18 +00:00
|
|
|
InsetText::plaintext(os, runparams, max_length);
|
2007-02-15 16:07:36 +00:00
|
|
|
os << "\n]";
|
|
|
|
|
2007-02-20 17:52:41 +00:00
|
|
|
return PLAINTEXT_NEWLINE + 1; // one char on a separate line
|
2007-02-15 16:07:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetFoot::docbook(odocstream & os, OutputParams const & runparams) const
|
2002-04-03 17:44:05 +00:00
|
|
|
{
|
|
|
|
os << "<footnote>";
|
2008-02-27 20:43:16 +00:00
|
|
|
int const i = InsetText::docbook(os, runparams);
|
2002-04-03 17:44:05 +00:00
|
|
|
os << "</footnote>";
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|