forked from luebking/phototonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThumbsViewer.h
210 lines (161 loc) · 5.02 KB
/
ThumbsViewer.h
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
/*
* Copyright (C) 2013 Ofer Kashayov <oferkv@live.com>
* This file is part of Phototonic Image Viewer.
*
* Phototonic 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 3 of the License, or
* (at your option) any later version.
*
* Phototonic 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 Phototonic. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef THUMBS_VIEWER_H
#define THUMBS_VIEWER_H
class ImageTags;
class QStandardItem;
class QStandardItemModel;
#include <QBitArray>
#include <QDir>
#include <QFileInfoList>
#include <QListView>
#include <QTimer>
struct Histogram
{
float red[256]{};
float green[256]{};
float blue[256]{};
inline float compareChannel(const float hist1[256], const float hist2[256]) const
{
float len1 = 0.f, len2 = 0.f, corr = 0.f;
for (uint16_t i=0; i<256; i++) {
len1 += hist1[i];
len2 += hist2[i];
corr += std::sqrt(hist1[i] * hist2[i]);
}
const float part1 = 1.f / std::sqrt(len1 * len2);
return std::sqrt(1.f - part1 * corr);
}
inline float compare(const Histogram &other) const
{
return compareChannel(red, other.red) +
compareChannel(green, other.green) +
compareChannel(blue, other.blue);
}
};
Q_DECLARE_METATYPE(Histogram);
struct Constraint
{
qint64 younger = 0;
qint64 older = 0;
qint64 bigger = 0;
qint64 smaller = 0;
QSize minRes;
QSize maxRes;
qint64 minPix = 0;
qint64 maxPix = 0;
};
class ThumbsViewer : public QListView {
Q_OBJECT
public:
enum UserRoles {
FileNameRole = Qt::UserRole + 1,
SortRole,
LoadedRole,
BrightnessRole,
TypeRole,
SizeRole,
TimeRole,
HistogramRole
};
enum ThumbnailLayouts {
Classic,
Squares,
Compact
};
ThumbsViewer(QWidget *parent);
void loadPrepare();
void applyFilter();
void reLoad();
void loadDuplicates();
void loadFileList();
void loadSubDirectories();
void setThumbColors();
using QListView::setCurrentIndex;
bool setCurrentIndex(const QString &fileName);
bool setCurrentIndex(int row);
void setNeedToScroll(bool needToScroll);
void selectCurrentIndex();
QStandardItem *addThumb(const QString &imageFullPath);
void abort(bool permanent = false);
void selectByBrightness(qreal min, qreal max);
int getNextRow();
int getPrevRow();
QStringList getSelectedThumbsList();
QString getSingleSelectionFilename();
QString fullPathOf(int idx);
QIcon icon(int idx);
int dynamicGridWidth();
void refreshThumbs();
bool setFilter(const QString &filter, QString *error = nullptr);
void scanForSort(UserRoles role);
int firstVisibleThumb();
int lastVisibleThumb();
QImage renderHistogram(const QString &imagePath, bool logarithmic = false);
QString locateThumbnail(const QString &path) const;
bool isBusy() { return m_busy; }
ImageTags *imageTags;
QDir thumbsDir;
QDir::SortFlags thumbsSortFlags;
int thumbSize;
signals:
void status(QString s);
void progress(unsigned int current, unsigned int total);
void currentIndexChanged(const QModelIndex ¤t);
protected:
void startDrag(Qt::DropActions) override;
void mousePressEvent(QMouseEvent *event) override;
void resizeEvent(QResizeEvent *event) override;
private:
void initThumbs();
bool loadThumb(int row, bool fastOnly = false);
void findDupes(bool resetCounters);
void updateThumbsCount();
void updateImageInfoViewer(int row);
QSize itemSizeHint() const;
QString thumbnailFileName(const QString &path) const;
void storeThumbnail(const QString &originalPath, QImage thumbnail, const QSize &originalSize) const;
QFileInfo thumbFileInfo;
QFileInfoList thumbFileInfoList;
QList<Histogram> histograms;
QList<QString> histFiles;
bool m_histSorted;
QPixmap emptyImg;
bool isAbortThumbsLoading = false;
bool isClosing = false;
bool isNeedToScroll = false;
bool scrolledForward = false;
int thumbsRangeFirst;
int thumbsRangeLast;
QTimer m_selectionChangedTimer;
QTimer m_loadThumbTimer;
QString m_filter;
QList<Constraint> m_constraints;
bool m_busy;
QStandardItemModel *m_model;
QString m_desiredThumbPath;
public slots:
void loadVisibleThumbs(int scrollBarValue = 0);
void onSelectionChanged();
void invertSelection();
protected slots:
void currentChanged(const QModelIndex ¤t, const QModelIndex &previous) override;
private slots:
void loadThumbsRange();
};
#endif // THUMBS_VIEWER_H