move the Generator::Private to a GeneratorPrivate, and move the implementations of the provate threads to a cpp
svn path=/trunk/KDE/kdegraphics/okular/; revision=656221remotes/origin/KDE/4.0
parent
214883d582
commit
166ba5b87a
5 changed files with 169 additions and 108 deletions
@ -0,0 +1,87 @@ |
||||
/***************************************************************************
|
||||
* Copyright (C) 2007 Tobias Koenig <tokoe@kde.org> * |
||||
* * |
||||
* This program is free software; you can redistribute it and/or modify * |
||||
* it under the terms of the GNU General Public License as published by * |
||||
* the Free Software Foundation; either version 2 of the License, or * |
||||
* (at your option) any later version. * |
||||
***************************************************************************/ |
||||
|
||||
#include "generator_p.h" |
||||
|
||||
#include "generator.h" |
||||
|
||||
using namespace Okular; |
||||
|
||||
PixmapGenerationThread::PixmapGenerationThread( Generator *generator ) |
||||
: mGenerator( generator ), mRequest( 0 ) |
||||
{ |
||||
} |
||||
|
||||
void PixmapGenerationThread::startGeneration( PixmapRequest *request ) |
||||
{ |
||||
mRequest = request; |
||||
|
||||
start( QThread::InheritPriority ); |
||||
} |
||||
|
||||
void PixmapGenerationThread::endGeneration() |
||||
{ |
||||
mRequest = 0; |
||||
} |
||||
|
||||
PixmapRequest *PixmapGenerationThread::request() const |
||||
{ |
||||
return mRequest; |
||||
} |
||||
|
||||
QImage PixmapGenerationThread::image() const |
||||
{ |
||||
return mImage; |
||||
} |
||||
|
||||
void PixmapGenerationThread::run() |
||||
{ |
||||
mImage = QImage(); |
||||
|
||||
if ( mRequest ) |
||||
mImage = mGenerator->image( mRequest ); |
||||
} |
||||
|
||||
|
||||
TextPageGenerationThread::TextPageGenerationThread( Generator *generator ) |
||||
: mGenerator( generator ), mPage( 0 ) |
||||
{ |
||||
} |
||||
|
||||
void TextPageGenerationThread::startGeneration( Page *page ) |
||||
{ |
||||
mPage = page; |
||||
|
||||
start( QThread::InheritPriority ); |
||||
} |
||||
|
||||
void TextPageGenerationThread::endGeneration() |
||||
{ |
||||
mPage = 0; |
||||
} |
||||
|
||||
Page *TextPageGenerationThread::page() const |
||||
{ |
||||
return mPage; |
||||
} |
||||
|
||||
TextPage* TextPageGenerationThread::textPage() const |
||||
{ |
||||
return mTextPage; |
||||
} |
||||
|
||||
void TextPageGenerationThread::run() |
||||
{ |
||||
mTextPage = 0; |
||||
|
||||
if ( mPage ) |
||||
mTextPage = mGenerator->textPage( mPage ); |
||||
} |
||||
|
||||
#include "generator_p.moc" |
||||
Loading…
Reference in new issue