filters

KSpreadBaseWorker.cc

00001 /*
00002 This file is part of the KDE project
00003 Copyright (C) 2002 Fred Malabre <fmalabre@yahoo.com>
00004 
00005 This library is free software; you can redistribute it and/or
00006 modify it under the terms of the GNU Library General Public
00007 License as published by the Free Software Foundation; either
00008 version 2 of the License, or (at your option) any later version.
00009 
00010 This library is distributed in the hope that it will be useful,
00011 but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013 Library General Public License for more details.
00014 
00015 You should have received a copy of the GNU Library General Public License
00016 along with this library; see the file COPYING.LIB.  If not, write to
00017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00018  * Boston, MA 02110-1301, USA.
00019 */
00020 
00021 #include "KSpreadBaseWorker.h"
00022 
00023 #include <kdebug.h>
00024 
00025 
00026 KSpreadBaseWorker::KSpreadBaseWorker() {
00027 }
00028 
00029 
00030 KSpreadBaseWorker::~KSpreadBaseWorker() {
00031 }
00032 
00033 
00034 KoFilter::ConversionStatus KSpreadBaseWorker::startDocument(KSpreadFilterProperty property) {
00035     KSpreadFilterProperty::Iterator it;
00036     for (it = property.begin(); it != property.end(); ++it) {
00037         kdDebug(30508) << "startDocument: " << it.key() << "->" << it.data() << endl;
00038     }
00039     return KoFilter::OK;
00040 }
00041 
00042 
00043 KoFilter::ConversionStatus KSpreadBaseWorker::startInfoLog(KSpreadFilterProperty property) {
00044     KSpreadFilterProperty::Iterator it;
00045     for (it = property.begin(); it != property.end(); ++it) {
00046         kdDebug(30508) << "startInfoLog: " << it.key() << "->" << it.data() << endl;
00047     }
00048     return KoFilter::OK;
00049 }
00050 
00051 
00052 KoFilter::ConversionStatus KSpreadBaseWorker::startInfoAuthor(KSpreadFilterProperty property) {
00053     KSpreadFilterProperty::Iterator it;
00054     for (it = property.begin(); it != property.end(); ++it) {
00055         kdDebug(30508) << "startInfoAuthor: " << it.key() << "->" << it.data() << endl;
00056     }
00057     return KoFilter::OK;
00058 }
00059 
00060 
00061 KoFilter::ConversionStatus KSpreadBaseWorker::startInfoAbout(KSpreadFilterProperty property) {
00062     KSpreadFilterProperty::Iterator it;
00063     for (it = property.begin(); it != property.end(); ++it) {
00064         kdDebug(30508) << "startInfoAbout: " << it.key() << "->" << it.data() << endl;
00065     }
00066     return KoFilter::OK;
00067 }
00068 
00069 
00070 KoFilter::ConversionStatus KSpreadBaseWorker::startSpreadBook(KSpreadFilterProperty property) {
00071     KSpreadFilterProperty::Iterator it;
00072     for (it = property.begin(); it != property.end(); ++it) {
00073         kdDebug(30508) << "startSpreadBook: " << it.key() << "->" << it.data() << endl;
00074     }
00075     return KoFilter::OK;
00076 }
00077 
00078 
00079 KoFilter::ConversionStatus KSpreadBaseWorker::startSpreadSheet(KSpreadFilterProperty property) {
00080     KSpreadFilterProperty::Iterator it;
00081     for (it = property.begin(); it != property.end(); ++it) {
00082         kdDebug(30508) << "startSpreadSheet: " << it.key() << "->" << it.data() << endl;
00083     }
00084     return KoFilter::OK;
00085 }
00086 
00087 
00088 KoFilter::ConversionStatus KSpreadBaseWorker::startSpreadCell(KSpreadFilterProperty property) {
00089     KSpreadFilterProperty::Iterator it;
00090     for (it = property.begin(); it != property.end(); ++it) {
00091         kdDebug(30508) << "startSpreadCell: " << it.key() << "->" << it.data() << endl;
00092     }
00093     return KoFilter::OK;
00094 }
KDE Home | KDE Accessibility Home | Description of Access Keys