~ubuntu-branches/ubuntu/intrepid/gwenview/intrepid

« back to all changes in this revision

Viewing changes to src/gvdocumentanimatedloadedimpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christopher Martin
  • Date: 2005-04-06 11:33:06 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050406113306-7zovl7z0io5bacpd
Tags: 1.2.0-1
* New upstream release.
  + Fixes crashes when using "Back" to navigate. (Closes: #301811)
* Enable KIPI support.
* Add a doc-base file for the handbook.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim: set tabstop=4 shiftwidth=4 noexpandtab
 
2
/*
 
3
Gwenview - A simple image viewer for KDE
 
4
Copyright 2000-2004 Aur�lien G�teau
 
5
 
 
6
This program is free software; you can redistribute it and/or
 
7
modify it under the terms of the GNU General Public License
 
8
as published by the Free Software Foundation; either version 2
 
9
of the License, or (at your option) any later version.
 
10
 
 
11
This program is distributed in the hope that it will be useful,
 
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License
 
17
along with this program; if not, write to the Free Software
 
18
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
 
 
20
*/
 
21
 
 
22
#include "gvdocumentanimatedloadedimpl.moc"
 
23
 
 
24
// Qt
 
25
#include <qstring.h>
 
26
 
 
27
// KDE
 
28
#include <kdebug.h>
 
29
#include <klocale.h>
 
30
 
 
31
// Local
 
32
 
 
33
//#define ENABLE_LOG
 
34
#ifdef ENABLE_LOG
 
35
#define LOG(x) kdDebug() << k_funcinfo << x << endl
 
36
#else
 
37
#define LOG(x) ;
 
38
#endif
 
39
 
 
40
class GVDocumentAnimatedLoadedImplPrivate {
 
41
public:
 
42
        GVImageFrames mFrames;
 
43
        int mCurrentFrame;
 
44
        QTimer mFrameTimer;
 
45
};
 
46
 
 
47
 
 
48
GVDocumentAnimatedLoadedImpl::GVDocumentAnimatedLoadedImpl(GVDocument* document, const GVImageFrames& frames)
 
49
: GVDocumentLoadedImpl(document) {
 
50
        LOG("" << mDocument->url().prettyURL() << ", frames: " << frames.count() );
 
51
        d=new GVDocumentAnimatedLoadedImplPrivate;
 
52
        d->mFrames = frames;
 
53
        d->mCurrentFrame = -1;
 
54
        connect( &d->mFrameTimer, SIGNAL( timeout()), SLOT( nextFrame()));
 
55
}
 
56
 
 
57
void GVDocumentAnimatedLoadedImpl::init() {
 
58
        GVDocumentLoadedImpl::init();
 
59
        nextFrame();
 
60
}
 
61
 
 
62
void GVDocumentAnimatedLoadedImpl::nextFrame() {
 
63
        ++d->mCurrentFrame;
 
64
        if( d->mCurrentFrame == int( d->mFrames.count())) d->mCurrentFrame = 0;
 
65
        d->mFrameTimer.start( QMAX( 10, d->mFrames[ d->mCurrentFrame ].delay ));
 
66
        LOG("" << d->mCurrentFrame );
 
67
        setImage( d->mFrames[ d->mCurrentFrame ].image, true );
 
68
}
 
69
 
 
70
GVDocumentAnimatedLoadedImpl::~GVDocumentAnimatedLoadedImpl() {
 
71
        delete d;
 
72
}
 
73
 
 
74
 
 
75
void GVDocumentAnimatedLoadedImpl::transform(GVImageUtils::Orientation orientation) {
 
76
        for( GVImageFrames::Iterator it = d->mFrames.begin(); it != d->mFrames.end(); ++it ) {
 
77
                (*it).image = GVImageUtils::transform( (*it).image, orientation );
 
78
        }
 
79
        setImage( d->mFrames[ d->mCurrentFrame ].image, true );
 
80
}
 
81
 
 
82
 
 
83
QString GVDocumentAnimatedLoadedImpl::localSave(QFile* /*file*/, const QCString& /*format*/) const {
 
84
        return i18n("Sorry, cannot save animated images.");
 
85
}