You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/filters/kspread/latex/export/map.cc

80 lines
2.3 KiB

/*
** 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;
}