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/kword/latex/import/generator/document.cc

95 lines
2.5 KiB

/* 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 <tqdom.h>
#include <tqtextstream.h>
#include "kdebug.h"
#include <KoStore.h>
#include "document.h"
#include "latex.h"
#include <param.h>
#include <command.h>
bool Document::analyse(TQPtrList<Element>* root)
{
bool error = true;
error &= analyseDocumentClass((Command*) Latex::instance()->getCommand(root, "documentclass"));
/* Analyse body */
_body.analyse(Latex::instance()->getEnv(root, "document"));
return true;
}
bool Document::analyseDocumentClass(Command* documentclass)
{
kdWarning(documentclass != NULL) << "no documentclass found !" << endl;
TQPtrList<Param> params = documentclass->getOptions();
Param* param;
for ( param = params.first(); param; param = params.next() )
{
if(param->getKey() == "a4paper")
{
}
else if(param->getKey() == "11pt")
{
}
}
}
bool Document::generate(KoStore* store)
{
TQDomDocument doc("KWORD");
doc.appendChild(doc.createProcessingInstruction("xml",
"version=\"1.0\" encoding=\"UTF-8\""));
/* DOC */
TQDomElement root = doc.createElement("DOC");
root.setAttribute("editor", "LaTex Import Filter");
root.setAttribute("mime", "application/x-kword");
root.setAttribute("syntaxVersion", "1");
doc.appendChild(root);
/* PAPER */
/* ATTRIBUTES */
/* FRAMESETS */
TQDomElement body = doc.createElement("FRAMESETS");
root.appendChild(body);
/* generate body */
_body.generate(body, doc);
kdDebug(30522) << "serialize" << endl;
serialize(store, doc);
return true;
}
void Document::serialize(KoStore* store, TQDomDocument doc)
{
TQCString str = doc.toCString();
tqWarning(str);
if(store->open("root"))
{
store->write((const char *)str, str.length());
store->close();
}
}