/* This file is part of the KDE project Copyright (C) 2002 Montel Laurent 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 #include "KWDocument.h" #include #include #include #include #include #include #include "KWImportStyleDia.h" #include #include #include #include #include #include "KWTextParag.h" KWImportStyleDia::KWImportStyleDia( KWDocument *_doc, KoStyleCollection* currentCollection, TQWidget *parent, const char *name ) :KoImportStyleDia( currentCollection, parent, name ), m_doc(_doc) { } KWImportStyleDia::~KWImportStyleDia() { } void KWImportStyleDia::loadFile() { KFileDialog fd( TQString(), TQString(), 0, 0, TRUE ); TQStringList lst = "application/x-kword"; #if 0 lst << "application/vnd.oasis.opendocument.text"; #endif fd.setMimeFilter( lst ); fd.setCaption(i18n("Import Style")); KURL url; if ( fd.exec() != TQDialog::Accepted ) return; url = fd.selectedURL(); if( url.isEmpty() ) { KMessageBox::sorry( this, i18n("File name is empty."), i18n("Import Style")); return; } TQMapinsertStyle; KoStore* store=KoStore::createStore( this, url, KoStore::Read ); if (store ) { if (store->open("maindoc.xml") ) { clear(); m_listStyleName->clear(); TQDomDocument doc; doc.setContent( store->device() ); TQDomElement word = doc.documentElement(); TQDomElement stylesElem = word.namedItem( "STYLES" ).toElement(); if ( !stylesElem.isNull() ) { //todo //duplicate code try to remove it ! // TODO: use loadOasisStyleTemplates() for OASIS // (and put as much code as possible in koimportstyledia of course) // // I guess we'll have to keep this old loading code forever though, // so we can't really get rid of the subclasses. TQValueList followingStyles; TQDomNodeList listStyles = stylesElem.elementsByTagName( "STYLE" ); for (unsigned int item = 0; item < listStyles.count(); item++) { TQDomElement styleElem = listStyles.item( item ).toElement(); KoParagStyle *sty = new KoParagStyle( TQString() ); // Load the paraglayout from the