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
|
|
|
|
|
|
|
|
2009-12-04 03:03:38 +00:00
|
|
|
void InsetFoot::updateLabels(ParIterator const & it, bool out)
|
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();
|
2009-08-10 12:51:27 +00:00
|
|
|
Paragraph const & outer = it.paragraph();
|
2009-12-03 23:22:45 +00:00
|
|
|
InsetLayout const & il = getLayout();
|
|
|
|
docstring const & count = il.counter();
|
|
|
|
if (!outer.layout().intitle && cnts.hasCounter(count)) {
|
|
|
|
cnts.step(count);
|
|
|
|
custom_label_= translateIfPossible(il.labelstring())
|
|
|
|
+ ' ' + cnts.theCounter(count, outer.getParLanguage(bp)->code());
|
|
|
|
setLabel(custom_label_);
|
2007-08-13 20:29:33 +00:00
|
|
|
}
|
2009-12-04 03:03:38 +00:00
|
|
|
InsetCollapsable::updateLabels(it, out);
|
2007-08-13 20:29:33 +00:00
|
|
|
}
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
|
2008-05-13 08:23:44 +00:00
|
|
|
void InsetFoot::addToToc(DocIterator const & cpit)
|
2008-02-11 13:06:01 +00:00
|
|
|
{
|
2008-05-13 08:23:44 +00:00
|
|
|
DocIterator pit = cpit;
|
|
|
|
pit.push_back(CursorSlice(*this));
|
2008-02-11 13:06:01 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
Toc & toc = buffer().tocBackend().toc("footnote");
|
2008-02-11 13:06:01 +00:00
|
|
|
docstring str;
|
2008-04-10 10:05:00 +00:00
|
|
|
str = custom_label_ + ": " + getNewLabel(str);
|
2008-02-11 13:06:01 +00:00
|
|
|
toc.push_back(TocItem(pit, 0, str));
|
2008-06-03 11:33:13 +00:00
|
|
|
// Proceed with the rest of the inset.
|
|
|
|
InsetFootlike::addToToc(cpit);
|
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
|
|
|
|
{
|
|
|
|
docstring default_tip = InsetCollapsable::toolTip(bv, x, y);
|
2009-02-21 16:27:00 +00:00
|
|
|
if (!isOpen(bv))
|
2009-05-07 18:04:05 +00:00
|
|
|
return custom_label_ + "\n" + default_tip;
|
2008-04-10 10:05:00 +00:00
|
|
|
return default_tip;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetFoot::latex(odocstream & 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
|
|
|
|
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)
|
|
|
|
os << "%\n\\thanks{";
|
|
|
|
else
|
|
|
|
os << "%\n\\footnote{";
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int const i = 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;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-04-02 14:02:58 +00:00
|
|
|
return i + 2;
|
2000-03-08 13:52:57 +00:00
|
|
|
}
|
2002-04-03 17:44:05 +00:00
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetFoot::plaintext(odocstream & os, OutputParams const & runparams) const
|
2007-02-15 16:07:36 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
os << '[' << buffer().B_("footnote") << ":\n";
|
|
|
|
InsetText::plaintext(os, runparams);
|
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
|