]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetcommand.C
index e95b798a530667f676c092ce5367fe18bb94fedf..f1235c1abc7ee2c2e65aaa710ef0934226499ac5 100644 (file)
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+/**
+ * \file insetcommand.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Angus Leeming
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetcommand.h"
+#include "BufferView.h"
 #include "debug.h"
-#include "Painter.h"
+#include "funcrequest.h"
+#include "lyxlex.h"
 
-using std::ostream;
-using std::endl;
+#include "frontends/Painter.h"
 
+#include "support/lstrings.h"
 
-InsetCommand::InsetCommand()
-{
-}
+#include "Lsstream.h"
+
+using std::ostream;
 
 
-InsetCommand::InsetCommand(string const & cmd, string const & arg, 
-                          string const & opt)
-       : cmdname(cmd), options(opt), contents(arg)
-{
-}
+InsetCommand::InsetCommand(InsetCommandParams const & p, bool)
+       : p_(p.getCmdName(), p.getContents(), p.getOptions())
+{}
 
 
-int InsetCommand::ascent(Painter & pain, LyXFont const &) const
+void InsetCommand::setParams(InsetCommandParams const & p)
 {
-       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;
+       p_.setCmdName(p.getCmdName());
+       p_.setContents(p.getContents());
+       p_.setOptions(p.getOptions());
 }
 
 
-int InsetCommand::descent(Painter & pain, LyXFont const &) const
+int InsetCommand::latex(Buffer const *, ostream & os,
+                       LatexRunParams const &) const
 {
-       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;
+       os << getCommand();
+       return 0;
 }
 
 
-int InsetCommand::width(Painter & pain, LyXFont const &) const
+int InsetCommand::ascii(Buffer const *, ostream &, int) const
 {
-       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 width + 4;
+       return 0;
 }
 
 
-void InsetCommand::draw(Painter & pain, LyXFont const &,
-                       int baseline, float & x) const
+int InsetCommand::linuxdoc(Buffer const *, ostream &) const
 {
-       // Draw it as a box with the LaTeX text
-       LyXFont font(LyXFont::ALL_SANE);
-       font.setColor(LColor::command).decSize();
-
-       int width;
-       string s = getScreenLabel();
-
-       if (Editable()) {
-               pain.buttonText(int(x)+2, baseline, s, font, true, width);
-       } else {
-               pain.rectText(int(x)+2, baseline, s, font,
-                             LColor::commandbg, LColor::commandframe,
-                             true, width);
-       }
-
-       x += width + 4;
+       return 0;
 }
 
 
-// In lyxf3 this will be just LaTeX
-void InsetCommand::Write(ostream & os) const
+int InsetCommand::docbook(Buffer const *, ostream &, bool) const
 {
-       os << "LatexCommand " << getCommand() << "\n";
+       return 0;
 }
 
 
-void InsetCommand::scanCommand(string const & cmd)
+dispatch_result InsetCommand::localDispatch(FuncRequest const & cmd)
 {
-       string tcmdname, toptions, tcontents;
+       lyxerr << "InsetCommand::localDispatch: " << cmd.action << "\n";
+       switch (cmd.action) {
+       case LFUN_INSET_MODIFY: {
+               InsetCommandParams p;
+               InsetCommandMailer::string2params(cmd.argument, p);
+               if (p.getCmdName().empty())
+                       return UNDISPATCHED;
+
+               setParams(p);
+               cmd.view()->updateInset(this);
+               return DISPATCHED;
+       }
 
-       if (cmd.empty()) return;
+       case LFUN_INSET_DIALOG_UPDATE:
+               InsetCommandMailer(cmd.argument, *this).updateDialog(cmd.view());
+               return DISPATCHED;
 
-       enum { WS, CMDNAME, OPTION, CONTENT } state = WS;
-       
-       // Used to handle things like \command[foo[bar]]{foo{bar}}
-       int nestdepth = 0;
-
-       for (string::size_type i = 0; i < cmd.length(); ++i) {
-               char c = cmd[i];
-               if ((state == CMDNAME && c == ' ') ||
-                   (state == CMDNAME && c == '[') ||
-                   (state == CMDNAME && c == '{')) {
-                       state = WS;
-               }
-               if ((state == OPTION  && c == ']') ||
-                   (state == CONTENT && c == '}')) {
-                       if (nestdepth == 0) {
-                               state = WS;
-                       } else {
-                               --nestdepth;
-                       }
-               }
-               if ((state == OPTION  && c == '[') ||
-                   (state == CONTENT && c == '{')) {
-                       ++nestdepth;
-               }
-               switch (state) {
-               case CMDNAME:   tcmdname += c; break;
-               case OPTION:    toptions += c; break;
-               case CONTENT:   tcontents += c; break;
-               case WS:
-                       if (c == '\\') {
-                               state = CMDNAME;
-                       } else if (c == '[') {
-                               state = OPTION;
-                               nestdepth = 0; // Just to be sure
-                       } else if (c == '{') {
-                               state = CONTENT;
-                               nestdepth = 0; // Just to be sure
-                       }
-                       break;
-               }
+       case LFUN_MOUSE_RELEASE:
+               return localDispatch(FuncRequest(cmd.view(), LFUN_INSET_EDIT));
+
+       default:
+               return UNDISPATCHED;
        }
 
-       // Don't mess with this.
-       if (!tcmdname.empty()) cmdname = tcmdname;
-       if (!toptions.empty()) options = toptions;
-       if (!tcontents.empty()) setContents(tcontents); 
-                       // setContents is overloaded in InsetInclude
-
-       if (lyxerr.debugging(Debug::PARSER))
-               lyxerr << "Command <" <<  cmd
-                      << "> == <" << getCommand()
-                      << "> == <" << getCmdName()
-                      << '|' << getContents()
-                      << '|' << getOptions() << '>' << endl;
 }
 
 
-// This function will not be necessary when lyx3
-void InsetCommand::Read(LyXLex & lex)
-{    
-       if (lex.EatLine()) {
-               string t = lex.GetString();
-               scanCommand(t);
-       } else
-               lex.printError("InsetCommand: Parse error: `$$Token'");
-}
+InsetCommandMailer::InsetCommandMailer(string const & name,
+                                      InsetCommand & inset)
+       : name_(name), inset_(inset)
+{}
 
 
-int InsetCommand::Latex(ostream & os, bool /*fragile*/, bool/*fs*/) const
+string const InsetCommandMailer::inset2string() const
 {
-       os << getCommand();
-       return 0;
+       return params2string(name(), inset_.params());
 }
 
 
