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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
|
/*
* Copyright (C) 2022 The GNOME project contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include "nautilus-name-cell.h"
#include "nautilus-directory.h"
#include "nautilus-file.h"
#include "nautilus-file-utilities.h"
#include "nautilus-image.h"
#include "nautilus-thumbnails.h"
#include "nautilus-ui-utilities.h"
#include "nautilus-view-item.h"
#define SPINNER_DELAY_MS 200
struct _NautilusNameCell
{
NautilusViewCell parent_instance;
GSignalGroup *item_signal_group;
GQuark path_attribute_q;
GFile *file_path_base_location;
GtkWidget *top_child;
GtkWidget *expander;
GtkWidget *content;
GtkWidget *fixed_height_box;
GtkWidget *spinner;
GtkWidget *icon;
GtkWidget *emblems_box;
GtkWidget *snippet_button;
GtkLabel *snippet;
GtkWidget *path;
gboolean show_snippet;
gboolean in_file_change;
guint loading_timeout_id;
};
G_DEFINE_FINAL_TYPE (NautilusNameCell, nautilus_name_cell, NAUTILUS_TYPE_VIEW_CELL)
static gchar *
get_path_text (NautilusFile *file,
GQuark path_attribute_q,
GFile *base_location)
{
if (path_attribute_q == 0)
{
return NULL;
}
g_autofree gchar *path = nautilus_file_get_string_attribute_q (file, path_attribute_q);
g_autoptr (GFile) dir_location = g_file_new_for_commandline_arg (path);
if (base_location != NULL && g_file_equal (base_location, dir_location))
{
/* Only occurs when search result is
* a direct child of the base location
*/
return NULL;
}
g_autoptr (GFile) home_location = g_file_new_for_path (g_get_home_dir ());
if (g_file_equal (dir_location, home_location))
{
return nautilus_compute_title_for_location (home_location);
}
g_autoptr (GFile) root_location = g_file_new_for_path ("/");
GFile *relative_location_base = base_location;
if (relative_location_base == NULL)
{
/* Only occurs in Recent, Starred and Trash. */
relative_location_base = home_location;
}
if (!g_file_equal (relative_location_base, root_location) &&
g_file_has_prefix (dir_location, relative_location_base))
{
g_autofree gchar *relative_path = NULL;
g_autofree gchar *display_name = NULL;
relative_path = g_file_get_relative_path (relative_location_base, dir_location);
display_name = g_filename_display_name (relative_path);
/* Ensure a trailing slash to emphasize it is a directory */
if (g_str_has_suffix (display_name, G_DIR_SEPARATOR_S))
{
return g_steal_pointer (&display_name);
}
return g_strconcat (display_name, G_DIR_SEPARATOR_S, NULL);
}
return g_steal_pointer (&path);
}
static void
update_labels (NautilusNameCell *self)
{
g_autoptr (NautilusViewItem) item = NULL;
NautilusFile *file;
g_autofree gchar *path_text = NULL;
const gchar *fts_snippet = NULL;
item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
g_return_if_fail (item != NULL);
file = nautilus_view_item_get_file (item);
path_text = get_path_text (file,
self->path_attribute_q,
self->file_path_base_location);
if (self->show_snippet)
{
fts_snippet = nautilus_file_get_search_fts_snippet (file);
}
gtk_label_set_text (GTK_LABEL (self->path), path_text);
if (fts_snippet != NULL &&
!g_str_equal (gtk_label_get_text (self->snippet), fts_snippet))
{
gtk_label_set_markup (self->snippet, fts_snippet);
}
gtk_widget_set_visible (self->path, (path_text != NULL));
gtk_widget_set_visible (self->snippet_button, (fts_snippet != NULL));
}
static void
update_icon (NautilusNameCell *self)
{
g_autoptr (NautilusViewItem) item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
gboolean is_cut;
g_return_if_fail (item != NULL);
g_object_get (item, "is-cut", &is_cut, NULL);
if (is_cut)
{
gtk_widget_set_visible (self->icon, FALSE);
gtk_widget_remove_css_class (self->icon, "hidden-file");
return;
}
guint icon_size;
g_autoptr (GdkPaintable) icon_paintable = NULL;
NautilusFile *file = nautilus_view_item_get_file (item);
gint scale_factor = gtk_widget_get_scale_factor (GTK_WIDGET (self));
NautilusFileIconFlags flags = NAUTILUS_FILE_ICON_FLAGS_NONE;
gboolean show_thumbnail;
g_object_get (self, "icon-size", &icon_size, NULL);
icon_paintable = nautilus_file_get_icon_paintable (file, icon_size, scale_factor, flags);
show_thumbnail = icon_size >= NAUTILUS_THUMBNAIL_MINIMUM_ICON_SIZE &&
nautilus_file_should_show_thumbnail (file);
gtk_widget_set_visible (self->icon, TRUE);
nautilus_image_set_size (NAUTILUS_IMAGE (self->icon), icon_size);
nautilus_image_set_fallback (NAUTILUS_IMAGE (self->icon), icon_paintable);
if (self->in_file_change ||
!show_thumbnail)
{
nautilus_image_set_source (NAUTILUS_IMAGE (self->icon), NULL);
}
if (show_thumbnail)
{
g_autoptr (GFile) location = nautilus_file_get_location (file);
nautilus_image_set_source (NAUTILUS_IMAGE (self->icon), location);
}
if (nautilus_file_is_hidden_file (file))
{
gtk_widget_add_css_class (self->icon, "hidden-file");
}
else
{
gtk_widget_remove_css_class (self->icon, "hidden-file");
}
}
static void
update_emblems (NautilusNameCell *self)
{
g_autoptr (NautilusViewItem) item = NULL;
NautilusFile *file;
GtkWidget *child;
GtkIconTheme *theme;
g_autolist (GIcon) emblems = NULL;
item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
g_return_if_fail (item != NULL);
file = nautilus_view_item_get_file (item);
/* Remove old emblems. */
while ((child = gtk_widget_get_first_child (self->emblems_box)) != NULL)
{
gtk_box_remove (GTK_BOX (self->emblems_box), child);
}
theme = gtk_icon_theme_get_for_display (gdk_display_get_default ());
emblems = nautilus_file_get_emblem_icons (file);
for (GList *l = emblems; l != NULL; l = l->next)
{
if (!gtk_icon_theme_has_gicon (theme, l->data))
{
g_autofree gchar *icon_string = g_icon_to_string (l->data);
g_warning ("Failed to add emblem. “%s” not found in the icon theme",
icon_string);
continue;
}
gtk_box_append (GTK_BOX (self->emblems_box),
gtk_image_new_from_gicon (l->data));
}
}
static void
on_file_changed (NautilusNameCell *self)
{
self->in_file_change = TRUE;
update_icon (self);
update_labels (self);
update_emblems (self);
self->in_file_change = FALSE;
}
static void
on_icon_size_changed (NautilusNameCell *self)
{
g_autoptr (NautilusViewItem) item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
if (item == NULL)
{
/* Cell is not bound to an item yet. Do nothing. */
return;
}
update_icon (self);
gtk_widget_queue_resize (GTK_WIDGET (self));
}
static void
on_item_drag_accept_changed (NautilusNameCell *self)
{
gboolean drag_accept;
g_autoptr (NautilusViewItem) item = NULL;
GtkWidget *list_row = gtk_widget_get_parent (gtk_widget_get_parent (GTK_WIDGET (self)));
item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
g_object_get (item, "drag-accept", &drag_accept, NULL);
if (drag_accept)
{
gtk_widget_set_state_flags (list_row, GTK_STATE_FLAG_DROP_ACTIVE, FALSE);
}
else
{
gtk_widget_unset_state_flags (list_row, GTK_STATE_FLAG_DROP_ACTIVE);
}
}
static void
on_loading_timeout (gpointer user_data)
{
NautilusNameCell *self = NAUTILUS_NAME_CELL (user_data);
g_autoptr (NautilusViewItem) item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
gboolean is_loading = nautilus_view_item_get_loading (item);
self->loading_timeout_id = 0;
if (is_loading)
{
gtk_widget_set_visible (self->spinner, TRUE);
}
}
static void
on_item_is_loading_changed (NautilusNameCell *self)
{
g_autoptr (NautilusViewItem) item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
gboolean is_loading = nautilus_view_item_get_loading (item);
g_clear_handle_id (&self->loading_timeout_id, g_source_remove);
if (is_loading)
{
self->loading_timeout_id = g_timeout_add_once (SPINNER_DELAY_MS,
on_loading_timeout,
self);
}
else
{
g_autoptr (NautilusDirectory) directory = nautilus_directory_get_for_file (nautilus_view_item_get_file (item));
gtk_tree_expander_set_hide_expander (GTK_TREE_EXPANDER (self->expander),
!nautilus_directory_is_not_empty (directory));
gtk_widget_set_visible (self->spinner, FALSE);
}
}
static void
popover_show_cb (NautilusNameCell *self)
{
const char *label = gtk_label_get_label (self->snippet);
gtk_accessible_announce (GTK_ACCESSIBLE (self),
label,
GTK_ACCESSIBLE_ANNOUNCEMENT_PRIORITY_MEDIUM);
}
static gboolean
on_label_query_tooltip (GtkWidget *widget,
int x,
int y,
gboolean keyboard_tip,
GtkTooltip *tooltip,
gpointer user_data)
{
GtkLabel *label = GTK_LABEL (widget);
if (pango_layout_is_ellipsized (gtk_label_get_layout (label)))
{
gtk_tooltip_set_text (tooltip, gtk_label_get_text (label));
return TRUE;
}
return FALSE;
}
static void
nautilus_name_cell_init (NautilusNameCell *self)
{
gtk_widget_init_template (GTK_WIDGET (self));
g_signal_connect (self, "notify::icon-size",
G_CALLBACK (on_icon_size_changed), NULL);
g_signal_connect (self, "notify::scale-factor", G_CALLBACK (on_icon_size_changed), NULL);
/* Connect automatically to an item. */
self->item_signal_group = g_signal_group_new (NAUTILUS_TYPE_VIEW_ITEM);
g_signal_group_connect_swapped (self->item_signal_group, "notify::drag-accept",
(GCallback) on_item_drag_accept_changed, self);
g_signal_group_connect_swapped (self->item_signal_group, "notify::is-cut",
(GCallback) update_icon, self);
g_signal_group_connect_swapped (self->item_signal_group, "notify::loading",
(GCallback) on_item_is_loading_changed, self);
g_signal_group_connect_swapped (self->item_signal_group, "file-changed",
(GCallback) on_file_changed, self);
g_signal_connect_object (self->item_signal_group, "bind",
(GCallback) on_file_changed, self,
G_CONNECT_SWAPPED);
g_object_bind_property (self, "item",
self->item_signal_group, "target",
G_BINDING_SYNC_CREATE);
}
static void
nautilus_name_cell_dispose (GObject *object)
{
NautilusNameCell *self = (NautilusNameCell *) object;
g_clear_handle_id (&self->loading_timeout_id, g_source_remove);
g_clear_object (&self->item_signal_group);
gtk_widget_dispose_template (GTK_WIDGET (self), NAUTILUS_TYPE_NAME_CELL);
G_OBJECT_CLASS (nautilus_name_cell_parent_class)->dispose (object);
}
static void
nautilus_name_cell_finalize (GObject *object)
{
NautilusNameCell *self = (NautilusNameCell *) object;
g_clear_object (&self->file_path_base_location);
G_OBJECT_CLASS (nautilus_name_cell_parent_class)->finalize (object);
}
static void
snapshot (GtkWidget *widget,
GtkSnapshot *snapshot)
{
NautilusNameCell *self = NAUTILUS_NAME_CELL (widget);
g_autoptr (NautilusViewItem) item = nautilus_view_cell_get_item (NAUTILUS_VIEW_CELL (self));
gboolean is_cut;
g_object_get (item, "is-cut", &is_cut, NULL);
if (is_cut)
{
graphene_rect_t dash_bounds;
if (gtk_widget_compute_bounds (self->fixed_height_box, widget, &dash_bounds))
{
AdwStyleManager *style_manager = adw_style_manager_get_default ();
gboolean is_high_contrast = adw_style_manager_get_high_contrast (style_manager);
guint icon_size;
GdkRGBA color, dashed_border_color, icon_color;
gboolean use_small_icon;
gchar *resource;
g_autoptr (GtkSvg) svg = NULL;
const double border_opacity = is_high_contrast ? 0.5 : 0.15;
const double dim_opacity = is_high_contrast ? 0.9 : 0.55;
graphene_rect_t icon_bounds = dash_bounds;
g_object_get (self, "icon-size", &icon_size, NULL);
use_small_icon = icon_size <= NAUTILUS_LIST_ICON_SIZE_MEDIUM;
resource = use_small_icon
? "/org/gnome/nautilus/icons/scalable/actions/cut-symbolic.svg"
: "/org/gnome/nautilus/icons/scalable/actions/cut-large-symbolic.svg";
svg = gtk_svg_new_from_resource (resource);
gtk_widget_get_color (widget, &color);
if (icon_size >= NAUTILUS_THUMBNAIL_MINIMUM_ICON_SIZE)
{
dashed_border_color = color;
dashed_border_color.alpha *= border_opacity;
nautilus_ui_draw_icon_dashed_border (snapshot, &dash_bounds, dashed_border_color);
graphene_rect_inset_r (&dash_bounds,
0.2 * dash_bounds.size.width,
0.2 * dash_bounds.size.height,
&icon_bounds);
}
icon_color = color;
icon_color.alpha *= dim_opacity;
nautilus_ui_draw_svg (snapshot, svg, &icon_bounds, icon_color);
}
else
{
g_warning ("Could not compute icon bounds in cell coordinates.");
}
}
GTK_WIDGET_CLASS (nautilus_name_cell_parent_class)->snapshot (widget, snapshot);
}
static void
nautilus_name_cell_class_init (NautilusNameCellClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
object_class->dispose = nautilus_name_cell_dispose;
object_class->finalize = nautilus_name_cell_finalize;
widget_class->snapshot = snapshot;
g_type_ensure (NAUTILUS_TYPE_IMAGE);
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BIN_LAYOUT);
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/nautilus/ui/nautilus-name-cell.ui");
/* Needs to add the direct child of the template widget to dispose it since
* a plain GtkWidget doesn't dispose it's child automatically. */
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, top_child);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, expander);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, content);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, fixed_height_box);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, spinner);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, icon);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, emblems_box);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, snippet_button);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, snippet);
gtk_widget_class_bind_template_child (widget_class, NautilusNameCell, path);
gtk_widget_class_bind_template_callback (widget_class, on_label_query_tooltip);
gtk_widget_class_bind_template_callback (widget_class, popover_show_cb);
}
NautilusViewCell *
nautilus_name_cell_new (NautilusListBase *view)
{
return NAUTILUS_VIEW_CELL (g_object_new (NAUTILUS_TYPE_NAME_CELL,
"view", view,
NULL));
}
void
nautilus_name_cell_set_path (NautilusNameCell *self,
GQuark path_attribute_q,
GFile *base_location)
{
self->path_attribute_q = path_attribute_q;
g_set_object (&self->file_path_base_location, base_location);
}
void
nautilus_name_cell_set_show_snippet (NautilusNameCell *self,
gboolean show)
{
self->show_snippet = show;
}
GtkTreeExpander *
nautilus_name_cell_get_expander (NautilusNameCell *self)
{
return GTK_TREE_EXPANDER (self->expander);
}
GtkWidget *
nautilus_name_cell_get_content (NautilusNameCell *self)
{
return self->content;
}
|