2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetcommand.C
|
|
|
|
|
* 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
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author Angus Leeming
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>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.
|
2002-09-25 14:26:13 +00:00
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "insetcommand.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
|
2003-02-26 15:01:10 +00:00
|
|
|
|
#include "BufferView.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
|
#include "dispatchresult.h"
|
2003-02-26 15:01:10 +00:00
|
|
|
|
#include "funcrequest.h"
|
|
|
|
|
#include "lyxlex.h"
|
2003-06-12 08:52:36 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2003-02-26 15:01:10 +00:00
|
|
|
|
|
2004-07-24 10:55:30 +00:00
|
|
|
|
#include <sstream>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
|
|
|
|
using std::string;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::istringstream;
|
2000-04-04 00:19:15 +00:00
|
|
|
|
using std::ostream;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::ostringstream;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommand::InsetCommand(InsetCommandParams const & p,
|
|
|
|
|
string const & mailer_name)
|
2004-03-05 14:49:10 +00:00
|
|
|
|
: p_(p.getCmdName(), p.getContents(), p.getOptions(), p.getSecOptions()),
|
2003-12-11 15:23:15 +00:00
|
|
|
|
mailer_name_(mailer_name),
|
2003-06-12 08:52:36 +00:00
|
|
|
|
set_label_(false)
|
2001-07-24 15:07:09 +00:00
|
|
|
|
{}
|
2000-08-04 13:12:30 +00:00
|
|
|
|
|
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommand::~InsetCommand()
|
|
|
|
|
{
|
|
|
|
|
if (!mailer_name_.empty())
|
|
|
|
|
InsetCommandMailer(mailer_name_, *this).hideDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-12 08:52:36 +00:00
|
|
|
|
void InsetCommand::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
|
{
|
|
|
|
|
if (!set_label_) {
|
|
|
|
|
set_label_ = true;
|
2003-08-28 07:41:31 +00:00
|
|
|
|
button_.update(getScreenLabel(*mi.base.bv->buffer()),
|
2003-06-12 08:52:36 +00:00
|
|
|
|
editable() != NOT_EDITABLE);
|
|
|
|
|
}
|
|
|
|
|
button_.metrics(mi, dim);
|
2003-07-18 07:47:07 +00:00
|
|
|
|
dim_ = dim;
|
2003-06-12 08:52:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCommand::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
|
{
|
2004-01-30 11:41:12 +00:00
|
|
|
|
setPosCache(pi, x, y);
|
2003-06-12 08:52:36 +00:00
|
|
|
|
button_.draw(pi, x, y);
|
2003-06-03 15:10:14 +00:00
|
|
|
|
}
|
2003-05-26 09:13:55 +00:00
|
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
void InsetCommand::setParams(InsetCommandParams const & p)
|
2000-08-04 13:12:30 +00:00
|
|
|
|
{
|
2003-09-18 22:26:46 +00:00
|
|
|
|
p_ = p;
|
2003-06-12 08:52:36 +00:00
|
|
|
|
set_label_ = false;
|
2000-08-04 13:12:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int InsetCommand::latex(Buffer const &, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << getCommand();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
int InsetCommand::plaintext(Buffer const &, ostream &,
|
|
|
|
|
OutputParams const &) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int InsetCommand::linuxdoc(Buffer const &, ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int InsetCommand::docbook(Buffer const &, ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2003-02-25 14:51:38 +00:00
|
|
|
|
|
|
|
|
|
|
2004-03-18 12:53:43 +00:00
|
|
|
|
void InsetCommand::priv_dispatch(LCursor & cur, FuncRequest & cmd)
|
2003-02-26 15:01:10 +00:00
|
|
|
|
{
|
2003-03-07 15:58:02 +00:00
|
|
|
|
switch (cmd.action) {
|
2004-05-17 08:52:21 +00:00
|
|
|
|
case LFUN_INSET_REFRESH:
|
|
|
|
|
set_label_ = false;
|
|
|
|
|
break;
|
|
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
|
case LFUN_INSET_MODIFY: {
|
|
|
|
|
InsetCommandParams p;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetCommandMailer::string2params(mailer_name_, cmd.argument, p);
|
2004-04-03 08:37:12 +00:00
|
|
|
|
if (p.getCmdName().empty()) {
|
2004-03-01 17:12:09 +00:00
|
|
|
|
cur.undispatched();
|
2004-02-16 11:58:51 +00:00
|
|
|
|
} else {
|
|
|
|
|
setParams(p);
|
|
|
|
|
cur.bv().update();
|
|
|
|
|
}
|
|
|
|
|
break;
|
2003-03-07 15:58:02 +00:00
|
|
|
|
}
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
2003-05-16 07:44:00 +00:00
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetCommandMailer(cmd.argument, *this).updateDialog(&cur.bv());
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-02-26 15:01:10 +00:00
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
case LFUN_INSET_DIALOG_SHOW:
|
|
|
|
|
case LFUN_MOUSE_RELEASE: {
|
|
|
|
|
if (!mailer_name_.empty())
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetCommandMailer(mailer_name_, *this).showDialog(&cur.bv());
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-12-11 15:23:15 +00:00
|
|
|
|
}
|
2003-03-09 09:38:47 +00:00
|
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
|
default:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
InsetOld::priv_dispatch(cur, cmd);
|
|
|
|
|
break;
|
2003-03-07 15:58:02 +00:00
|
|
|
|
}
|
2003-02-26 15:01:10 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-11 11:52:05 +00:00
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
|
InsetCommandMailer::InsetCommandMailer(string const & name,
|
|
|
|
|
InsetCommand & inset)
|
|
|
|
|
: name_(name), inset_(inset)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2003-07-23 09:54:21 +00:00
|
|
|
|
string const InsetCommandMailer::inset2string(Buffer const &) const
|
2003-02-25 14:51:38 +00:00
|
|
|
|
{
|
2003-02-27 13:26:07 +00:00
|
|
|
|
return params2string(name(), inset_.params());
|
2003-02-25 14:51:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
void InsetCommandMailer::string2params(string const & name,
|
|
|
|
|
string const & in,
|
2003-02-25 14:51:38 +00:00
|
|
|
|
InsetCommandParams & params)
|
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
params = InsetCommandParams();
|
2003-04-24 20:02:49 +00:00
|
|
|
|
if (in.empty())
|
|
|
|
|
return;
|
2003-05-26 09:13:55 +00:00
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
|
istringstream data(in);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
LyXLex lex(0,0);
|
|
|
|
|
lex.setStream(data);
|
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
string n;
|
|
|
|
|
lex >> n;
|
|
|
|
|
if (!lex || n != name)
|
|
|
|
|
return print_mailer_error("InsetCommandMailer", in, 1, name);
|
2003-03-07 14:08:10 +00:00
|
|
|
|
|
2003-03-10 03:11:54 +00:00
|
|
|
|
// This is part of the inset proper that is usually swallowed
|
2003-12-11 15:23:15 +00:00
|
|
|
|
// by LyXText::readInset
|
|
|
|
|
string id;
|
|
|
|
|
lex >> id;
|
|
|
|
|
if (!lex || id != "LatexCommand")
|
|
|
|
|
return print_mailer_error("InsetCommandMailer", in, 2, "LatexCommand");
|
|
|
|
|
|
|
|
|
|
params.read(lex);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
string const
|
|
|
|
|
InsetCommandMailer::params2string(string const & name,
|
2003-02-27 13:26:07 +00:00
|
|
|
|
InsetCommandParams const & params)
|
2003-02-25 14:51:38 +00:00
|
|
|
|
{
|
|
|
|
|
ostringstream data;
|
2003-02-27 13:26:07 +00:00
|
|
|
|
data << name << ' ';
|
2003-02-25 14:51:38 +00:00
|
|
|
|
params.write(data);
|
|
|
|
|
data << "\\end_inset\n";
|
2003-09-15 11:00:00 +00:00
|
|
|
|
return data.str();
|
2003-02-25 14:51:38 +00:00
|
|
|
|
}
|