From 8362bf63dea22bbf6736609b0f49c152f975eb63 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 20 Jan 2010 01:29:50 +0000 Subject: Added old abandoned KDE3 version of koffice git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpresenter/KPrImportStyleDia.cpp | 157 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 kpresenter/KPrImportStyleDia.cpp (limited to 'kpresenter/KPrImportStyleDia.cpp') diff --git a/kpresenter/KPrImportStyleDia.cpp b/kpresenter/KPrImportStyleDia.cpp new file mode 100644 index 000000000..d271445ec --- /dev/null +++ b/kpresenter/KPrImportStyleDia.cpp @@ -0,0 +1,157 @@ +// -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; -*- +/* 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 "KPrDocument.h" +#include +#include +#include +#include +#include +#include +#include "KPrImportStyleDia.h" +#include +#include +#include +#include +#include +#include "KPrTextObject.h" + +KPrImportStyleDia::KPrImportStyleDia( KPrDocument *_doc, KoStyleCollection* currentCollection, + QWidget *parent, const char *name ) + :KoImportStyleDia( currentCollection, parent, name ), + m_doc(_doc) +{ +} + +KPrImportStyleDia::~KPrImportStyleDia() +{ +} + +void KPrImportStyleDia::loadFile() +{ + KFileDialog fd( QString::null, QString::null, 0, 0, TRUE ); + QStringList lst = "application/x-kpresenter"; +#if 0 //For the future + lst << "application/vnd.oasis.opendocument.presentation"; +#endif + fd.setMimeFilter( lst ); + fd.setCaption(i18n("Import Style")); + KURL url; + if ( fd.exec() != QDialog::Accepted ) + return; + url = fd.selectedURL(); + if( url.isEmpty() ) + { + KMessageBox::sorry( this, + i18n("File name is empty."), + i18n("Import Style")); + return; + } + QMapinsertStyle; + KoStore* store=KoStore::createStore( this, url.path(), KoStore::Read ); + if (store ) + { + if (store->open("maindoc.xml") ) + { + clear(); + m_listStyleName->clear(); + + QDomDocument doc; + doc.setContent( store->device() ); + QDomElement word = doc.documentElement(); + + QDomElement stylesElem = word.namedItem( "STYLES" ).toElement(); + if ( !stylesElem.isNull() ) + { + //todo + //duplicate code try to remove it ! + QValueList followingStyles; + QDomNodeList listStyles = stylesElem.elementsByTagName( "STYLE" ); + for (unsigned int item = 0; item < listStyles.count(); item++) + { + QDomElement styleElem = listStyles.item( item ).toElement(); + + KoParagStyle *sty = new KoParagStyle( QString::null ); + // Load the style from the