lyx_mirror/src/insets/InsetArgument.cpp

354 lines
9.0 KiB
C++
Raw Normal View History

/**
* \file InsetArgument.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Martin Vermeer
2012-11-25 16:28:03 +00:00
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "InsetArgument.h"
#include "Buffer.h"
#include "BufferParams.h"
2012-11-23 13:44:45 +00:00
#include "Cursor.h"
#include "FuncStatus.h"
#include "FuncRequest.h"
#include "InsetList.h"
#include "Language.h"
#include "Layout.h"
#include "Lexer.h"
2012-11-25 17:13:57 +00:00
#include "OutputParams.h"
#include "ParIterator.h"
#include "TexRow.h"
#include "texstream.h"
#include "TocBackend.h"
#include "support/convert.h"
#include "support/debug.h"
#include "support/docstream.h"
#include "support/gettext.h"
#include "support/lstrings.h"
using namespace std;
namespace lyx {
InsetArgument::InsetArgument(Buffer * buf, string const & name)
: InsetCollapsible(buf), name_(name), labelstring_(docstring()),
font_(inherit_font), labelfont_(inherit_font), decoration_(string()),
pass_thru_context_(false), pass_thru_local_(false), pass_thru_(false),
pass_thru_chars_(docstring()), is_toc_caption_(false)
{}
void InsetArgument::write(ostream & os) const
{
os << "Argument " << name_ << "\n";
InsetCollapsible::write(os);
}
2014-12-26 21:08:07 +00:00
void InsetArgument::read(Lexer & lex)
{
lex >> name_;
InsetCollapsible::read(lex);
}
2014-12-26 21:08:07 +00:00
void InsetArgument::updateBuffer(ParIterator const & it, UpdateType utype)
{
bool const insetlayout = !it.paragraph().layout().hasArgs();
Layout::LaTeXArgMap const args = insetlayout ?
it.inset().getLayout().args() : it.paragraph().layout().args();
pass_thru_context_ = insetlayout ?
it.inset().getLayout().isPassThru() : it.paragraph().layout().pass_thru;
// Record PassThru status in order to act on changes.
bool const former_pass_thru = pass_thru_;
2014-12-26 21:08:07 +00:00
// Handle pre 2.1 ArgInsets (lyx2lyx cannot classify them)
if (name_ == "999") {
unsigned int const req = insetlayout ? it.inset().getLayout().requiredArgs()
: it.paragraph().layout().requiredArgs();
unsigned int const opts = insetlayout ? it.inset().getLayout().optArgs()
: it.paragraph().layout().optArgs();
unsigned int nr = 0;
unsigned int ours = 0;
InsetList::const_iterator parit = it.paragraph().insetList().begin();
InsetList::const_iterator parend = it.paragraph().insetList().end();
for (; parit != parend; ++parit) {
if (parit->inset->lyxCode() == ARG_CODE) {
++nr;
2012-11-20 14:25:58 +00:00
if (parit->inset == this)
ours = nr;
}
}
bool done = false;
unsigned int realopts = 0;
if (nr > req) {
// We have optional arguments
realopts = nr - req;
if (ours <= realopts) {
name_ = convert<string>(ours);
done = true;
}
}
if (!done) {
// This is a mandatory argument. We have to consider
// non-given optional arguments for the numbering
int offset = opts - realopts;
ours += offset;
name_ = convert<string>(ours);
}
}
Layout::LaTeXArgMap::const_iterator const lait = args.find(name_);
caption_of_toc_ = string();
if (lait != args.end()) {
2012-11-24 15:46:44 +00:00
docstring label = translateIfPossible((*lait).second.labelstring);
docstring striplabel;
support::rsplit(label, striplabel, '|');
labelstring_ = striplabel.empty() ? label: striplabel;
tooltip_ = translateIfPossible((*lait).second.tooltip);
font_ = (*lait).second.font;
labelfont_ = (*lait).second.labelfont;
decoration_ = (*lait).second.decoration;
pass_thru_chars_ = (*lait).second.pass_thru_chars;
pass_thru_local_ = false;
if (lait->second.is_toc_caption) {
is_toc_caption_ = true;
// empty if AddToToc is not set
caption_of_toc_ = insetlayout
? it.inset().getLayout().tocType()
: it.paragraph().layout().tocType();
}
switch ((*lait).second.passthru) {
case PT_INHERITED:
pass_thru_ = pass_thru_context_;
break;
case PT_TRUE:
pass_thru_ = true;
pass_thru_local_ = true;
break;
case PT_FALSE:
pass_thru_ = false;
break;
}
} else {
labelstring_ = _("Unknown Argument");
tooltip_ = _("Argument not known in this Layout. Will be suppressed in the output.");
}
if (former_pass_thru != pass_thru_) {
// PassThru status changed. We might need to update
// the language of the contents
Language const * l = insetlayout
? it.inset().buffer().language()
: it.buffer()->language();
fixParagraphLanguage(l);
}
setButtonLabel();
InsetCollapsible::updateBuffer(it, utype);
}
2014-12-26 21:08:07 +00:00
void InsetArgument::setButtonLabel()
{
setLabel(labelstring_);
}
2014-12-26 21:08:07 +00:00
docstring InsetArgument::toolTip(BufferView const & bv, int, int) const
{
if (isOpen(bv))
return tooltip_;
return toolTipText(tooltip_ + from_ascii(":\n"));
}
2014-12-26 21:08:07 +00:00
2012-11-23 13:44:45 +00:00
void InsetArgument::doDispatch(Cursor & cur, FuncRequest & cmd)
{
switch (cmd.action()) {
case LFUN_INSET_MODIFY: {
string const first_arg = cmd.getArg(0);
bool const change_type = first_arg == "changetype";
if (!change_type) {
// not for us
// this will not be handled higher up
cur.undispatched();
return;
}
cur.recordUndoInset(this);
2012-11-23 13:44:45 +00:00
name_ = cmd.getArg(1);
cur.forceBufferUpdate();
break;
}
case LFUN_PASTE:
case LFUN_CLIPBOARD_PASTE:
case LFUN_SELECTION_PASTE:
case LFUN_PRIMARY_SELECTION_PASTE:
case LFUN_SELF_INSERT:
// With (only) inherited pass_thru, call Text::dispatch()
// directly to avoid call for fixParagraphsFont() and/or
// forcing to latex_language in InsetText::dispatch(),
// since this does not play nicely with inherited pass_thru
// (see #8471).
if (pass_thru_ && !pass_thru_local_) {
text().dispatch(cur, cmd);
// For the paste operations, check if we have
// non-latex_language, and if so, fix.
if (cmd.action() != LFUN_SELF_INSERT)
fixParagraphLanguage(buffer().params().language);
}
else
InsetCollapsible::doDispatch(cur, cmd);
break;
2012-11-23 13:44:45 +00:00
default:
InsetCollapsible::doDispatch(cur, cmd);
2012-11-23 13:44:45 +00:00
break;
}
}
bool InsetArgument::getStatus(Cursor & cur, FuncRequest const & cmd,
FuncStatus & flag) const
{
switch (cmd.action()) {
case LFUN_INSET_MODIFY: {
string const first_arg = cmd.getArg(0);
if (first_arg == "changetype") {
string const type = cmd.getArg(1);
flag.setOnOff(type == name_);
if (type == name_) {
flag.setEnabled(true);
return true;
}
Layout::LaTeXArgMap args;
bool const insetlayout = cur.paragraph().layout().latexargs().empty();
2012-11-23 13:44:45 +00:00
if (insetlayout)
args = cur.inset().getLayout().latexargs();
else
args = cur.paragraph().layout().latexargs();
2012-11-29 14:34:20 +00:00
Layout::LaTeXArgMap::const_iterator const lait = args.find(type);
2012-11-23 13:44:45 +00:00
if (lait != args.end()) {
flag.setEnabled(true);
for (auto const & table : cur.paragraph().insetList())
if (InsetArgument const * ins = table.inset->asInsetArgument())
2012-11-23 13:44:45 +00:00
if (ins->name() == type) {
// we have this already
flag.setEnabled(false);
return true;
}
} else
flag.setEnabled(false);
return true;
}
return InsetCollapsible::getStatus(cur, cmd, flag);
2012-11-23 13:44:45 +00:00
}
default:
return InsetCollapsible::getStatus(cur, cmd, flag);
2012-11-23 13:44:45 +00:00
}
}
2014-12-26 21:08:07 +00:00
2012-11-23 13:44:45 +00:00
string InsetArgument::contextMenuName() const
{
if (decoration() == InsetLayout::CONGLOMERATE)
return "context-argument-conglomerate";
else
return "context-argument";
2012-11-23 13:44:45 +00:00
}
2014-12-26 21:08:07 +00:00
FontInfo InsetArgument::getFont() const
{
if (font_ != inherit_font)
return font_;
return InsetCollapsible::getFont();
}
2014-12-26 21:08:07 +00:00
FontInfo InsetArgument::getLabelfont() const
{
if (labelfont_ != inherit_font)
return labelfont_;
return InsetCollapsible::getLabelfont();
}
2014-12-26 21:08:07 +00:00
ColorCode InsetArgument::labelColor() const {
if (labelfont_.color() != Color_inherit)
return labelfont_.color();
return InsetCollapsible::labelColor();
}
InsetLayout::InsetDecoration InsetArgument::decoration() const
{
InsetLayout::InsetDecoration dec = getLayout().decoration();
if (!decoration_.empty())
dec = translateDecoration(decoration_);
return dec == InsetLayout::DEFAULT ? InsetLayout::CLASSIC : dec;
}
2014-12-26 21:08:07 +00:00
void InsetArgument::latexArgument(otexstream & os,
2012-11-25 17:13:57 +00:00
OutputParams const & runparams_in, docstring const & ldelim,
docstring const & rdelim, docstring const & presetarg) const
{
2016-09-23 23:12:38 +00:00
otexstringstream ots;
2012-11-25 17:13:57 +00:00
OutputParams runparams = runparams_in;
if (!pass_thru_chars_.empty())
runparams.pass_thru_chars += pass_thru_chars_;
runparams.pass_thru = isPassThru();
InsetText::latex(ots, runparams);
2016-09-23 23:12:38 +00:00
TexString ts = ots.release();
bool const add_braces = ldelim != "{" && support::contains(ts.str, rdelim);
os << ldelim;
if (add_braces)
os << '{';
os << presetarg;
if (!presetarg.empty() && !ts.str.empty())
os << ", ";
os << move(ts);
if (add_braces)
os << '}';
os << rdelim;
}
void InsetArgument::addToToc(DocIterator const & dit, bool output_active,
UpdateType utype, TocBackend & backend) const
{
if (!caption_of_toc_.empty()) {
docstring str;
text().forOutliner(str, TOC_ENTRY_LENGTH);
backend.builder(caption_of_toc_).argumentItem(str);
}
// Proceed with the rest of the inset.
InsetText::addToToc(dit, output_active, utype, backend);
}
void InsetArgument::fixParagraphLanguage(Language const * l)
{
Font font(inherit_font, l);
if (pass_thru_)
font.setLanguage(latex_language);
paragraphs().front().resetFonts(font);
}
} // namespace lyx