blob: aa715968c1cddc3caadc7346602c40ec3aefce85 (
plain) (
blame)
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
|
#ifndef MINGUI_HPP
#define MINGUI_HPP
#include <filesystem>
#include <vector>
#include <string>
#include <unordered_set>
#include <QWidget>
class QHBoxLayout;
class QLabel;
class QStatusBar;
class QScrollArea;
class QTextEdit;
class QListView;
class QStandardItemModel;
class ImageItemDelegate;
namespace fs = std::filesystem;
class MinGuiWidget : public QWidget
{
Q_OBJECT
private:
QHBoxLayout *l;
QTextEdit *infopanel;
QLabel *permamsg;
QWidget *imgcontainer;
QStatusBar *sb;
QScrollArea *sa;
QListView *lw;
QStandardItemModel *im = nullptr;
ImageItemDelegate *id = nullptr;
std::size_t ngroups, curgroup;
bool nohotkeywarn;
void mark_toggle(std::size_t x);
void mark_all_but(std::size_t x);
void mark_all();
void mark_none();
void mark_view_update(bool update_msg = true);
fs::path::string_type common_prefix(const std::vector<fs::path> &fns);
std::vector<QWidget*> imgw;
std::vector<bool> marks;
std::unordered_set<fs::path> marked;
std::vector<fs::path> current_set;
protected:
void keyPressEvent(QKeyEvent *e) override;
void keyReleaseEvent(QKeyEvent *e) override;
void resizeEvent(QResizeEvent *e) override;
void closeEvent(QCloseEvent *e) override;
public:
MinGuiWidget();
void show_images(const std::vector<std::filesystem::path> &fns);
void update_distances(const std::map<std::pair<std::size_t, std::size_t>, double> &d);
void update_viewstatus(std::size_t cur, std::size_t size);
void save_list();
void load_list();
Q_SIGNALS:
void next();
void prev();
void switch_group(std::size_t group);
};
class ImageWidget : public QWidget
{
Q_OBJECT
private:
QString fn;
std::size_t idx;
QLabel *im;
QLabel *lb;
protected:
void mouseReleaseEvent(QMouseEvent *event) override;
public:
ImageWidget(fs::path f, fs::path::string_type dispfn, std::size_t _idx, int max_width, int max_height, QWidget *par);
void set_marked(bool marked);
Q_SIGNALS:
void clicked();
};
#endif
|