summaryrefslogtreecommitdiffstats
path: root/filters/kspread/latex/export/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'filters/kspread/latex/export/map.cpp')
-rw-r--r--filters/kspread/latex/export/map.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/filters/kspread/latex/export/map.cpp b/filters/kspread/latex/export/map.cpp
new file mode 100644
index 000000000..886f6c115
--- /dev/null
+++ b/filters/kspread/latex/export/map.cpp
@@ -0,0 +1,79 @@
+/*
+** A program to convert the XML rendered by KWord into LATEX.
+**
+** Copyright (C) 2000, 2001, 2002 Robert JACOLIN
+**
+** 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.
+**
+** To receive a copy of the GNU Library General Public License, write to the
+** Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+**
+*/
+
+#include <stdlib.h> /* for atoi function */
+#include <kdebug.h> /* for kdDebug() stream */
+#include "map.h"
+
+/*******************************************/
+/* Constructor */
+/*******************************************/
+Map::Map()
+{
+}
+
+/*******************************************/
+/* Destructor */
+/*******************************************/
+Map::~Map()
+{
+ kdDebug(30522) << "Destruction of a map." << endl;
+}
+
+/*******************************************/
+/* Analyse */
+/*******************************************/
+void Map::analyse(const TQDomNode balise)
+{
+ /* Analyse of the parameters */
+ kdDebug(30522) << "ANALYSE A MAP" << endl;
+
+ /* Analyse of the children markups */
+ for(int index = 0; index < getNbChild(balise); index++)
+ {
+ // Only tables
+ Table* table = new Table();
+ table->analyse(getChild(balise, index));
+ _tables.append(table);
+ }
+ kdDebug(30522) << "END OF MAP" << endl;
+}
+
+/*******************************************/
+/* Generate */
+/*******************************************/
+/* Generate each text zone with the parag. */
+/* markup. */
+/*******************************************/
+void Map::generate(TQTextStream &out)
+{
+ Table *table = NULL;
+ kdDebug(30522) << " MAP GENERATION" << endl;
+ TQPtrListIterator<Table> it(_tables);
+ while ( (table = it.current()) != 0 )
+ {
+ ++it;
+ table->generate(out);
+ }
+
+ kdDebug(30522) << "MAP GENERATED" << endl;
+}
+