]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.C
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insetcommand.C
index 3a05f4555660121b6d3b3264ad0ac18981947901..7350cbcad6780282a092bf20d1572965c4da25fc 100644 (file)
@@ -1,12 +1,13 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 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>
 
 
 #include "insetcommand.h"
 #include "debug.h"
-#include "Painter.h"
-#include "lyxlex.h"
+#include "frontends/Painter.h"
 
 using std::ostream;
 using std::endl;
 
 
-InsetCommandParams::InsetCommandParams()
-{}
-
-
-InsetCommandParams::InsetCommandParams( string const & n,
-                                       string const & c,
-                                       string const & o )
-       : cmdname(n), contents(c), options(o)
-{}
-
-
-string const InsetCommandParams::getAsString() const
-{
-       return cmdname + "|++|" + contents + "|++|" + options;
-}
-
-
-void InsetCommandParams::setFromString( string const & b )
-{
-       string::size_type idx = b.find("|++|");
-       if (idx == string::npos) {
-               cmdname = b;
-               contents = "";
-               options = "";
-               return;
-       }
-
-       cmdname = b.substr(0, idx);
-       string tmp = b.substr(idx+4);
-
-       idx = tmp.find("|++|");
-       if (idx == string::npos) {
-               contents = tmp;
-               options = "";
-       } else {
-               contents  = tmp.substr(0, idx);
-               options = tmp.substr(idx+4);
-       }
-}
-
-
-bool InsetCommandParams::operator==(InsetCommandParams const & o) const
-{
-       if (cmdname == o.cmdname && contents == o.contents && options == o.options) return true;
-       return false;
-}
-
-
-bool InsetCommandParams::operator!=(InsetCommandParams const & o) const
-{
-       return !(*this == o);
-}
-
-
-void InsetCommandParams::scanCommand(string const & cmd)
-{
-       string tcmdname, toptions, tcontents;
-
-       if (cmd.empty()) return;
-
-       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;
-               }
-       }
-
-       // Don't mess with this.
-       if (!tcmdname.empty())  setCmdName( tcmdname );
-       if (!toptions.empty())  setOptions( toptions );
-       if (!tcontents.empty()) setContents( tcontents ); 
-
-       if (lyxerr.debugging(Debug::PARSER))
-               lyxerr << "Command <" <<  cmd
-                      << "> == <" << getCommand()
-                      << "> == <" << getCmdName()
-                      << '|' << getContents()
-                      << '|' << getOptions() << '>' << endl;
-}
-
-
-// This function will not be necessary when lyx3
-void InsetCommandParams::read(LyXLex & lex)
-{    
-       string token;
-
-       if (lex.EatLine()) {
-               token = lex.GetString();
-               scanCommand(token);
-       } else
-               lex.printError("InsetCommand: Parse error: `$$Token'");
-       while (lex.IsOK()) {
-               lex.nextToken();
-               token = lex.GetString();
-               if (token == "\\end_inset")
-                       break;
-       }
-       if (token != "\\end_inset") {
-               lex.printError("Missing \\end_inset at this point. "
-                              "Read: `$$Token'");
-       }
-}
-
-
-void InsetCommandParams::write(ostream & os) const
-{
-       os << "LatexCommand " << getCommand() << "\n";
-}
-
-
-string const InsetCommandParams::getCommand() const
-{      
-       string s;
-       if (!getCmdName().empty()) s += "\\"+getCmdName();
-       if (!getOptions().empty()) s += "["+getOptions()+']';
-       s += "{"+getContents()+'}';
-       return s;
-}
-
-
-InsetCommand::InsetCommand( InsetCommandParams const & p )
-       : p_( p.getCmdName(), p.getContents(), p.getOptions() )
+InsetCommand::InsetCommand(InsetCommandParams const & p, bool)
+       : p_(p.getCmdName(), p.getContents(), p.getOptions())
 {}
 
 
-void InsetCommand::setParams(InsetCommandParams const & p )
+void InsetCommand::setParams(InsetCommandParams const & p)
 {
-       p_.setCmdName( p.getCmdName() );
-       p_.setContents( p.getContents() );
-       p_.setOptions( p.getOptions() );
+       p_.setCmdName(p.getCmdName());
+       p_.setContents(p.getContents());
+       p_.setOptions(p.getOptions());
 }
 
 
@@ -211,7 +56,7 @@ int InsetCommand::linuxdoc(Buffer const *, ostream &) const
 }
 
 
-int InsetCommand::docBook(Buffer const *, ostream &) const
+int InsetCommand::docbook(Buffer const *, ostream &, bool) const
 {
        return 0;
 }