-int InsetCommand::Ascii(ostream &) const
+void InsetCommandMailer::string2params(string const & in,
+                                      InsetCommandParams & params)
 {
-       return 0;
-}
-
+       params.setCmdName(string());
+       params.setContents(string());
+       params.setOptions(string());
 
-int InsetCommand::Linuxdoc(ostream &) const
-{
-       return 0;
-}
+       if (in.empty())
+               return;
+       
+       istringstream data(STRCONV(in));
+       LyXLex lex(0,0);
+       lex.setStream(data);
 
+       if (lex.isOK()) {
+               lex.next();
+               string const name = lex.getString();
+       }
 
-int InsetCommand::DocBook(ostream &) const
-{
-       return 0;
+       // This is part of the inset proper that is usually swallowed
+       // by Buffer::readInset
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token != "LatexCommand")
+                       return;
+       }
+       if (lex.isOK()) {
+               params.read(lex);
+       }
 }
 
 
-Inset * InsetCommand::Clone() const
+string const InsetCommandMailer::params2string(string const & name,
+                                 InsetCommandParams const & params)
 {
-       return new InsetCommand(cmdname, contents, options);
-}
-
-
-string InsetCommand::getCommand() const
-{      
-       string s;
-       if (!cmdname.empty()) s += "\\"+cmdname;
-       if (!options.empty()) s += "["+options+']';
-       s += "{"+contents+'}';
-       return s;
+       ostringstream data;
+       data << name << ' ';
+       params.write(data);
+       data << "\\end_inset\n";
+       return STRCONV(data.str());
 }