Add pan filtering to all of the pan view modes
[geeqie.git] / src / pan-view / pan-grid.c
1 /*
2  * Copyright (C) 2006 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 #include "pan-grid.h"
23
24 #include <math.h>
25
26 #include "pan-item.h"
27 #include "pan-util.h"
28 #include "pan-view-filter.h"
29
30 void pan_grid_compute(PanWindow *pw, FileData *dir_fd, gint *width, gint *height)
31 {
32         GList *list;
33         GList *work;
34         gint x, y;
35         gint grid_size;
36         gint next_y;
37
38         list = pan_list_tree(dir_fd, SORT_NAME, TRUE, pw->ignore_symlinks);
39         pan_filter_fd_list(&list, pw->filter_ui->filter_elements);
40
41         grid_size = (gint)sqrt((gdouble)g_list_length(list));
42         if (pw->size > PAN_IMAGE_SIZE_THUMB_LARGE)
43                 {
44                 grid_size = grid_size * (512 + PAN_THUMB_GAP) * pw->image_size / 100;
45                 }
46         else
47                 {
48                 grid_size = grid_size * (PAN_THUMB_SIZE + PAN_THUMB_GAP);
49                 }
50
51         next_y = 0;
52
53         *width = PAN_BOX_BORDER * 2;
54         *height = PAN_BOX_BORDER * 2;
55
56         x = PAN_THUMB_GAP;
57         y = PAN_THUMB_GAP;
58         work = list;
59         while (work)
60                 {
61                 FileData *fd;
62                 PanItem *pi;
63
64                 fd = work->data;
65                 work = work->next;
66
67                 if (pw->size > PAN_IMAGE_SIZE_THUMB_LARGE)
68                         {
69                         pi = pan_item_image_new(pw, fd, x, y, 10, 10);
70
71                         x += pi->width + PAN_THUMB_GAP;
72                         if (y + pi->height + PAN_THUMB_GAP > next_y) next_y = y + pi->height + PAN_THUMB_GAP;
73                         if (x > grid_size)
74                                 {
75                                 x = PAN_THUMB_GAP;
76                                 y = next_y;
77                                 }
78                         }
79                 else
80                         {
81                         pi = pan_item_thumb_new(pw, fd, x, y);
82
83                         x += PAN_THUMB_SIZE + PAN_THUMB_GAP;
84                         if (x > grid_size)
85                                 {
86                                 x = PAN_THUMB_GAP;
87                                 y += PAN_THUMB_SIZE + PAN_THUMB_GAP;
88                                 }
89                         }
90                 pan_item_size_coordinates(pi, PAN_THUMB_GAP, width, height);
91                 }
92
93         g_list_free(list);
94 }
95 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */