blob: 865c9f86abf465403e025b5c035d7f0acca2199a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/* This file is part of the KDE project
Copyright (C) 2002 Matthias Kretz <kretz@kde.org>
This program 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.
This program 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/* $Id$ */
#ifndef __kviewpresenter_h
#define __kviewpresenter_h
#include <tdeparts/plugin.h>
#include <kurl.h>
#include <tqvaluelist.h>
namespace KImageViewer { class Viewer; }
class ImageListDialog;
class ImageListItem;
class TQListViewItem;
class TQTimer;
class TDEToggleAction;
class TDEAction;
class KViewPresenter : public KParts::Plugin
{
TQ_OBJECT
public:
KViewPresenter( TQObject* parent, const char* name, const TQStringList & );
virtual ~KViewPresenter();
protected:
struct ImageInfo
{
KURL url;
ImageInfo()
: url()
{
}
ImageInfo( const KURL & url )
: url( url )
{
}
bool operator==( const ImageInfo & i1 )
{
return url.prettyURL() == i1.url.prettyURL();
}
bool operator!=( const ImageInfo & i1 )
{
return url.prettyURL() != i1.url.prettyURL();
}
bool operator>( const ImageInfo & i1 )
{
return url.prettyURL() > i1.url.prettyURL();
}
bool operator<( const ImageInfo & i1 )
{
return url.prettyURL() < i1.url.prettyURL();
}
};
bool eventFilter( TQObject *, TQEvent * );
private slots:
void slotImageOpened( const KURL & );
void slotImageList();
void slotOpenFiles();
void slotClose();
void changeItem( TQListViewItem * );
void prev();
void next();
void slideshow( bool );
void setSlideshowInterval( int );
void shuffle();
void closeAll();
void loadList();
void saveList();
private:
void makeCurrent( TQListViewItem * );
KImageViewer::Viewer * m_pViewer;
ImageListDialog * m_pImageList;
TDEToggleAction * m_paSlideshow;
TDEAction * m_paFileOpen;
TDEAction * m_paFileClose;
TQValueList<ImageInfo> m_imagelist;
bool m_bDontAdd;
ImageListItem * m_pCurrentItem;
TQTimer * m_pSlideshowTimer;
};
#endif
|