summaryrefslogtreecommitdiffstats
path: root/filters/kword/latex/import/parser/command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'filters/kword/latex/import/parser/command.cpp')
-rw-r--r--filters/kword/latex/import/parser/command.cpp143
1 files changed, 143 insertions, 0 deletions
diff --git a/filters/kword/latex/import/parser/command.cpp b/filters/kword/latex/import/parser/command.cpp
new file mode 100644
index 000000000..d110c0899
--- /dev/null
+++ b/filters/kword/latex/import/parser/command.cpp
@@ -0,0 +1,143 @@
+/* This file is part of the KDE project
+ * Copyright (C) 2003 Robert JACOLIN <rjacolin@ifrance.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#include "command.h"
+#include <iostream.h>
+#include "kdebug.h"
+
+Command::Command()
+{
+ setType(Element::LATEX_COMMAND);
+ _options.setAutoDelete(true);
+ _params.setAutoDelete(true);
+}
+
+Command::Command(const char* name)
+{
+ setType(Element::LATEX_COMMAND);
+ _options.setAutoDelete(true);
+ _params.setAutoDelete(true);
+ _name = name;
+ _name = _name.stripWhiteSpace();
+}
+
+Command::Command(const char* name, TQPtrList<TQPtrList<Element> >* groups)
+{
+ setType(Element::LATEX_COMMAND);
+ _options.setAutoDelete(true);
+ _params.setAutoDelete(true);
+ _name = name;
+ if(groups != NULL)
+ _elements = *groups;
+ _name = _name.stripWhiteSpace();
+}
+
+Command::Command(const char* name, TQPtrList<TQPtrList<Param> >* params,
+ TQPtrList<TQPtrList<Element> >* groups)
+{
+ setType(Element::LATEX_COMMAND);
+ _options.setAutoDelete(true);
+ _params.setAutoDelete(true);
+ _name = name;
+ if(groups != NULL)
+ _elements = *groups;
+ if(params != NULL)
+ _params = *params;
+ _name = _name.stripWhiteSpace();
+}
+
+Command::Command(const char* name, TQPtrList<TQPtrList<Param> >* params, TQPtrList<Param>* options,
+ TQPtrList<TQPtrList<Element> >* groups)
+{
+ setType(Element::LATEX_COMMAND);
+ _options.setAutoDelete(true);
+ _params.setAutoDelete(true);
+ _name = name;
+ if(groups != NULL)
+ _elements = *groups;
+ if(params != NULL)
+ _params = *params;
+ if(options != NULL)
+ _options = *options;
+ _name = name;
+ _name = _name.stripWhiteSpace();
+}
+
+Command::~Command()
+{
+}
+
+void Command::addParam(const char* )
+{
+ /*TQString test = TQString(name);
+ TQString key = test.left(test.find("="));
+ TQString value = test.right(test.find("="));
+ addParam(key, value);*/
+}
+
+void Command::addOption(const char* )
+{
+ /*TQString test = TQString(name);
+ TQString key = test.left(test.find("="));
+ TQString value = test.right(test.find("="));
+ addOption(key, value);*/
+}
+
+void Command::print(int tab)
+{
+ cout << _name.latin1();
+ TQPtrList<Param>* params;
+ for ( params = _params.first(); params; params = _params.next() )
+ {
+ cout << "[";
+ Param* param;
+ for ( param = params->first(); param; param = params->next() )
+ {
+ param->print(tab);
+ if(param != params->getLast())
+ cout << ", ";
+ }
+ cout << "]";
+ }
+ if(_options.count() > 0)
+ {
+ cout << " - [";
+ Param* param;
+ for ( param = _options.first(); param; param = _options.next() )
+ {
+ param->print(tab);
+ if(param != _options.getLast())
+ cout << ", ";
+ }
+ cout << "]";
+ }
+
+ TQPtrList<Element>* group;
+ for(group = _elements.first(); group; group = _elements.next() )
+ {
+ cout << " {";
+ Element* elt;
+ for ( elt = group->first(); elt; elt = group->next() )
+ {
+ elt->print(tab);
+ }
+ cout << "}";
+ }
+ cout << endl;
+}