File indexing completed on 2025-01-19 13:27:29

0001 /*
0002 This file is part of the KDE project
0003 Copyright (C) 2002 Fred Malabre <fmalabre@yahoo.com>
0004 
0005 This library is free software; you can redistribute it and/or
0006 modify it under the terms of the GNU Library General Public
0007 License as published by the Free Software Foundation; either
0008 version 2 of the License, or (at your option) any later version.
0009 
0010 This library is distributed in the hope that it will be useful,
0011 but WITHOUT ANY WARRANTY; without even the implied warranty of
0012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0013 Library General Public License for more details.
0014 
0015 You should have received a copy of the GNU Library General Public License
0016 along with this library; see the file COPYING.LIB.  If not, write to
0017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0018  * Boston, MA 02110-1301, USA.
0019 */
0020 
0021 #include "KSpreadBaseWorker.h"
0022 
0023 #include <kdebug.h>
0024 
0025 
0026 KSpreadBaseWorker::KSpreadBaseWorker()
0027 {
0028 }
0029 
0030 
0031 KSpreadBaseWorker::~KSpreadBaseWorker()
0032 {
0033 }
0034 
0035 
0036 KoFilter::ConversionStatus KSpreadBaseWorker::startDocument(KSpreadFilterProperty property)
0037 {
0038     KSpreadFilterProperty::Iterator it;
0039     for (it = property.begin(); it != property.end(); ++it) {
0040         kDebug(30508) << "startDocument:" << it.key() << "->" << it.data();
0041     }
0042     return KoFilter::OK;
0043 }
0044 
0045 
0046 KoFilter::ConversionStatus KSpreadBaseWorker::startInfoLog(KSpreadFilterProperty property)
0047 {
0048     KSpreadFilterProperty::Iterator it;
0049     for (it = property.begin(); it != property.end(); ++it) {
0050         kDebug(30508) << "startInfoLog:" << it.key() << "->" << it.data();
0051     }
0052     return KoFilter::OK;
0053 }
0054 
0055 
0056 KoFilter::ConversionStatus KSpreadBaseWorker::startInfoAuthor(KSpreadFilterProperty property)
0057 {
0058     KSpreadFilterProperty::Iterator it;
0059     for (it = property.begin(); it != property.end(); ++it) {
0060         kDebug(30508) << "startInfoAuthor:" << it.key() << "->" << it.data();
0061     }
0062     return KoFilter::OK;
0063 }
0064 
0065 
0066 KoFilter::ConversionStatus KSpreadBaseWorker::startInfoAbout(KSpreadFilterProperty property)
0067 {
0068     KSpreadFilterProperty::Iterator it;
0069     for (it = property.begin(); it != property.end(); ++it) {
0070         kDebug(30508) << "startInfoAbout:" << it.key() << "->" << it.data();
0071     }
0072     return KoFilter::OK;
0073 }
0074 
0075 
0076 KoFilter::ConversionStatus KSpreadBaseWorker::startSpreadBook(KSpreadFilterProperty property)
0077 {
0078     KSpreadFilterProperty::Iterator it;
0079     for (it = property.begin(); it != property.end(); ++it) {
0080         kDebug(30508) << "startSpreadBook:" << it.key() << "->" << it.data();
0081     }
0082     return KoFilter::OK;
0083 }
0084 
0085 
0086 KoFilter::ConversionStatus KSpreadBaseWorker::startSpreadSheet(KSpreadFilterProperty property)
0087 {
0088     KSpreadFilterProperty::Iterator it;
0089     for (it = property.begin(); it != property.end(); ++it) {
0090         kDebug(30508) << "startSpreadSheet:" << it.key() << "->" << it.data();
0091     }
0092     return KoFilter::OK;
0093 }
0094 
0095 
0096 KoFilter::ConversionStatus KSpreadBaseWorker::startSpreadCell(KSpreadFilterProperty property)
0097 {
0098     KSpreadFilterProperty::Iterator it;
0099     for (it = property.begin(); it != property.end(); ++it) {
0100         kDebug(30508) << "startSpreadCell:" << it.key() << "->" << it.data();
0101     }
0102     return KoFilter::OK;
0103 }