1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2000-03-16 04:29:22 +00:00
|
|
|
* Copyright 1995-2000 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 10:58:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insetcommand.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
#include "Painter.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::ostream;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
InsetCommand::InsetCommand()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
InsetCommand::InsetCommand(string const & cmd, string const & arg,
|
|
|
|
string const & opt)
|
2000-06-07 08:53:40 +00:00
|
|
|
: cmdname(cmd), options(opt), contents(arg)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
int InsetCommand::ascent(Painter & pain, LyXFont const &) const
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.decSize();
|
|
|
|
|
|
|
|
int width, ascent, descent;
|
|
|
|
string s = getScreenLabel();
|
|
|
|
|
|
|
|
if (Editable()) {
|
|
|
|
pain.buttonText(0, 0, s, font,
|
|
|
|
false, width, ascent, descent);
|
|
|
|
} else {
|
|
|
|
pain.rectText(0, 0, s, font,
|
|
|
|
LColor::commandbg, LColor::commandframe,
|
|
|
|
false, width, ascent, descent);
|
|
|
|
}
|
|
|
|
return ascent;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
int InsetCommand::descent(Painter & pain, LyXFont const &) const
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.decSize();
|
|
|
|
|
|
|
|
int width, ascent, descent;
|
|
|
|
string s = getScreenLabel();
|
|
|
|
|
|
|
|
if (Editable()) {
|
|
|
|
pain.buttonText(0, 0, s, font,
|
|
|
|
false, width, ascent, descent);
|
|
|
|
} else {
|
|
|
|
pain.rectText(0, 0, s, font,
|
|
|
|
LColor::commandbg, LColor::commandframe,
|
|
|
|
false, width, ascent, descent);
|
|
|
|
}
|
|
|
|
return descent;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
int InsetCommand::width(Painter & pain, LyXFont const &) const
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2000-02-17 19:59:08 +00:00
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.decSize();
|
|
|
|
|
|
|
|
int width, ascent, descent;
|
|
|
|
string s = getScreenLabel();
|
|
|
|
|
|
|
|
if (Editable()) {
|
|
|
|
pain.buttonText(0, 0, s, font,
|
|
|
|
false, width, ascent, descent);
|
|
|
|
} else {
|
|
|
|
pain.rectText(0, 0, s, font,
|
|
|
|
LColor::commandbg, LColor::commandframe,
|
|
|
|
false, width, ascent, descent);
|
|
|
|
}
|
2000-03-31 10:35:53 +00:00
|
|
|
return width + 4;
|
2000-02-17 19:59:08 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-17 19:59:08 +00:00
|
|
|
void InsetCommand::draw(Painter & pain, LyXFont const &,
|
2000-02-10 17:53:36 +00:00
|
|
|
int baseline, float & x) const
|
|
|
|
{
|
|
|
|
// Draw it as a box with the LaTeX text
|
2000-02-17 19:59:08 +00:00
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.setColor(LColor::command).decSize();
|
|
|
|
|
|
|
|
int width;
|
|
|
|
string s = getScreenLabel();
|
|
|
|
|
|
|
|
if (Editable()) {
|
2000-03-27 15:13:47 +00:00
|
|
|
pain.buttonText(int(x)+2, baseline, s, font, true, width);
|
2000-02-17 19:59:08 +00:00
|
|
|
} else {
|
2000-03-27 15:13:47 +00:00
|
|
|
pain.rectText(int(x)+2, baseline, s, font,
|
2000-02-17 19:59:08 +00:00
|
|
|
LColor::commandbg, LColor::commandframe,
|
|
|
|
true, width);
|
|
|
|
}
|
|
|
|
|
2000-03-31 10:35:53 +00:00
|
|
|
x += width + 4;
|
2000-02-17 19:59:08 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
// In lyxf3 this will be just LaTeX
|
2000-02-18 22:22:42 +00:00
|
|
|
void InsetCommand::Write(ostream & os) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-07 00:44:53 +00:00
|
|
|
os << "LatexCommand " << getCommand() << "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
void InsetCommand::scanCommand(string const & cmd)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-06-07 08:53:40 +00:00
|
|
|
string tcmdname, toptions, tcontents;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (cmd.empty()) return;
|
|
|
|
|
2000-06-07 08:53:40 +00:00
|
|
|
enum { WS, CMDNAME, OPTION, CONTENT } state = WS;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Used to handle things like \command[foo[bar]]{foo{bar}}
|
|
|
|
int nestdepth = 0;
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
for (string::size_type i = 0; i < cmd.length(); ++i) {
|
1999-09-27 18:44:28 +00:00
|
|
|
char c = cmd[i];
|
2000-06-07 08:53:40 +00:00
|
|
|
if ((state == CMDNAME && c == ' ') ||
|
|
|
|
(state == CMDNAME && c == '[') ||
|
|
|
|
(state == CMDNAME && c == '{')) {
|
1999-09-27 18:44:28 +00:00
|
|
|
state = WS;
|
|
|
|
}
|
2000-06-07 08:53:40 +00:00
|
|
|
if ((state == OPTION && c == ']') ||
|
|
|
|
(state == CONTENT && c == '}')) {
|
1999-11-15 10:58:38 +00:00
|
|
|
if (nestdepth == 0) {
|
1999-09-27 18:44:28 +00:00
|
|
|
state = WS;
|
|
|
|
} else {
|
2000-01-24 18:34:46 +00:00
|
|
|
--nestdepth;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
2000-06-07 08:53:40 +00:00
|
|
|
if ((state == OPTION && c == '[') ||
|
|
|
|
(state == CONTENT && c == '{')) {
|
2000-01-24 18:34:46 +00:00
|
|
|
++nestdepth;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
switch (state) {
|
2000-06-07 08:53:40 +00:00
|
|
|
case CMDNAME: tcmdname += c; break;
|
|
|
|
case OPTION: toptions += c; break;
|
|
|
|
case CONTENT: tcontents += c; break;
|
1999-09-27 18:44:28 +00:00
|
|
|
case WS:
|
|
|
|
if (c == '\\') {
|
2000-06-07 08:53:40 +00:00
|
|
|
state = CMDNAME;
|
1999-09-27 18:44:28 +00:00
|
|
|
} else if (c == '[') {
|
2000-06-07 08:53:40 +00:00
|
|
|
state = OPTION;
|
1999-09-27 18:44:28 +00:00
|
|
|
nestdepth = 0; // Just to be sure
|
|
|
|
} else if (c == '{') {
|
2000-06-07 08:53:40 +00:00
|
|
|
state = CONTENT;
|
1999-09-27 18:44:28 +00:00
|
|
|
nestdepth = 0; // Just to be sure
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't mess with this.
|
2000-06-07 08:53:40 +00:00
|
|
|
if (!tcmdname.empty()) cmdname = tcmdname;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!toptions.empty()) options = toptions;
|
|
|
|
if (!tcontents.empty()) setContents(tcontents);
|
|
|
|
// setContents is overloaded in InsetInclude
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
if (lyxerr.debugging(Debug::PARSER))
|
|
|
|
lyxerr << "Command <" << cmd
|
|
|
|
<< "> == <" << getCommand()
|
|
|
|
<< "> == <" << getCmdName()
|
|
|
|
<< '|' << getContents()
|
|
|
|
<< '|' << getOptions() << '>' << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This function will not be necessary when lyx3
|
1999-11-04 01:40:20 +00:00
|
|
|
void InsetCommand::Read(LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
if (lex.EatLine()) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string t = lex.GetString();
|
1999-09-27 18:44:28 +00:00
|
|
|
scanCommand(t);
|
|
|
|
} else
|
|
|
|
lex.printError("InsetCommand: Parse error: `$$Token'");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-19 01:42:55 +00:00
|
|
|
int InsetCommand::Latex(ostream & os, bool /*fragile*/, bool/*fs*/) 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-24 20:58:23 +00:00
|
|
|
int InsetCommand::Ascii(ostream &) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-06 02:42:40 +00:00
|
|
|
int InsetCommand::Linuxdoc(ostream &) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetCommand::DocBook(ostream &) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
Inset * InsetCommand::Clone() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-06-07 08:53:40 +00:00
|
|
|
return new InsetCommand(cmdname, contents, options);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
string InsetCommand::getCommand() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string s;
|
2000-06-07 08:53:40 +00:00
|
|
|
if (!cmdname.empty()) s += "\\"+cmdname;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!options.empty()) s += "["+options+']';
|
|
|
|
s += "{"+contents+'}';
|
|
|
|
return s;
|
|
|
|
}
|