-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-desktop-icon-view.c
802 lines (634 loc) · 24.8 KB
/
nemo-desktop-icon-view.c
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* fm-desktop-icon-view.c - implementation of icon view for managing the desktop.
Copyright (C) 2000, 2001 Eazel, Inc.mou
The Gnome Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 51 Franklin Street - Suite 500,
Boston, MA 02110-1335, USA.
Authors: Mike Engber <[email protected]>
Gene Z. Ragan <[email protected]>
Miguel de Icaza <[email protected]>
*/
#include <config.h>
#include "nemo-desktop-icon-view.h"
#include "nemo-actions.h"
#include "nemo-application.h"
#include "nemo-desktop-manager.h"
#include "nemo-desktop-window.h"
#include "nemo-icon-view-container.h"
#include "nemo-view-factory.h"
#include "nemo-view.h"
#include <X11/Xatom.h>
#include <gtk/gtk.h>
#include <eel/eel-glib-extensions.h>
#include <eel/eel-gtk-extensions.h>
#include <eel/eel-vfs-extensions.h>
#include <fcntl.h>
#include <gdk/gdkx.h>
#include <glib/gi18n.h>
#include <libnemo-private/nemo-desktop-icon-file.h>
#include <libnemo-private/nemo-directory-notify.h>
#include <libnemo-private/nemo-file-changes-queue.h>
#include <libnemo-private/nemo-file-operations.h>
#include <libnemo-private/nemo-file-utilities.h>
#include <libnemo-private/nemo-ui-utilities.h>
#include <libnemo-private/nemo-global-preferences.h>
#include <libnemo-private/nemo-link.h>
#include <libnemo-private/nemo-metadata.h>
#include <libnemo-private/nemo-monitor.h>
#include <libnemo-private/nemo-program-choosing.h>
#include <libnemo-private/nemo-trash-monitor.h>
#include <libnemo-private/nemo-desktop-utils.h>
#include <limits.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
/* Timeout to check the desktop directory for updates */
#define RESCAN_TIMEOUT 4
struct NemoDesktopIconViewDetails
{
GdkWindow *root_window;
GtkActionGroup *desktop_action_group;
guint desktop_merge_id;
/* For the desktop rescanning
*/
gulong delayed_init_signal;
guint reload_desktop_timeout;
gboolean pending_rescan;
};
static void default_zoom_level_changed (gpointer user_data);
static void real_merge_menus (NemoView *view);
static void real_update_menus (NemoView *view);
static void nemo_desktop_icon_view_update_icon_container_fonts (NemoDesktopIconView *view);
static void font_changed_callback (gpointer callback_data);
static void nemo_desktop_icon_view_constructed (GObject *object);
G_DEFINE_TYPE (NemoDesktopIconView, nemo_desktop_icon_view, NEMO_TYPE_ICON_VIEW)
static char *desktop_directory;
static time_t desktop_dir_modify_time;
#define get_icon_container(w) nemo_icon_view_get_icon_container(NEMO_ICON_VIEW (w))
static void
desktop_directory_changed_callback (gpointer callback_data)
{
g_free (desktop_directory);
desktop_directory = nemo_get_desktop_directory ();
}
static void
update_margins (NemoDesktopIconView *icon_view)
{
NemoIconContainer *icon_container;
gint current_monitor;
gint l, r, t, b;
icon_container = get_icon_container (icon_view);
g_object_get (NEMO_DESKTOP_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (icon_view))),
"monitor", ¤t_monitor,
NULL);
nemo_desktop_manager_get_margins (nemo_desktop_manager_get (), current_monitor, &l, &r, &t, &b);
nemo_icon_container_set_margins (icon_container, l, r, t, b);
}
static GdkFilterReturn
gdk_filter_func (GdkXEvent *gdk_xevent,
GdkEvent *event,
gpointer data)
{
XEvent *xevent = gdk_xevent;
NemoDesktopIconView *icon_view;
icon_view = NEMO_DESKTOP_ICON_VIEW (data);
switch (xevent->type) {
case PropertyNotify:
if (xevent->xproperty.atom == gdk_x11_get_xatom_by_name ("_NET_WORKAREA")) {
update_margins (icon_view);
}
break;
default:
break;
}
return GDK_FILTER_CONTINUE;
}
static const char *
real_get_id (NemoView *view)
{
return NEMO_DESKTOP_ICON_VIEW_ID;
}
static gboolean
should_show_file_on_current_monitor (NemoView *view, NemoFile *file)
{
gint current_monitor = nemo_desktop_utils_get_monitor_for_widget (GTK_WIDGET (view));
gint file_monitor = nemo_file_get_monitor_number (file);
NemoDesktopManager *dm = nemo_desktop_manager_get ();
if (current_monitor == file_monitor) {
return TRUE;
}
if (nemo_desktop_manager_get_primary_only (dm)) {
return TRUE;
}
if (file_monitor > -1 &&
!g_settings_get_boolean (nemo_desktop_preferences, NEMO_PREFERENCES_SHOW_ORPHANED_DESKTOP_ICONS)) {
return FALSE;
}
if (file_monitor == -1) {
/* New file, no previous metadata - this should go on the primary monitor */
return nemo_desktop_manager_get_monitor_is_primary (dm, current_monitor);
}
if (!nemo_desktop_manager_get_monitor_is_active (dm, file_monitor)) {
nemo_file_set_is_desktop_orphan (file, TRUE);
if (nemo_desktop_manager_get_monitor_is_primary (dm, current_monitor)) {
return TRUE;
}
}
return FALSE;
}
static void
real_add_file (NemoView *view, NemoFile *file, NemoDirectory *directory)
{
NemoIconView *icon_view;
NemoIconContainer *icon_container;
g_assert (directory == nemo_view_get_model (view));
if (!should_show_file_on_current_monitor (view, file)) {
return;
}
icon_view = NEMO_ICON_VIEW (view);
icon_container = get_icon_container (icon_view);
if (nemo_icon_container_add (icon_container, NEMO_ICON_CONTAINER_ICON_DATA (file))) {
nemo_file_ref (file);
}
}
static void
unrealized_callback (GtkWidget *widget, NemoDesktopIconView *desktop_icon_view)
{
g_return_if_fail (desktop_icon_view->details->root_window != NULL);
gdk_window_remove_filter (desktop_icon_view->details->root_window,
gdk_filter_func,
desktop_icon_view);
desktop_icon_view->details->root_window = NULL;
}
static void
realized_callback (GtkWidget *widget, NemoDesktopIconView *desktop_icon_view)
{
GdkWindow *root_window;
GdkScreen *screen;
g_return_if_fail (desktop_icon_view->details->root_window == NULL);
screen = gtk_widget_get_screen (widget);
root_window = gdk_screen_get_root_window (screen);
desktop_icon_view->details->root_window = root_window;
update_margins (desktop_icon_view);
/* Setup the property filter */
gdk_window_set_events (root_window, GDK_PROPERTY_CHANGE_MASK);
gdk_window_add_filter (root_window,
gdk_filter_func,
desktop_icon_view);
}
static void
nemo_desktop_icon_view_dispose (GObject *object)
{
NemoDesktopIconView *icon_view;
GtkUIManager *ui_manager;
icon_view = NEMO_DESKTOP_ICON_VIEW (object);
/* Remove desktop rescan timeout. */
if (icon_view->details->reload_desktop_timeout != 0) {
g_source_remove (icon_view->details->reload_desktop_timeout);
icon_view->details->reload_desktop_timeout = 0;
}
ui_manager = nemo_view_get_ui_manager (NEMO_VIEW (icon_view));
if (ui_manager != NULL) {
nemo_ui_unmerge_ui (ui_manager,
&icon_view->details->desktop_merge_id,
&icon_view->details->desktop_action_group);
}
g_signal_handlers_disconnect_by_func (nemo_icon_view_preferences,
default_zoom_level_changed,
icon_view);
g_signal_handlers_disconnect_by_func (nemo_desktop_preferences,
font_changed_callback,
icon_view);
g_signal_handlers_disconnect_by_func (nemo_preferences,
desktop_directory_changed_callback,
NULL);
g_signal_handlers_disconnect_by_func (gnome_lockdown_preferences,
nemo_view_update_menus,
icon_view);
G_OBJECT_CLASS (nemo_desktop_icon_view_parent_class)->dispose (object);
}
static void
nemo_desktop_icon_view_class_init (NemoDesktopIconViewClass *class)
{
NemoViewClass *vclass;
vclass = NEMO_VIEW_CLASS (class);
G_OBJECT_CLASS (class)->dispose = nemo_desktop_icon_view_dispose;
G_OBJECT_CLASS (class)->constructed = nemo_desktop_icon_view_constructed;
NEMO_ICON_VIEW_CLASS (class)->use_grid_container = FALSE;
vclass->merge_menus = real_merge_menus;
vclass->update_menus = real_update_menus;
vclass->get_view_id = real_get_id;
vclass->add_file = real_add_file;
#if GTK_CHECK_VERSION(3, 21, 0)
GtkWidgetClass *wclass = GTK_WIDGET_CLASS (class);
gtk_widget_class_set_css_name (wclass, "nemo-desktop-icon-view");
#endif
g_type_class_add_private (class, sizeof (NemoDesktopIconViewDetails));
}
static void
nemo_desktop_icon_view_handle_middle_click (NemoIconContainer *icon_container,
GdkEventButton *event,
NemoDesktopIconView *desktop_icon_view)
{
XButtonEvent x_event;
GdkDevice *keyboard = NULL, *pointer = NULL, *cur;
GdkDeviceManager *manager;
GList *list, *l;
manager = gdk_display_get_device_manager (gtk_widget_get_display (GTK_WIDGET (icon_container)));
list = gdk_device_manager_list_devices (manager, GDK_DEVICE_TYPE_MASTER);
for (l = list; l != NULL; l = l->next) {
cur = l->data;
if (pointer == NULL && (gdk_device_get_source (cur) == GDK_SOURCE_MOUSE)) {
pointer = cur;
}
if (keyboard == NULL && (gdk_device_get_source (cur) == GDK_SOURCE_KEYBOARD)) {
keyboard = cur;
}
if (pointer != NULL && keyboard != NULL) {
break;
}
}
g_list_free (list);
/* During a mouse click we have the pointer and keyboard grab.
* We will send a fake event to the root window which will cause it
* to try to get the grab so we need to let go ourselves.
*/
if (pointer != NULL) {
gdk_device_ungrab (pointer, GDK_CURRENT_TIME);
}
if (keyboard != NULL) {
gdk_device_ungrab (keyboard, GDK_CURRENT_TIME);
}
/* Stop the event because we don't want anyone else dealing with it. */
gdk_flush ();
g_signal_stop_emission_by_name (icon_container, "middle_click");
/* build an X event to represent the middle click. */
x_event.type = ButtonPress;
x_event.send_event = True;
x_event.display = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ());
x_event.window = GDK_ROOT_WINDOW ();
x_event.root = GDK_ROOT_WINDOW ();
x_event.subwindow = 0;
x_event.time = event->time;
x_event.x = event->x;
x_event.y = event->y;
x_event.x_root = event->x_root;
x_event.y_root = event->y_root;
x_event.state = event->state;
x_event.button = event->button;
x_event.same_screen = True;
/* Send it to the root window, the window manager will handle it. */
XSendEvent (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), GDK_ROOT_WINDOW (), True,
ButtonPressMask, (XEvent *) &x_event);
}
static void
desktop_icon_container_realize (GtkWidget *widget,
NemoDesktopIconView *desktop_icon_view)
{
GdkWindow *bin_window;
GdkRGBA transparent = { 0, 0, 0, 0 };
bin_window = gtk_layout_get_bin_window (GTK_LAYOUT (widget));
gdk_window_set_background_rgba (bin_window, &transparent);
}
static NemoZoomLevel
get_default_zoom_level (void)
{
NemoZoomLevel default_zoom_level;
default_zoom_level = g_settings_get_enum (nemo_icon_view_preferences,
NEMO_PREFERENCES_ICON_VIEW_DEFAULT_ZOOM_LEVEL);
return CLAMP (default_zoom_level, NEMO_ZOOM_LEVEL_SMALLEST, NEMO_ZOOM_LEVEL_LARGEST);
}
static void
default_zoom_level_changed (gpointer user_data)
{
NemoZoomLevel new_level;
NemoDesktopIconView *desktop_icon_view;
desktop_icon_view = NEMO_DESKTOP_ICON_VIEW (user_data);
new_level = get_default_zoom_level ();
nemo_icon_container_set_zoom_level (get_icon_container (desktop_icon_view),
new_level);
}
static gboolean
do_desktop_rescan (gpointer data)
{
NemoDesktopIconView *desktop_icon_view;
struct stat buf;
desktop_icon_view = NEMO_DESKTOP_ICON_VIEW (data);
if (desktop_icon_view->details->pending_rescan) {
return TRUE;
}
if (stat (desktop_directory, &buf) == -1) {
return TRUE;
}
if (buf.st_ctime == desktop_dir_modify_time) {
return TRUE;
}
desktop_icon_view->details->pending_rescan = TRUE;
nemo_directory_force_reload
(nemo_view_get_model (NEMO_VIEW (desktop_icon_view)));
return TRUE;
}
static void
done_loading (NemoDirectory *model,
NemoDesktopIconView *desktop_icon_view)
{
struct stat buf;
desktop_icon_view->details->pending_rescan = FALSE;
if (stat (desktop_directory, &buf) == -1) {
return;
}
desktop_dir_modify_time = buf.st_ctime;
}
/* This function is used because the NemoDirectory model does not
* exist always in the desktop_icon_view, so we wait until it has been
* instantiated.
*/
static void
delayed_init (NemoDesktopIconView *desktop_icon_view)
{
/* Keep track of the load time. */
g_signal_connect_object (nemo_view_get_model (NEMO_VIEW (desktop_icon_view)),
"done_loading",
G_CALLBACK (done_loading), desktop_icon_view, 0);
/* Monitor desktop directory. */
desktop_icon_view->details->reload_desktop_timeout =
g_timeout_add_seconds (RESCAN_TIMEOUT, do_desktop_rescan, desktop_icon_view);
g_signal_handler_disconnect (desktop_icon_view,
desktop_icon_view->details->delayed_init_signal);
desktop_icon_view->details->delayed_init_signal = 0;
}
static void
font_changed_callback (gpointer callback_data)
{
g_return_if_fail (NEMO_IS_DESKTOP_ICON_VIEW (callback_data));
nemo_desktop_icon_view_update_icon_container_fonts (NEMO_DESKTOP_ICON_VIEW (callback_data));
}
static void
nemo_desktop_icon_view_update_icon_container_fonts (NemoDesktopIconView *icon_view)
{
NemoIconContainer *icon_container;
char *font;
icon_container = get_icon_container (icon_view);
g_assert (icon_container != NULL);
font = g_settings_get_string (nemo_desktop_preferences,
NEMO_PREFERENCES_DESKTOP_FONT);
nemo_icon_container_set_font (icon_container, font);
g_free (font);
}
static void
nemo_desktop_icon_view_init (NemoDesktopIconView *desktop_icon_view)
{
desktop_icon_view->details = G_TYPE_INSTANCE_GET_PRIVATE (desktop_icon_view,
NEMO_TYPE_DESKTOP_ICON_VIEW,
NemoDesktopIconViewDetails);
}
static void
nemo_desktop_icon_view_constructed (GObject *object)
{
NemoDesktopIconView *desktop_icon_view;
NemoIconContainer *icon_container;
GtkAllocation allocation;
GtkAdjustment *hadj, *vadj;
desktop_icon_view = NEMO_DESKTOP_ICON_VIEW (object);
G_OBJECT_CLASS (nemo_desktop_icon_view_parent_class)->constructed (G_OBJECT (desktop_icon_view));
if (desktop_directory == NULL) {
g_signal_connect_swapped (nemo_preferences, "changed::" NEMO_PREFERENCES_DESKTOP_IS_HOME_DIR,
G_CALLBACK(desktop_directory_changed_callback),
NULL);
desktop_directory_changed_callback (NULL);
}
icon_container = get_icon_container (desktop_icon_view);
nemo_icon_container_set_use_drop_shadows (icon_container, TRUE);
nemo_icon_view_container_set_sort_desktop (NEMO_ICON_VIEW_CONTAINER (icon_container), TRUE);
/* Do a reload on the desktop if we don't have FAM, a smarter
* way to keep track of the items on the desktop.
*/
if (!nemo_monitor_active ()) {
desktop_icon_view->details->delayed_init_signal = g_signal_connect_object
(desktop_icon_view, "begin_loading",
G_CALLBACK (delayed_init), desktop_icon_view, 0);
}
nemo_icon_container_set_is_fixed_size (icon_container, TRUE);
nemo_icon_container_set_is_desktop (icon_container, TRUE);
nemo_icon_container_set_store_layout_timestamps (icon_container, TRUE);
/* Set allocation to be at 0, 0 */
gtk_widget_get_allocation (GTK_WIDGET (icon_container), &allocation);
allocation.x = 0;
allocation.y = 0;
gtk_widget_set_allocation (GTK_WIDGET (icon_container), &allocation);
gtk_widget_queue_resize (GTK_WIDGET (icon_container));
hadj = gtk_scrollable_get_hadjustment (GTK_SCROLLABLE (icon_container));
vadj = gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (icon_container));
gtk_adjustment_set_value (hadj, 0);
gtk_adjustment_set_value (vadj, 0);
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (desktop_icon_view),
GTK_SHADOW_NONE);
nemo_view_ignore_hidden_file_preferences
(NEMO_VIEW (desktop_icon_view));
nemo_view_set_show_foreign (NEMO_VIEW (desktop_icon_view),
FALSE);
/* Set our default layout mode */
nemo_icon_container_set_layout_mode (icon_container,
gtk_widget_get_direction (GTK_WIDGET(icon_container)) == GTK_TEXT_DIR_RTL ?
NEMO_ICON_LAYOUT_T_B_R_L :
NEMO_ICON_LAYOUT_T_B_L_R);
g_signal_connect_object (icon_container, "middle_click",
G_CALLBACK (nemo_desktop_icon_view_handle_middle_click), desktop_icon_view, 0);
g_signal_connect_object (icon_container, "realize",
G_CALLBACK (desktop_icon_container_realize), desktop_icon_view, 0);
g_signal_connect_swapped (nemo_icon_view_preferences,
"changed::" NEMO_PREFERENCES_ICON_VIEW_DEFAULT_ZOOM_LEVEL,
G_CALLBACK (default_zoom_level_changed),
desktop_icon_view);
g_signal_connect_object (desktop_icon_view, "realize",
G_CALLBACK (realized_callback), desktop_icon_view, 0);
g_signal_connect_object (desktop_icon_view, "unrealize",
G_CALLBACK (unrealized_callback), desktop_icon_view, 0);
g_signal_connect_swapped (nemo_desktop_preferences,
"changed::" NEMO_PREFERENCES_DESKTOP_FONT,
G_CALLBACK (font_changed_callback),
desktop_icon_view);
default_zoom_level_changed (desktop_icon_view);
nemo_desktop_icon_view_update_icon_container_fonts (desktop_icon_view);
g_signal_connect_swapped (gnome_lockdown_preferences,
"changed::" NEMO_PREFERENCES_LOCKDOWN_COMMAND_LINE,
G_CALLBACK (nemo_view_update_menus),
desktop_icon_view);
}
static void
action_stretch_callback (GtkAction *action,
gpointer callback_data)
{
g_assert (NEMO_IS_ICON_VIEW (callback_data));
nemo_icon_container_show_stretch_handles (get_icon_container (callback_data));
}
static void
action_unstretch_callback (GtkAction *action,
gpointer callback_data)
{
g_assert (NEMO_IS_ICON_VIEW (callback_data));
nemo_icon_container_unstretch (get_icon_container (callback_data));
}
static void
action_empty_trash_conditional_callback (GtkAction *action,
gpointer data)
{
g_assert (NEMO_IS_VIEW (data));
nemo_file_operations_empty_trash (GTK_WIDGET (data));
}
static gboolean
trash_link_is_selection (NemoView *view)
{
GList *selection;
NemoDesktopLink *link;
gboolean result;
result = FALSE;
selection = nemo_view_get_selection (view);
if ((g_list_length (selection) == 1) &&
NEMO_IS_DESKTOP_ICON_FILE (selection->data)) {
link = nemo_desktop_icon_file_get_link (NEMO_DESKTOP_ICON_FILE (selection->data));
/* link may be NULL if the link was recently removed (unmounted) */
if (link != NULL &&
nemo_desktop_link_get_link_type (link) == NEMO_DESKTOP_LINK_TRASH) {
result = TRUE;
}
if (link) {
g_object_unref (link);
}
}
nemo_file_list_free (selection);
return result;
}
static void
real_update_menus (NemoView *view)
{
NemoDesktopIconView *desktop_view;
NemoIconContainer *icon_container;
char *label;
gint selection_count;
gboolean include_empty_trash;
GtkAction *action;
g_assert (NEMO_IS_DESKTOP_ICON_VIEW (view));
NEMO_VIEW_CLASS (nemo_desktop_icon_view_parent_class)->update_menus (view);
desktop_view = NEMO_DESKTOP_ICON_VIEW (view);
/* Empty Trash */
include_empty_trash = trash_link_is_selection (view);
action = gtk_action_group_get_action (desktop_view->details->desktop_action_group,
NEMO_ACTION_EMPTY_TRASH_CONDITIONAL);
gtk_action_set_visible (action,
include_empty_trash);
if (include_empty_trash) {
label = g_strdup (_("E_mpty Trash"));
g_object_set (action , "label", label, NULL);
gtk_action_set_sensitive (action,
!nemo_trash_monitor_is_empty ());
g_free (label);
}
selection_count = nemo_view_get_selection_count (view);
icon_container = get_icon_container (desktop_view);
action = gtk_action_group_get_action (desktop_view->details->desktop_action_group,
NEMO_ACTION_STRETCH);
gtk_action_set_sensitive (action,
selection_count == 1 &&
icon_container != NULL &&
!nemo_icon_container_has_stretch_handles (icon_container));
gtk_action_set_visible (action, TRUE);
action = gtk_action_group_get_action (desktop_view->details->desktop_action_group,
NEMO_ACTION_UNSTRETCH);
g_object_set (action, "label",
(selection_count > 1) ?
_("Restore Icons' Original Si_zes")
: _("Restore Icon's Original Si_ze"),
NULL);
gtk_action_set_sensitive (action,
icon_container != NULL &&
nemo_icon_container_is_stretched (icon_container));
gtk_action_set_visible (action, TRUE);
}
static const GtkActionEntry desktop_view_entries[] = {
/* name, stock id */ { "Stretch", NULL,
/* label, accelerator */ N_("Resize Icon..."), NULL,
/* tooltip */ N_("Make the selected icon resizable"),
G_CALLBACK (action_stretch_callback) },
/* name, stock id */ { "Unstretch", NULL,
/* label, accelerator */ N_("Restore Icons' Original Si_zes"), NULL,
/* tooltip */ N_("Restore each selected icon to its original size"),
G_CALLBACK (action_unstretch_callback) },
/* name, stock id */ { "Empty Trash Conditional", NULL,
/* label, accelerator */ N_("Empty Trash"), NULL,
/* tooltip */ N_("Delete all items in the Trash"),
G_CALLBACK (action_empty_trash_conditional_callback) }
};
static void
real_merge_menus (NemoView *view)
{
NemoDesktopIconView *desktop_view;
GtkUIManager *ui_manager;
GtkActionGroup *action_group;
NEMO_VIEW_CLASS (nemo_desktop_icon_view_parent_class)->merge_menus (view);
desktop_view = NEMO_DESKTOP_ICON_VIEW (view);
ui_manager = nemo_view_get_ui_manager (view);
action_group = gtk_action_group_new ("DesktopViewActions");
gtk_action_group_set_translation_domain (action_group, GETTEXT_PACKAGE);
desktop_view->details->desktop_action_group = action_group;
gtk_action_group_add_actions (action_group,
desktop_view_entries, G_N_ELEMENTS (desktop_view_entries),
view);
gtk_ui_manager_insert_action_group (ui_manager, action_group, 0);
g_object_unref (action_group); /* owned by ui manager */
desktop_view->details->desktop_merge_id =
gtk_ui_manager_add_ui_from_resource (ui_manager, "/org/nemo/nemo-desktop-icon-view-ui.xml", NULL);
}
static NemoView *
nemo_desktop_icon_view_create (NemoWindowSlot *slot)
{
NemoIconView *view;
view = g_object_new (NEMO_TYPE_DESKTOP_ICON_VIEW,
"window-slot", slot,
"supports-zooming", FALSE,
"supports-auto-layout", FALSE,
"is-desktop", TRUE,
"supports-keep-aligned", TRUE,
"supports-labels-beside-icons", FALSE,
NULL);
return NEMO_VIEW (view);
}
static gboolean
nemo_desktop_icon_view_supports_uri (const char *uri,
GFileType file_type,
const char *mime_type)
{
if (g_str_has_prefix (uri, EEL_DESKTOP_URI)) {
return TRUE;
}
return FALSE;
}
static NemoViewInfo nemo_desktop_icon_view = {
(char *)NEMO_DESKTOP_ICON_VIEW_ID,
(char *)"Desktop View",
(char *)"_Desktop",
(char *)N_("The desktop view encountered an error."),
(char *)N_("The desktop view encountered an error while starting up."),
(char *)"Display this location with the desktop view.",
nemo_desktop_icon_view_create,
nemo_desktop_icon_view_supports_uri
};
void
nemo_desktop_icon_view_register (void)
{
nemo_desktop_icon_view.error_label = _(nemo_desktop_icon_view.error_label);
nemo_desktop_icon_view.startup_error_label = _(nemo_desktop_icon_view.startup_error_label);
nemo_view_factory_register (&nemo_desktop_icon_view);
}