[go: up one dir, main page]

File: imagelistview.h

package info (click to toggle)
showimg 0.9.4.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,436 kB
  • ctags: 3,644
  • sloc: cpp: 32,420; sh: 11,559; perl: 2,779; makefile: 220
file content (294 lines) | stat: -rw-r--r-- 7,391 bytes parent folder | download
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294

/***************************************************************************
                          imagelistview.h  -  description
                             -------------------
    begin                : Sat Dec 1 2001
    copyright            : (C) 2001 by Richard Groult
    email                : rgroult@jalix.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.                                   *
 *                                                                         *
 *   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., 59 Temple Place, Suite 330, Boston, MA 02111-1307   *
 *   USA.                                                                  *
 *                                                                         *
 *   For license exceptions see LICENSE.EXC file, attached with the source *
 *   code.                                                                 *
 *                                                                         *
 ***************************************************************************/

#ifndef _IMAGELISTVIEW_H_
#define _IMAGELISTVIEW_H_

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

// KDE 
#include <kfileiconview.h>
#include <ktrader.h>

// QT
#include <qtooltip.h>

// Local 
#include "describe.h"

class FileIconItem;
class MainWindow;
class ImageLoader;
class ImageListView;

class KProcess;
class KPopupMenu;
class KFileViewItem;
class KAction;
class KIconEffect;
class KToggleAction;

class QListViewItem;
class QIconViewItem;
class QFileInfo;

class KToolTip : public QToolTip
{
public:
	KToolTip(QWidget *parent, ImageListView *imageList);
	virtual ~KToolTip(){};

	void maybeTip(const QPoint &pos);
	void tip ( const QRect & r, const QString& text );

private:
	ImageListView *imageList;
};



class ImageListView : public KIconView
{
	Q_OBJECT
public:
	ImageListView (QWidget * parent, const char *name, MainWindow * mw);

	void initMenu(KActionCollection *actionCollection);

	void mousePress (QMouseEvent * e);
	void contentsMouseReleaseEvent ( QMouseEvent * e );
	void contentsMousePressEvent ( QMouseEvent * e );
	void contentsMouseDoubleClickEvent ( QMouseEvent * e );

	virtual void setItemTextPos ( ItemTextPos pos );

	bool doPreload();
	void setPreload(bool p);

	bool doLoop();
	void setLoop(bool loop);

	bool doRandom();
	void setRandom(bool ran);

	bool showMeta();
	void setShowMeta(bool sMeta);
	bool showHexa();
	void setShowHexa(bool sHexa);
	bool getShowMimeType();
	void setShowMimeType(bool s);
	bool getShowSize();
	void setShowSize(bool s);
	bool getShowDate();
	void setShowDate(bool s);
	bool getShowDimension();
	void setShowDimension(bool s);
	bool getShowToolTips();
	void setShowToolTips(bool s);

	void setgimpPath(const QString& gimp);
	QString getgimpPath();

	/**
		return true if it have to show ALL files
	*/
	void setPreloadIm(bool prel);
	bool preloadIm();

	void load(FileIconItem* item);
	void load(const QString& path);
	void reload();


	FileIconItem* firstItem ();
	FileIconItem* currentItem();
	FileIconItem* lastItem();
	FileIconItem* findItem (const QString& text, bool fullname=false);
	FileIconItem* itemAt(const QPoint pos);

	void refresh ();
	void stopLoading ();
	void setThumbnailSize(const QSize newSize, bool refresh=true);

	void sort();
	QString getCurrentKey();

	KPopupMenu* popupOpenWith();

	QString currentItemName();
	void setCurrentItemName(const QString& itemName, bool select=true);
	bool hasSelection();
	bool hasImages();
	bool hasImageSelected();
	bool hasOnlyOneImageSelected();
	int countSelected();
	FileIconItem* firstSelected();

	bool inFullScreen;
	bool preview;
	ImageLoader * il;

	QSize getCurrentIconSize();
	
	QStringList allItems();
	KURL::List allItemsURL();
	QStringList selectedItems();
	KURL::List selectedURLs();
	KURL::List selectedImageURLs();
	QStringList allItemsPath();
	QStringList selectedItemsPath();
	void refreshItems(const QStringList& itemList);
	
	bool currentDragItemAreMovable();

signals:
	void loadFinish();

protected:
	int sortMode;
	
	QDragObject* dragObject();
	void leaveEvent (QEvent *e) ;

protected slots:
	void deletionDone( KIO::Job *);
	void highlight(QIconViewItem *item);
	void onViewport();
	void slotDescribeClose();

	void popup(QIconViewItem *item, const QPoint &point);
	void slotRun(int id);
	
	void forceGenerateThumbnails__( KIO::Job *job=NULL);
	void generateEXIFThumbnails__( KIO::Job *job=NULL);

	void slotEXIFOrientation();
	
public slots:
	void slotByName();
	void slotByExtension();
	void slotBySize();
	void slotByDate();
	void slotByDirName();

	void slotWallpaper ();
	void slotKhexedit ();
	void slotGimp ();
	void slotEndGimp (KProcess *proc);

	void slotSupprimmer ();
	void slotMoveToTrash();
	void slotShred();

	void slotFilesMoveTo();
	void slotFilesCopyTo();

	void slotFileProperty();
	void slotImageInfo();

	void next ();
	void previous ();
	void first ();
	void last ();

	void slotOpenWith();
	void slotRename();

	void slotSetPixmap (const QPixmap pm, QFileInfo *imgFile, bool success, bool force, bool forceEXIF=false);

	void slotLoadFirst (bool force=false, bool forceEXIF=false);
	void slotLoadFirst(FileIconItem *item);
	void slotLoadNext (bool force=false, bool forceEXIF=false);
	void slotResetThumbnail();

	void slotInvertSelection();
	void slotUnselectAll();
	void slotSelectAll();
	virtual void slotUpdate ();

	void selectionChanged();
	
	void slotDisplayExifInformation();
	
	KIO::Job* removeThumbnails(bool allCurrentItems=false);
	void forceGenerateThumbnails();
	void generateEXIFThumbnails();

	
public:
	FileIconItem *curIt;

private:
	QSize *currentIconSize;

	QPixmap *currentIconItem;
	QString currentIconItemName;
	bool currentIconItemHasPreview;
	KIconEffect *iconEffect;
	
	QString lastDestDir;

	Describe *dscr;

	int nbrTh;

	bool loop_; //loop icons
	bool preload_; //preload
	bool random_; //random

	bool sMeta_, sHexa_;
	bool sMimeType_, sSize_, sDate_, sDimension_; 
	bool sToolTips_;
	QString gimpPath_;

	MainWindow *mw;
	
	FileIconItem *imageLoading;
	bool isLoadingThumbnail;

	KPopupMenu *m_popup, *m_popupEmpty, *m_popup_openWith ;
	KTrader::OfferList m_offerList;
	KActionCollection *actionCollection;

	KToolTip *toolTips;

	bool mouseIsPressed;
	bool m_currentDragItemAreMovable;
	
	KToggleAction 
		*aEXIF_Orientation_normal, *aEXIF_Orientation_hflip,
		*aEXIF_Orientation_vflip, *aEXIF_Orientation_rot90,
		*aEXIF_Orientation_rot270;
		
};
#endif