Fix #714: find duplicates enhanced selection logic
[geeqie.git] / src / dupe.h
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef DUPE_H
23 #define DUPE_H
24
25 #include "similar.h"
26
27 /* match methods */
28 typedef enum
29 {
30         DUPE_MATCH_NONE = 0,
31         DUPE_MATCH_NAME = 1 << 0,
32         DUPE_MATCH_SIZE = 1 << 1,
33         DUPE_MATCH_DATE = 1 << 2,
34         DUPE_MATCH_DIM  = 1 << 3,       /* image dimensions */
35         DUPE_MATCH_SUM  = 1 << 4,       /* MD5sum */
36         DUPE_MATCH_PATH = 1 << 5,
37         DUPE_MATCH_SIM_HIGH = 1 << 6,   /* similarity */
38         DUPE_MATCH_SIM_MED  = 1 << 7,
39         DUPE_MATCH_SIM_LOW  = 1 << 8,
40         DUPE_MATCH_SIM_CUSTOM = 1 << 9,
41         DUPE_MATCH_NAME_CI = 1 << 10,   /* same as name, but case insensitive */
42         DUPE_MATCH_ALL = 1 << 11
43 } DupeMatchType;
44
45 typedef enum
46 {
47         DUPE_SELECT_NONE,
48         DUPE_SELECT_GROUP1,
49         DUPE_SELECT_GROUP2
50 } DupeSelectType;
51
52 typedef struct _DupeItem DupeItem;
53 struct _DupeItem
54 {
55         CollectionData *collection;     /* NULL if from DupeWindow->files */
56         CollectInfo *info;
57
58         FileData *fd;
59
60         gchar *md5sum;
61         gint width;
62         gint height;
63
64         ImageSimilarityData *simd;
65
66         /* thumb */
67         GdkPixbuf *pixbuf;
68
69         GList *group;                   /* List of match data */
70         gdouble group_rank;
71
72         gint second;
73 };
74
75 typedef struct _DupeMatch DupeMatch;
76 struct _DupeMatch
77 {
78         DupeItem *di;
79         gdouble rank;
80 };
81
82 typedef struct _DupeWindow DupeWindow;
83 struct _DupeWindow
84 {
85         GList *list;                    /* dropped files (DupeItem) */
86         GList *dupes;                   /* list of dupes (DupeItem, grouping the DupeMatches) */
87         DupeMatchType match_mask;       /* mask of things to check for match */
88
89         GtkWidget *window;
90         GtkWidget *table;
91         GtkWidget *listview;
92         GtkWidget *combo;
93         GtkWidget *status_label;
94         GtkWidget *extra_label;
95         GtkWidget *button_thumbs;
96         GtkWidget *button_rotation_invariant;
97         GtkWidget *custom_threshold;
98
99         gboolean show_thumbs;
100
101         guint idle_id; /* event source id */
102         GList *working;
103         gint setup_done;
104         gint setup_count;
105         gint setup_n;                   /* these are merely for speed optimization */
106         GList *setup_point;             /* ditto */
107         DupeMatchType setup_mask;       /* ditto */
108         guint64 setup_time;
109         guint64 setup_time_count;
110
111         DupeItem *click_item;           /* for popup menu */
112
113         ThumbLoader *thumb_loader;
114         DupeItem *thumb_item;
115
116         ImageLoader *img_loader;
117
118         GtkTreeSortable *sortable;
119         gint set_count;
120
121         /* second set comparison stuff */
122
123         gboolean second_set;            /* second set enabled ? */
124         GList *second_list;             /* second set dropped files */
125         gboolean second_drop;           /* drop is on second set */
126
127         GtkWidget *second_vbox;         /* box of second widgets */
128         GtkWidget *second_listview;
129         GtkWidget *second_status_label;
130
131         gboolean color_frozen;
132 };
133
134
135 DupeWindow *dupe_window_new(void);
136
137 void dupe_window_clear(DupeWindow *dw);
138 void dupe_window_close(DupeWindow *dw);
139
140 void dupe_window_add_collection(DupeWindow *dw, CollectionData *collection);
141 void dupe_window_add_files(DupeWindow *dw, GList *list, gboolean recurse);
142
143 /* cell max with/height hack utility */
144 void cell_renderer_height_override(GtkCellRenderer *renderer);
145
146
147 #endif
148 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */