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
|
|
|
|
* Copyright 1995-1999 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"
|
2000-02-14 22:14:48 +00:00
|
|
|
#ifndef USE_PAINTER
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "lyxdraw.h"
|
2000-02-14 22:14:48 +00:00
|
|
|
#endif
|
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
|
|
|
|
|
|
|
InsetCommand::InsetCommand()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
InsetCommand::InsetCommand(string const & cmd, string const & arg,
|
|
|
|
string const & opt)
|
1999-09-27 18:44:28 +00:00
|
|
|
: command(cmd), options(opt), contents(arg)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
#ifdef USE_PAINTER
|
|
|
|
int InsetCommand::ascent(Painter &, LyXFont const & font) const
|
|
|
|
{
|
|
|
|
LyXFont f = font;
|
|
|
|
f.decSize();
|
|
|
|
return f.maxAscent() + 3;
|
|
|
|
}
|
|
|
|
#else
|
1999-11-04 01:40:20 +00:00
|
|
|
int InsetCommand::Ascent(LyXFont const & font) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
LyXFont f = font;
|
|
|
|
f.decSize();
|
|
|
|
return f.maxAscent() + 3;
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
#ifdef USE_PAINTER
|
|
|
|
int InsetCommand::descent(Painter &, LyXFont const & font) const
|
|
|
|
{
|
|
|
|
LyXFont f = font;
|
|
|
|
f.decSize();
|
|
|
|
return f.maxDescent() + 3;
|
|
|
|
}
|
|
|
|
#else
|
1999-11-04 01:40:20 +00:00
|
|
|
int InsetCommand::Descent(LyXFont const & font) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
LyXFont f = font;
|
|
|
|
f.decSize();
|
|
|
|
return f.maxDescent() + 3;
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
#ifdef USE_PAINTER
|
|
|
|
int InsetCommand::width(Painter &, LyXFont const & font) const
|
|
|
|
{
|
|
|
|
LyXFont f = font;
|
|
|
|
f.decSize();
|
|
|
|
string s = getScreenLabel();
|
|
|
|
return 10 + f.stringWidth(s);
|
|
|
|
}
|
|
|
|
#else
|
1999-11-04 01:40:20 +00:00
|
|
|
int InsetCommand::Width(LyXFont const & font) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
LyXFont f = font;
|
|
|
|
f.decSize();
|
1999-10-02 16:21:10 +00:00
|
|
|
string s = getScreenLabel();
|
1999-09-27 18:44:28 +00:00
|
|
|
return 10 + f.stringWidth(s);
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
#ifdef USE_PAINTER
|
|
|
|
void InsetCommand::draw(Painter & pain, LyXFont const & font,
|
|
|
|
int baseline, float & x) const
|
|
|
|
{
|
|
|
|
// Draw it as a box with the LaTeX text
|
|
|
|
x += 3;
|
|
|
|
|
|
|
|
pain.fillRectangle(int(x), baseline - ascent(pain, font) + 1,
|
|
|
|
width(pain, font) - 6,
|
|
|
|
ascent(pain, font) + descent(pain, font) - 2,
|
|
|
|
LColor::insetbg);
|
|
|
|
// Tell whether this slows down the drawing (ale)
|
|
|
|
// lets draw editable and non-editable insets differently
|
|
|
|
if (Editable()) {
|
|
|
|
int y = baseline - ascent(pain, font) + 1;
|
|
|
|
int w = width(pain, font) - 6;
|
|
|
|
int h = ascent(pain, font) + descent(pain, font) - 2;
|
|
|
|
pain.rectangle(int(x), y, w, h, LColor::insetframe);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
pain.rectangle(int(x), baseline - ascent(pain, font) + 1,
|
|
|
|
width(pain, font) - 6,
|
|
|
|
ascent(pain, font) + descent(pain, font) - 2,
|
|
|
|
LColor::insetframe);
|
|
|
|
}
|
|
|
|
string s = getScreenLabel();
|
|
|
|
LyXFont f(font);
|
|
|
|
f.decSize();
|
|
|
|
f.setColor(LColor::none);
|
|
|
|
f.setLatex(LyXFont::OFF);
|
|
|
|
pain.text(int(x + 2), baseline, s, f);
|
|
|
|
|
|
|
|
x += width(pain, font) - 3;
|
|
|
|
}
|
|
|
|
#else
|
1999-11-04 01:40:20 +00:00
|
|
|
void InsetCommand::Draw(LyXFont font, LyXScreen & scr,
|
|
|
|
int baseline, float & x)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
// Draw it as a box with the LaTeX text
|
|
|
|
x += 3;
|
|
|
|
|
|
|
|
scr.fillRectangle(gc_lighted,
|
|
|
|
int(x), baseline - Ascent(font) + 1,
|
|
|
|
Width(font) - 6,
|
|
|
|
Ascent(font) + Descent(font)-2);
|
|
|
|
// Tell whether this slows down the drawing (ale)
|
|
|
|
// lets draw editable and non-editable insets differently
|
|
|
|
if (Editable()) {
|
|
|
|
int y = baseline - Ascent(font)+1, w = Width(font)-6,
|
|
|
|
h = (Ascent(font)+Descent(font)-2);
|
|
|
|
scr.drawFrame(FL_UP_FRAME, int(x), y, w, h, FL_BLACK, -1);
|
|
|
|
} else {
|
|
|
|
scr.drawRectangle(gc_note_frame,
|
|
|
|
int(x), baseline - Ascent(font)+1,
|
|
|
|
Width(font)-6,
|
|
|
|
Ascent(font)+Descent(font)-2);
|
|
|
|
}
|
1999-10-02 16:21:10 +00:00
|
|
|
string s = getScreenLabel();
|
1999-09-27 18:44:28 +00:00
|
|
|
LyXFont f = font;
|
|
|
|
f.decSize();
|
|
|
|
f.setColor(LyXFont::NONE);
|
|
|
|
f.setLatex(LyXFont::OFF);
|
|
|
|
scr.drawString(f, s, baseline, int(x+2));
|
|
|
|
|
|
|
|
x += Width(font) - 3;
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
// In lyxf3 this will be just LaTeX
|
1999-12-07 00:44:53 +00:00
|
|
|
void InsetCommand::Write(ostream & os)
|
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
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
string tcommand, toptions, tcontents;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
if (cmd.empty()) return;
|
|
|
|
|
|
|
|
enum { WS, Command, Option, Content } state = WS;
|
|
|
|
|
|
|
|
// 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];
|
1999-11-15 10:58:38 +00:00
|
|
|
if ((state == Command && c == ' ') ||
|
|
|
|
(state == Command && c == '[') ||
|
|
|
|
(state == Command && c == '{')) {
|
1999-09-27 18:44:28 +00:00
|
|
|
state = WS;
|
|
|
|
}
|
1999-11-15 10:58:38 +00:00
|
|
|
if ((state == Option && c == ']') ||
|
|
|
|
(state == Content && c == '}')) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
1999-11-15 10:58:38 +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) {
|
|
|
|
case Command: tcommand += c; break;
|
|
|
|
case Option: toptions += c; break;
|
|
|
|
case Content: tcontents += c; break;
|
|
|
|
case WS:
|
|
|
|
if (c == '\\') {
|
|
|
|
state = Command;
|
|
|
|
} else if (c == '[') {
|
|
|
|
state = Option;
|
|
|
|
nestdepth = 0; // Just to be sure
|
|
|
|
} else if (c == '{') {
|
|
|
|
state = Content;
|
|
|
|
nestdepth = 0; // Just to be sure
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't mess with this.
|
|
|
|
if (!tcommand.empty()) command = tcommand;
|
|
|
|
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'");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
int InsetCommand::Latex(ostream & os, signed char /*fragile*/)
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
int InsetCommand::Latex(string & file, signed char /*fragile*/)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
file += getCommand();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
int InsetCommand::Linuxdoc(string &/*file*/)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
int InsetCommand::DocBook(string &/*file*/)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
Inset * InsetCommand::Clone() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-22 16:19:48 +00:00
|
|
|
return new InsetCommand(command, 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;
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!command.empty()) s += "\\"+command;
|
|
|
|
if (!options.empty()) s += "["+options+']';
|
|
|
|
s += "{"+contents+'}';
|
|
|
|
return s;
|
|
|
|
}
|