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.
123 lines
3.8 KiB
123 lines
3.8 KiB
/* -*- c++ -*- |
|
khtmlparthtmlwriter.cpp |
|
|
|
This file is part of KMail, the KDE mail client. |
|
Copyright (c) 2003 Marc Mutz <mutz@kde.org> |
|
|
|
KMail is free software; you can redistribute it and/or modify it |
|
under the terms of the GNU General Public License, version 2, as |
|
published by the Free Software Foundation. |
|
|
|
KMail 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 |
|
General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with this program; if not, write to the Free Software |
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
In addition, as a special exception, the copyright holders give |
|
permission to link the code of this program with any edition of |
|
the Qt library by Trolltech AS, Norway (or with modified versions |
|
of Qt that use the same license as Qt), and distribute linked |
|
combinations including the two. You must obey the GNU General |
|
Public License in all respects for all of the code used other than |
|
Qt. If you modify this file, you may extend this exception to |
|
your version of the file, but you are not obligated to do so. If |
|
you do not wish to do so, delete this exception statement from |
|
your version. |
|
*/ |
|
|
|
#include <config.h> |
|
|
|
#include "khtmlparthtmlwriter.h" |
|
|
|
#include <kdebug.h> |
|
#include <khtml_part.h> |
|
#include <khtmlview.h> |
|
|
|
|
|
#include <cassert> |
|
|
|
namespace KMail { |
|
|
|
KHtmlPartHtmlWriter::KHtmlPartHtmlWriter( KHTMLPart * part, |
|
QObject * parent, const char * name ) |
|
: QObject( parent, name ), HtmlWriter(), |
|
mHtmlPart( part ), mState( Ended ) |
|
{ |
|
assert( part ); |
|
connect( &mHtmlTimer, SIGNAL(timeout()), SLOT(slotWriteNextHtmlChunk()) ); |
|
} |
|
|
|
KHtmlPartHtmlWriter::~KHtmlPartHtmlWriter() { |
|
|
|
} |
|
|
|
void KHtmlPartHtmlWriter::begin() { |
|
if ( mState != Ended ) { |
|
kdWarning( 5006 ) << "KHtmlPartHtmlWriter: begin() called on non-ended session!" << endl; |
|
reset(); |
|
} |
|
|
|
// clear the widget: |
|
mHtmlPart->view()->setUpdatesEnabled( false ); |
|
mHtmlPart->view()->viewport()->setUpdatesEnabled( false ); |
|
static_cast<QScrollView *>(mHtmlPart->widget())->ensureVisible( 0, 0 ); |
|
|
|
mHtmlPart->begin( KURL( "file:/" ) ); |
|
mState = Begun; |
|
} |
|
|
|
void KHtmlPartHtmlWriter::end() { |
|
kdWarning( mState != Begun, 5006 ) << "KHtmlPartHtmlWriter: end() called on non-begun or queued session!" << endl; |
|
mHtmlPart->end(); |
|
mHtmlPart->view()->viewport()->setUpdatesEnabled( true ); |
|
mHtmlPart->view()->setUpdatesEnabled( true ); |
|
mHtmlPart->view()->viewport()->repaint( false ); |
|
mState = Ended; |
|
} |
|
|
|
void KHtmlPartHtmlWriter::reset() { |
|
if ( mState != Ended ) { |
|
mHtmlTimer.stop(); |
|
mHtmlQueue.clear(); |
|
mState = Begun; // don't run into end()'s warning |
|
end(); |
|
} |
|
mState = Ended; |
|
} |
|
|
|
void KHtmlPartHtmlWriter::write( const QString & str ) { |
|
kdWarning( mState != Begun ) << "KHtmlPartHtmlWriter: write() called in Ended or Queued state!" << endl; |
|
mHtmlPart->write( str ); |
|
} |
|
|
|
void KHtmlPartHtmlWriter::queue( const QString & str ) { |
|
static const uint chunksize = 16384; |
|
for ( uint pos = 0 ; pos < str.length() ; pos += chunksize ) |
|
mHtmlQueue.push_back( str.mid( pos, chunksize ) ); |
|
mState = Queued; |
|
} |
|
|
|
void KHtmlPartHtmlWriter::flush() { |
|
slotWriteNextHtmlChunk(); |
|
} |
|
|
|
void KHtmlPartHtmlWriter::slotWriteNextHtmlChunk() { |
|
if ( mHtmlQueue.empty() ) { |
|
mState = Begun; // don't run into end()'s warning |
|
end(); |
|
} else { |
|
mHtmlPart->write( mHtmlQueue.front() ); |
|
mHtmlQueue.pop_front(); |
|
mHtmlTimer.start( 0, true ); |
|
} |
|
} |
|
|
|
|
|
|
|
} // namespace KMail |
|
|
|
#include "khtmlparthtmlwriter.moc"
|
|
|