|
|
|
/* This file is part of the KDE project
|
|
|
|
Copyright (c) 2001 Simon Hausmann <hausmann@kde.org>
|
|
|
|
Copyright (c) 2001 David Faure <faure@kde.org>
|
|
|
|
Copyright (C) 2002 Nicolas GOUTTE <goutte@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 <tqbuffer.h>
|
|
|
|
#include <tqpainter.h>
|
|
|
|
#include <tqpicture.h>
|
|
|
|
#include <tqpixmap.h>
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <tdeversion.h>
|
|
|
|
#if ! KDE_IS_VERSION( 3,1,90 )
|
|
|
|
#include <kdebugclasses.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "KoPictureKey.h"
|
|
|
|
#include "KoPictureBase.h"
|
|
|
|
#include "KoPictureClipart.h"
|
|
|
|
|
|
|
|
KoPictureClipart::KoPictureClipart(void) : m_clipart(KoPictureType::formatVersionTQPicture)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KoPictureClipart::~KoPictureClipart(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KoPictureBase* KoPictureClipart::newCopy(void) const
|
|
|
|
{
|
|
|
|
return new KoPictureClipart(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
KoPictureType::Type KoPictureClipart::getType(void) const
|
|
|
|
{
|
|
|
|
return KoPictureType::TypeClipart;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool KoPictureClipart::isNull(void) const
|
|
|
|
{
|
|
|
|
return m_clipart.isNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
void KoPictureClipart::drawTQPicture(TQPicture& clipart, TQPainter& painter,
|
|
|
|
int x, int y, int width, int height, int sx, int sy, int sw, int sh)
|
|
|
|
{
|
|
|
|
kdDebug(30003) << "Drawing KoPictureClipart " << this << endl;
|
|
|
|
kdDebug(30003) << " x=" << x << " y=" << y << " width=" << width << " height=" << height << endl;
|
|
|
|
kdDebug(30003) << " sx=" << sx << " sy=" << sy << " sw=" << sw << " sh=" << sh << endl;
|
|
|
|
painter.save();
|
|
|
|
// Thanks to Harri, TQt3 makes it much easier than TQt2 ;)
|
|
|
|
TQRect br = clipart.boundingRect();
|
|
|
|
kdDebug(30003) << " Bounding rect. " << br << endl;
|
|
|
|
|
|
|
|
painter.translate(x,y); // Translating must be done before scaling!
|
|
|
|
if ( br.width() && br.height() )
|
|
|
|
painter.scale(double(width)/double(br.width()),double(height)/double(br.height()));
|
|
|
|
else
|
|
|
|
kdWarning(30003) << "Null bounding rectangle: " << br.width() << " x " << br.height() << endl;
|
|
|
|
painter.drawPicture(0,0,clipart);
|
|
|
|
painter.restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
void KoPictureClipart::draw(TQPainter& painter, int x, int y, int width, int height, int sx, int sy, int sw, int sh, bool /*fastMode*/)
|
|
|
|
{
|
|
|
|
drawTQPicture(m_clipart, painter, x, y, width, height, sx, sy, sw, sh);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool KoPictureClipart::loadData(const TQByteArray& array, const TQString& extension)
|
|
|
|
{
|
|
|
|
// Second, create the original clipart
|
|
|
|
kdDebug(30003) << "Trying to load clipart... (Size:" << m_rawData.size() << ")" << endl;
|
|
|
|
m_rawData=array;
|
|
|
|
TQBuffer buffer(m_rawData);
|
|
|
|
buffer.open(IO_ReadOnly);
|
|
|
|
bool check = true;
|
|
|
|
if (extension=="svg")
|
|
|
|
{
|
|
|
|
if (!m_clipart.load(&buffer, "svg"))
|
|
|
|
{
|
|
|
|
kdWarning(30003) << "Loading SVG has failed! (KoPictureClipart::load)" << endl;
|
|
|
|
check = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!m_clipart.load(&buffer, NULL))
|
|
|
|
{
|
|
|
|
kdWarning(30003) << "Loading TQPicture has failed! (KoPictureClipart::load)" << endl;
|
|
|
|
check = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buffer.close();
|
|
|
|
return check;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool KoPictureClipart::save(TQIODevice* io) const
|
|
|
|
{
|
|
|
|
// We save the raw data, as the SVG supposrt in TQPicture is poor
|
|
|
|
TQ_ULONG size=io->writeBlock(m_rawData); // WARNING: writeBlock returns TQ_LONG but size() TQ_ULONG!
|
|
|
|
return (size==m_rawData.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
TQSize KoPictureClipart::getOriginalSize(void) const
|
|
|
|
{
|
|
|
|
return m_clipart.boundingRect().size();
|
|
|
|
}
|
|
|
|
|
|
|
|
TQPixmap KoPictureClipart::generatePixmap(const TQSize& size, bool /*smoothScale*/)
|
|
|
|
{
|
|
|
|
// Not sure if it works, but it worked for KoPictureFilePreviewWidget::setClipart
|
|
|
|
TQPixmap pixmap(size);
|
|
|
|
TQPainter p;
|
|
|
|
|
|
|
|
p.begin( &pixmap );
|
|
|
|
p.setBackgroundColor( TQt::white );
|
|
|
|
pixmap.fill( TQt::white );
|
|
|
|
|
|
|
|
TQRect br = m_clipart.boundingRect();
|
|
|
|
if ( br.width() && br.height() )
|
|
|
|
p.scale( (double)pixmap.width() / (double)br.width(), (double)pixmap.height() / (double)br.height() );
|
|
|
|
p.drawPicture( m_clipart );
|
|
|
|
p.end();
|
|
|
|
return pixmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
TQString KoPictureClipart::getMimeType(const TQString& extension) const
|
|
|
|
{
|
|
|
|
if (extension=="svg")
|
|
|
|
return "image/svg+xml";
|
|
|
|
else
|
|
|
|
return "image/x-vnd.trolltech.qpicture";
|
|
|
|
}
|
|
|
|
|