This removes the needs for Page to be a QObject (it's the PageController that connects to the jobs and emits the right signals), so it again a "cheap" object. svn path=/trunk/playground/graphics/okular/; revision=646010remotes/origin/KDE/4.0
parent
5d5eb0f2ad
commit
36b894c75a
9 changed files with 132 additions and 26 deletions
@ -0,0 +1,53 @@ |
||||
/***************************************************************************
|
||||
* Copyright (C) 2007 by Pino Toscano <pino@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. * |
||||
***************************************************************************/ |
||||
|
||||
// qt/kde includes
|
||||
#include <kglobal.h> |
||||
|
||||
// local includes
|
||||
#include "page_p.h" |
||||
#include "pagecontroller_p.h" |
||||
#include "rotationjob.h" |
||||
|
||||
K_GLOBAL_STATIC( Okular::PageController, page_controller_self ) |
||||
|
||||
using namespace Okular; |
||||
|
||||
PageController::PageController() |
||||
: QObject() |
||||
{ |
||||
} |
||||
|
||||
PageController::~PageController() |
||||
{ |
||||
} |
||||
|
||||
PageController * PageController::self() |
||||
{ |
||||
return page_controller_self; |
||||
} |
||||
|
||||
void PageController::imageRotationDone() |
||||
{ |
||||
RotationJob *job = sender() ? qobject_cast< RotationJob * >( sender() ) : 0; |
||||
|
||||
if ( !job ) |
||||
return; |
||||
|
||||
if ( job->page() ) |
||||
{ |
||||
job->page()->imageRotationDone( job ); |
||||
|
||||
emit rotationFinished( job->page()->m_number ); |
||||
} |
||||
|
||||
job->deleteLater(); |
||||
} |
||||
|
||||
#include "pagecontroller_p.moc" |
||||
@ -0,0 +1,43 @@ |
||||
/***************************************************************************
|
||||
* Copyright (C) 2007 by Pino Toscano <pino@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. * |
||||
***************************************************************************/ |
||||
|
||||
#ifndef _OKULAR_PAGECONTROLLER_P_H_ |
||||
#define _OKULAR_PAGECONTROLLER_P_H_ |
||||
|
||||
#include <QtCore/QObject> |
||||
|
||||
namespace Okular { |
||||
|
||||
class Page; |
||||
class PagePrivate; |
||||
|
||||
class PageController : public QObject |
||||
{ |
||||
Q_OBJECT |
||||
|
||||
public: |
||||
/**
|
||||
* Constructor. No NOT use this, NEVER! Use the static self() instead. |
||||
*/ |
||||
PageController(); |
||||
|
||||
~PageController(); |
||||
|
||||
static PageController * self(); |
||||
|
||||
signals: |
||||
void rotationFinished( int page ); |
||||
|
||||
private slots: |
||||
void imageRotationDone(); |
||||
}; |
||||
|
||||
} |
||||
|
||||
#endif |
||||
Loading…
Reference in new issue