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

« back to all changes in this revision

Viewing changes to src/gvslideshow.h

  • 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
#ifndef GVSLIDESHOW_H
 
23
#define GVSLIDESHOW_H
 
24
 
 
25
// Qt
 
26
#include <qobject.h>
 
27
 
 
28
// KDE
 
29
#include <kurl.h>
 
30
 
 
31
class QTimer;
 
32
 
 
33
class GVDocument;
 
34
class KConfig;
 
35
 
 
36
class GVSlideShow : public QObject
 
37
{
 
38
Q_OBJECT
 
39
public:
 
40
        GVSlideShow(GVDocument* document);
 
41
        
 
42
        void setLoop(bool);
 
43
        bool loop() const { return mLoop; }
 
44
        
 
45
        void setDelay(int);
 
46
        int delay() const { return mDelay; }
 
47
        
 
48
        void start(const KURL::List& urls);
 
49
        void stop();
 
50
 
 
51
        void readConfig(KConfig* config,const QString& group);
 
52
        void writeConfig(KConfig* config,const QString& group) const;
 
53
 
 
54
signals:
 
55
        void finished();
 
56
 
 
57
private slots:
 
58
        void slotTimeout();
 
59
        void slotLoaded();
 
60
 
 
61
private:
 
62
        QTimer* mTimer;
 
63
        int mDelay;
 
64
        bool mLoop;
 
65
        GVDocument* mDocument;
 
66
        bool mStarted;
 
67
        KURL::List mURLs;
 
68
        KURL::List::ConstIterator mStartIt;
 
69
};
 
70
 
 
71
#endif // GVSLIDESHOW_H
 
72