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/kword/mailmerge/kspread/kwmailmerge_kspread.cpp

212 lines
4.7 KiB

/*
This file is part of the KDE project
Copyright (C) 2004 Tobias Koenig <tokoe@kde.org>
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 <kdebug.h>
#include <kglobal.h>
#include <klocale.h>
#include <kspread_map.h>
#include "kwmailmerge_kspread.h"
#include "kwmailmerge_kspread_config.h"
using namespace KSpread;
KWMailMergeKSpread::KWMailMergeKSpread( TDEInstance *instance, TQObject *parent )
: KWMailMergeDataSource( instance, parent ), _spreadSheetNumber( 1 )
{
}
KWMailMergeKSpread::~KWMailMergeKSpread()
{
}
int KWMailMergeKSpread::getNumRecords() const
{
return rows() - 2;
}
TQString KWMailMergeKSpread::getValue( const TQString &name, int record ) const
{
if ( record < 0 )
return name;
const Cell* cell = _sheet->cellAt( _columnMap[ name ], record + 2 );
if ( cell )
return cellText( cell );
else
return i18n( "Unkown mail merge variable: %1" ).arg( name );
}
void KWMailMergeKSpread::load( TQDomElement& parentElem )
{
TQDomNode contentNode = parentElem.namedItem( "CONTENT" );
if ( contentNode.isNull() )
return;
TQDomElement element = contentNode.toElement();
if ( element.isNull() )
return;
_url = element.attribute( TQString::fromLatin1( "URL" ) );
_spreadSheetNumber = element.attribute( TQString::fromLatin1( "SpreadSheetNumber" ) ).toInt();
initDocument();
}
void KWMailMergeKSpread::save( TQDomDocument& doc, TQDomElement& parent )
{
TQDomElement content = doc.createElement( TQString::fromLatin1( "CONTENT" ) );
parent.appendChild( content );
content.setAttribute( "URL", _url.url() );
content.setAttribute( "SpreadSheetNumber", _spreadSheetNumber );
}
void KWMailMergeKSpread::refresh( bool )
{
}
bool KWMailMergeKSpread::showConfigDialog( TQWidget *parent, int )
{
KWMailMergeKSpreadConfig dlg( parent, this );
int retval = dlg.exec();
if ( retval )
initDocument();
return retval;
}
void KWMailMergeKSpread::initDocument()
{
_document = new Doc();
connect( _document, TQT_SIGNAL( completed() ), TQT_SLOT( initSpreadSheets() ) );
_document->openURL( _url );
}
void KWMailMergeKSpread::initSpreadSheets()
{
_columnMap.clear();
sampleRecord.clear();
TQPtrListIterator<Sheet> it( _document->map()->sheetList() );
int counter = 0;
for ( it.toFirst(); it.current(), counter < _spreadSheetNumber; ++it ) {
_sheet = it.current();
counter++;
}
if ( !_sheet ) {
kdError() << "No spread sheet available" << endl;
return;
}
if ( rows() < 2 ) // empty table
return;
int cols = columns();
for ( int i = 1; i < cols; ++i ) {
const Cell* cell = _sheet->cellAt( i, 1 );
// init record list
sampleRecord[ cellText( cell ) ] = cellText( cell );
_columnMap.insert( cellText( cell ), i );
}
}
int KWMailMergeKSpread::rows() const
{
if ( !_sheet )
return 0;
int row = 1;
for (; row < _sheet->maxRow(); ) {
const Cell* cell = _sheet->cellAt( 1, row );
if ( cellText( cell ).isEmpty() )
break;
row++;
}
return row;
}
int KWMailMergeKSpread::columns() const
{
if ( !_sheet )
return 0;
int col = 1;
for (; col < _sheet->maxColumn(); ) {
const Cell* cell = _sheet->cellAt( col, 1 );
if ( cellText( cell ).isEmpty() )
break;
col++;
}
return col;
}
TQString KWMailMergeKSpread::cellText( const Cell *cell ) const
{
TQString text = TQString();
if ( !cell->isDefault() && !cell->isEmpty() ) {
if ( cell->isFormula() )
text = cell->strOutText();
else if ( !cell->link().isEmpty() )
text = cell->link();
else
text = cell->text();
}
#if 0
switch( cell->content() ) {
case Cell::Text:
case Cell::Formula:
text = cell->strOutText();
break;
case Cell::RichText:
case Cell::VisualFormula:
text = cell->text(); // untested
break;
}
}
#endif
return text;
}
extern "C"
{
KWORD_MAILMERGE_EXPORT KWMailMergeDataSource *create_kwmailmerge_kspread( TDEInstance *instance, TQObject *parent )
{
return new KWMailMergeKSpread( instance, parent );
}
}
#include "kwmailmerge_kspread.moc"