2002-08-24 20:25:17 +00:00
|
|
|
/**
|
2010-06-04 22:44:58 +00:00
|
|
|
* \file InsetArgument.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-08-23 09:05:32 +00:00
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author Martin Vermeer
|
2012-11-25 16:28:03 +00:00
|
|
|
* \author Jürgen Spitzmüller
|
2002-09-25 14:26:13 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-08-24 20:25:17 +00:00
|
|
|
*/
|
2002-08-23 09:05:32 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2010-06-04 22:44:58 +00:00
|
|
|
#include "InsetArgument.h"
|
2002-08-23 09:05:32 +00:00
|
|
|
|
2012-11-23 13:44:45 +00:00
|
|
|
#include "Cursor.h"
|
|
|
|
#include "FuncStatus.h"
|
|
|
|
#include "FuncRequest.h"
|
2012-11-19 13:21:02 +00:00
|
|
|
#include "InsetList.h"
|
|
|
|
#include "Layout.h"
|
|
|
|
#include "Lexer.h"
|
2012-11-25 17:13:57 +00:00
|
|
|
#include "OutputParams.h"
|
2012-11-19 13:21:02 +00:00
|
|
|
#include "ParIterator.h"
|
|
|
|
|
|
|
|
#include "support/convert.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/debug.h"
|
2007-11-01 22:17:22 +00:00
|
|
|
#include "support/docstream.h"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/gettext.h"
|
2012-11-19 13:21:02 +00:00
|
|
|
#include "support/lstrings.h"
|
2007-11-01 22:17:22 +00:00
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
using namespace std;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
2006-09-09 18:52:00 +00:00
|
|
|
|
2002-08-23 09:05:32 +00:00
|
|
|
|
2012-11-19 13:21:02 +00:00
|
|
|
InsetArgument::InsetArgument(Buffer * buf, string const & name)
|
|
|
|
: InsetCollapsable(buf), name_(name), labelstring_(docstring())
|
2007-11-15 15:40:01 +00:00
|
|
|
{}
|
2002-08-23 09:05:32 +00:00
|
|
|
|
2002-08-24 20:25:17 +00:00
|
|
|
|
2010-06-04 22:44:58 +00:00
|
|
|
void InsetArgument::write(ostream & os) const
|
2002-08-23 09:05:32 +00:00
|
|
|
{
|
2012-11-19 13:21:02 +00:00
|
|
|
os << "Argument " << name_ << "\n";
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::write(os);
|
2002-08-23 09:05:32 +00:00
|
|
|
}
|
|
|
|
|
2012-11-19 13:21:02 +00:00
|
|
|
void InsetArgument::read(Lexer & lex)
|
|
|
|
{
|
|
|
|
lex >> name_;
|
|
|
|
InsetCollapsable::read(lex);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InsetArgument::updateBuffer(ParIterator const & it, UpdateType utype)
|
|
|
|
{
|
|
|
|
Layout::LaTeXArgMap args;
|
|
|
|
bool const insetlayout = &it.inset() && it.paragraph().layout().latexargs().empty();
|
|
|
|
if (insetlayout)
|
|
|
|
args = it.inset().getLayout().latexargs();
|
|
|
|
else
|
|
|
|
args = it.paragraph().layout().latexargs();
|
|
|
|
|
|
|
|
// Handle pre 2.1 ArgInsets (lyx2lyx cannot classify them)
|
|
|
|
if (name_ == "999") {
|
2012-11-24 01:40:38 +00:00
|
|
|
unsigned int const req = insetlayout ? it.inset().getLayout().numRequiredArgs()
|
2012-11-19 13:21:02 +00:00
|
|
|
: it.paragraph().layout().requiredArgs();
|
2012-11-24 01:40:38 +00:00
|
|
|
unsigned int const opts = insetlayout ? it.inset().getLayout().numOptArgs()
|
2012-11-19 13:21:02 +00:00
|
|
|
: it.paragraph().layout().optArgs();
|
2012-11-24 01:40:38 +00:00
|
|
|
unsigned int nr = 0;
|
|
|
|
unsigned int ours = 0;
|
2012-11-19 13:21:02 +00:00
|
|
|
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;
|
2012-11-19 13:21:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
bool done = false;
|
2012-11-24 01:40:38 +00:00
|
|
|
unsigned int realopts = 0;
|
2012-11-19 13:21:02 +00:00
|
|
|
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(convert<unsigned int>(name_));
|
|
|
|
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;
|
2012-11-19 13:21:02 +00:00
|
|
|
tooltip_ = translateIfPossible((*lait).second.tooltip);
|
|
|
|
} else {
|
|
|
|
labelstring_ = _("Unknown Argument");
|
|
|
|
tooltip_ = _("Argument not known in this Layout. Will be supressed in the output.");
|
|
|
|
}
|
|
|
|
setButtonLabel();
|
|
|
|
InsetCollapsable::updateBuffer(it, utype);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InsetArgument::setButtonLabel()
|
|
|
|
{
|
|
|
|
setLabel(labelstring_);
|
|
|
|
}
|
|
|
|
|
|
|
|
docstring InsetArgument::toolTip(BufferView const & bv, int, int) const
|
|
|
|
{
|
|
|
|
if (isOpen(bv))
|
|
|
|
return tooltip_;
|
|
|
|
return toolTipText(tooltip_ + from_ascii(":\n"));
|
|
|
|
}
|
|
|
|
|
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(ATOMIC_UNDO, this);
|
|
|
|
name_ = cmd.getArg(1);
|
|
|
|
cur.forceBufferUpdate();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
InsetCollapsable::doDispatch(cur, cmd);
|
|
|
|
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.inset() && cur.paragraph().layout().latexargs().empty();
|
|
|
|
if (insetlayout)
|
|
|
|
args = cur.inset().getLayout().latexargs();
|
|
|
|
else
|
|
|
|
args = cur.paragraph().layout().latexargs();
|
|
|
|
Layout::LaTeXArgMap::const_iterator const lait =
|
|
|
|
args.find(convert<unsigned int>(type));
|
|
|
|
if (lait != args.end()) {
|
|
|
|
flag.setEnabled(true);
|
|
|
|
InsetList::const_iterator it = cur.paragraph().insetList().begin();
|
|
|
|
InsetList::const_iterator end = cur.paragraph().insetList().end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
if (it->inset->lyxCode() == ARG_CODE) {
|
|
|
|
InsetArgument const * ins =
|
|
|
|
static_cast<InsetArgument const *>(it->inset);
|
|
|
|
if (ins->name() == type) {
|
|
|
|
// we have this already
|
|
|
|
flag.setEnabled(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
flag.setEnabled(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return InsetCollapsable::getStatus(cur, cmd, flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return InsetCollapsable::getStatus(cur, cmd, flag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string InsetArgument::contextMenuName() const
|
|
|
|
{
|
|
|
|
return "context-argument";
|
|
|
|
}
|
|
|
|
|
2011-02-10 20:02:48 +00:00
|
|
|
void InsetArgument::latexArgument(otexstream & os,
|
2012-11-25 17:13:57 +00:00
|
|
|
OutputParams const & runparams_in, docstring const & ldelim,
|
2012-11-19 13:21:02 +00:00
|
|
|
docstring const & rdelim) const
|
2002-08-23 09:05:32 +00:00
|
|
|
{
|
2011-02-10 20:02:48 +00:00
|
|
|
TexRow texrow;
|
2006-10-21 00:16:43 +00:00
|
|
|
odocstringstream ss;
|
2011-02-10 20:02:48 +00:00
|
|
|
otexstream ots(ss, texrow);
|
2012-11-25 17:13:57 +00:00
|
|
|
OutputParams runparams = runparams_in;
|
|
|
|
if (getLayout().isPassThru())
|
|
|
|
runparams.pass_thru = true;
|
2011-02-10 20:02:48 +00:00
|
|
|
InsetText::latex(ots, runparams);
|
2006-10-19 16:51:30 +00:00
|
|
|
docstring str = ss.str();
|
2012-11-19 13:21:02 +00:00
|
|
|
if (ldelim != "{" && support::contains(str, rdelim))
|
2004-08-13 23:30:26 +00:00
|
|
|
str = '{' + str + '}';
|
2012-11-19 13:21:02 +00:00
|
|
|
os << ldelim << str << rdelim;
|
2002-08-23 09:05:32 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|