-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-main-application.c
986 lines (817 loc) · 31.5 KB
/
nemo-main-application.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
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* nemo-main-application: Nemo application subclass for standard windows
*
* Copyright (C) 1999, 2000 Red Hat, Inc.
* Copyright (C) 2000, 2001 Eazel, Inc.
* Copyright (C) 2010, Cosimo Cecchi <[email protected]>
*
* Nemo is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* Nemo 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, MA 02110-1335, USA.
*
*/
#include <config.h>
#include "nemo-main-application.h"
#if ENABLE_EMPTY_VIEW
#include "nemo-empty-view.h"
#endif /* ENABLE_EMPTY_VIEW */
#include "nemo-freedesktop-dbus.h"
#include "nemo-icon-view.h"
#include "nemo-image-properties-page.h"
#include "nemo-list-view.h"
#include "nemo-previewer.h"
#include "nemo-progress-ui-handler.h"
#include "nemo-self-check-functions.h"
#include "nemo-window.h"
#include "nemo-window-bookmarks.h"
#include "nemo-window-manage-views.h"
#include "nemo-window-private.h"
#include "nemo-window-slot.h"
#include "nemo-statusbar.h"
#include "nemo-notebook.h"
#include <libnemo-private/nemo-dbus-manager.h>
#include <libnemo-private/nemo-directory-private.h>
#include <libnemo-private/nemo-file-utilities.h>
#include <libnemo-private/nemo-file-operations.h>
#include <libnemo-private/nemo-global-preferences.h>
#include <libnemo-private/nemo-lib-self-check-functions.h>
#include <libnemo-private/nemo-module.h>
#include <libnemo-private/nemo-signaller.h>
#include <libnemo-private/nemo-ui-utilities.h>
#include <libnemo-private/nemo-undo-manager.h>
#include <libnemo-private/nemo-thumbnails.h>
#include <libnemo-private/nemo-search-engine-advanced.h>
#include <libnemo-extension/nemo-menu-provider.h>
#define DEBUG_FLAG NEMO_DEBUG_APPLICATION
#include <libnemo-private/nemo-debug.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <pwd.h>
#include <fcntl.h>
#include <errno.h>
#include <gdk/gdkx.h>
#include <glib/gstdio.h>
#include <glib/gi18n.h>
#include <gio/gio.h>
#include <eel/eel-gtk-extensions.h>
#include <eel/eel-stock-dialogs.h>
#define GNOME_DESKTOP_USE_UNSTABLE_API
#include <libcinnamon-desktop/gnome-desktop-thumbnail.h>
/* Keep window from shrinking down ridiculously small; numbers are somewhat arbitrary */
#define APPLICATION_WINDOW_MIN_WIDTH 300
#define APPLICATION_WINDOW_MIN_HEIGHT 100
#define START_STATE_CONFIG "start-state"
#define NEMO_ACCEL_MAP_SAVE_DELAY 30
/* Disable the self-check functionality */
#define NEMO_OMIT_SELF_CHECK "omit"
#define NEMO_NOTIFICATION_UNMOUNT_ICON_NAME "media-removable"
#define NEMO_NOTIFICATION_UNMOUNT_ID_PENDING "unmount-pending"
#define NEMO_NOTIFICATION_UNMOUNT_ID_DONE "unmount-done"
static void mount_removed_callback (GVolumeMonitor *monitor,
GMount *mount,
NemoMainApplication *application);
static void mount_added_callback (GVolumeMonitor *monitor,
GMount *mount,
NemoMainApplication *application);
G_DEFINE_TYPE (NemoMainApplication, nemo_main_application, NEMO_TYPE_APPLICATION);
struct _NemoMainApplicationPriv {
GVolumeMonitor *volume_monitor;
NemoDBusManager *dbus_manager;
NemoFreedesktopDBus *fdb_manager;
gchar *geometry;
};
static void
nemo_main_application_send_notification (NemoApplication *application,
const gchar *title,
const gchar *body,
const gchar *icon_name,
const gchar *notification_id,
const GNotificationPriority prio)
{
NemoMainApplication *app = NEMO_MAIN_APPLICATION (application);
GNotification *notification;
GIcon *icon;
icon = g_themed_icon_new (icon_name);
notification = g_notification_new (title);
g_notification_set_body (notification, body);
g_notification_set_icon (notification, icon);
g_notification_set_priority (notification, prio);
g_application_send_notification (G_APPLICATION (app), notification_id, notification);
g_object_unref (notification);
g_object_unref (icon);
}
static void
nemo_main_application_notify_unmount_done (NemoApplication *application,
const gchar *message)
{
NemoMainApplication *app = NEMO_MAIN_APPLICATION (application);
gchar **strings;
// remove notification for pending unmount state
g_application_withdraw_notification (G_APPLICATION (app), NEMO_NOTIFICATION_UNMOUNT_ID_PENDING);
g_return_if_fail (message != NULL);
strings = g_strsplit (message, "\n", 2);
nemo_main_application_send_notification (application, strings[0], strings[1],
NEMO_NOTIFICATION_UNMOUNT_ICON_NAME,
NEMO_NOTIFICATION_UNMOUNT_ID_DONE,
G_NOTIFICATION_PRIORITY_NORMAL);
g_strfreev (strings);
}
static void
nemo_main_application_notify_unmount_show (NemoApplication *application,
const gchar *message)
{
gchar **strings;
g_return_if_fail (message != NULL);
strings = g_strsplit (message, "\n", 2);
nemo_main_application_send_notification (application, strings[0], strings[1],
NEMO_NOTIFICATION_UNMOUNT_ICON_NAME,
NEMO_NOTIFICATION_UNMOUNT_ID_PENDING,
G_NOTIFICATION_PRIORITY_URGENT);
g_strfreev (strings);
}
static void
nemo_main_application_close_all_windows (NemoApplication *self)
{
GList *list_copy;
GList *l;
list_copy = g_list_copy (gtk_application_get_windows (GTK_APPLICATION (self)));
for (l = list_copy; l != NULL; l = l->next) {
if (NEMO_IS_WINDOW (l->data)) {
NemoWindow *window;
window = NEMO_WINDOW (l->data);
nemo_window_close (window);
}
}
g_list_free (list_copy);
}
static NemoWindow *
nemo_main_application_create_window (NemoApplication *application,
GdkScreen *screen)
{
NemoWindow *window;
char *geometry_string;
gboolean maximized;
g_return_val_if_fail (NEMO_IS_APPLICATION (application), NULL);
window = nemo_window_new (GTK_APPLICATION (application), screen);
maximized = g_settings_get_boolean
(nemo_window_state, NEMO_WINDOW_STATE_MAXIMIZED);
if (maximized) {
gtk_window_maximize (GTK_WINDOW (window));
} else {
gtk_window_unmaximize (GTK_WINDOW (window));
}
geometry_string = g_settings_get_string (nemo_window_state, NEMO_WINDOW_STATE_GEOMETRY);
if (NEMO_MAIN_APPLICATION (application)->priv->geometry == NULL &&
geometry_string != NULL &&
geometry_string[0] != 0) {
/* Ignore saved window position if a window with the same
* location is already showing. That way the two windows
* wont appear at the exact same location on the screen.
*/
eel_gtk_window_set_initial_geometry_from_string
(GTK_WINDOW (window),
geometry_string,
NEMO_WINDOW_MIN_WIDTH,
NEMO_WINDOW_MIN_HEIGHT,
TRUE);
}
g_free (geometry_string);
nemo_undo_manager_attach (application->undo_manager, G_OBJECT (window));
DEBUG ("Creating a new navigation window");
return window;
}
static void
mount_added_callback (GVolumeMonitor *monitor,
GMount *mount,
NemoMainApplication *application)
{
NemoDirectory *directory;
GFile *root;
gchar *uri;
root = g_mount_get_root (mount);
uri = g_file_get_uri (root);
DEBUG ("Added mount at uri %s", uri);
g_free (uri);
directory = nemo_directory_get_existing (root);
g_object_unref (root);
if (directory != NULL) {
nemo_directory_force_reload (directory);
nemo_directory_unref (directory);
}
}
/* Called whenever a mount is unmounted. Check and see if there are
* any windows open displaying contents on the mount. If there are,
* close them. It would also be cool to save open window and position
* info.
*/
static void
mount_removed_callback (GVolumeMonitor *monitor,
GMount *mount,
NemoMainApplication *application)
{
GList *window_list, *node, *close_list;
NemoWindow *window;
NemoWindowSlot *slot;
NemoWindowSlot *force_no_close_slot;
GFile *root, *computer;
gchar *uri;
guint n_slots;
close_list = NULL;
force_no_close_slot = NULL;
n_slots = 0;
/* Check and see if any of the open windows are displaying contents from the unmounted mount */
window_list = gtk_application_get_windows (GTK_APPLICATION (application));
root = g_mount_get_root (mount);
uri = g_file_get_uri (root);
g_object_unref (root);
DEBUG ("Removed mount at uri %s", uri);
g_free (uri);
/* Construct a list of windows to be closed. Do not add the non-closable windows to the list. */
for (node = window_list; node != NULL; node = node->next) {
window = NEMO_WINDOW (node->data);
if (window != NULL) {
GList *l;
GList *lp;
for (lp = window->details->panes; lp != NULL; lp = lp->next) {
NemoWindowPane *pane;
pane = (NemoWindowPane*) lp->data;
for (l = pane->slots; l != NULL; l = l->next) {
slot = l->data;
n_slots++;
if (nemo_window_slot_should_close_with_mount (slot, mount)) {
close_list = g_list_prepend (close_list, slot);
}
} /* for all slots */
} /* for all panes */
}
}
/* Handle the windows in the close list. */
for (node = close_list; node != NULL; node = node->next) {
slot = node->data;
if (slot != force_no_close_slot) {
if (g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_CLOSE_DEVICE_VIEW_ON_EJECT))
nemo_window_pane_close_slot (slot->pane, slot);
else
nemo_window_slot_go_home (slot, FALSE);
} else {
computer = g_file_new_for_path (g_get_home_dir ());
nemo_window_slot_open_location (slot, computer, 0);
g_object_unref(computer);
}
}
g_list_free (close_list);
}
static void
open_window (NemoMainApplication *application,
GFile *location, GdkScreen *screen, const char *geometry)
{
NemoWindow *window;
gchar *uri;
gboolean have_geometry;
uri = g_file_get_uri (location);
DEBUG ("Opening new window at uri %s", uri);
window = nemo_main_application_create_window (NEMO_APPLICATION (application),
screen);
nemo_window_go_to (window, location);
have_geometry = geometry != NULL && strcmp(geometry, "") != 0;
if (have_geometry && !gtk_widget_get_visible (GTK_WIDGET (window))) {
/* never maximize windows opened from shell if a
* custom geometry has been requested.
*/
gtk_window_unmaximize (GTK_WINDOW (window));
eel_gtk_window_set_initial_geometry_from_string (GTK_WINDOW (window),
geometry,
APPLICATION_WINDOW_MIN_WIDTH,
APPLICATION_WINDOW_MIN_HEIGHT,
FALSE);
}
g_free (uri);
}
static void
open_tabs (NemoMainApplication *application,
GFile **locations,
guint n_files,
GdkScreen *screen,
const char *geometry)
{
NemoWindow *window;
gchar *uri;
gboolean have_geometry;
window = nemo_main_application_create_window (NEMO_APPLICATION (application),
screen);
/* open all locations */
uri = g_file_get_uri (locations[0]);
g_debug ("Opening new tab at uri %s\n", uri);
nemo_window_go_to (window, locations[0]);
g_free (uri);
for (int i = 1; i < n_files; i++) {
/* open tabs in reverse order because each
* tab is opened before the previous one */
guint tab = n_files-i;
uri = g_file_get_uri (locations[tab]);
g_debug ("Opening new tab at uri %s\n", uri);
nemo_window_go_to_tab (window, locations[tab]);
g_free (uri);
}
have_geometry = geometry != NULL && strcmp(geometry, "") != 0;
if (have_geometry && !gtk_widget_get_visible (GTK_WIDGET (window))) {
/* never maximize windows opened from shell if a
* custom geometry has been requested.
*/
gtk_window_unmaximize (GTK_WINDOW (window));
eel_gtk_window_set_initial_geometry_from_string (GTK_WINDOW (window),
geometry,
APPLICATION_WINDOW_MIN_WIDTH,
APPLICATION_WINDOW_MIN_HEIGHT,
FALSE);
}
}
static void
open_tabs_in_existing_window (NemoMainApplication *application,
GFile **locations,
guint n_files,
GdkScreen *screen,
const char *geometry)
{
gchar *uri;
GList *list_copy;
GList *l;
list_copy = g_list_copy (gtk_application_get_windows (GTK_APPLICATION (&application->parent)));
for (l = list_copy; l != NULL; l = l->next) {
if (NEMO_IS_WINDOW (l->data)) {
NemoWindow *window;
window = NEMO_WINDOW (l->data);
/* open all locations */
for (int i = 1; i <= n_files; i++) {
/* open tabs in reverse order because each
* tab is opened before the previous one */
guint tab = n_files - i;
uri = g_file_get_uri (locations[tab]);
g_debug ("Opening new tab at uri %s\n", uri);
nemo_window_go_to_tab (window, locations[tab]);
g_free(uri);
}
/* go to the last tab we opened */
NemoWindowPane *pane;
pane = nemo_window_get_active_pane (window);
nemo_notebook_set_current_page_relative (NEMO_NOTEBOOK (pane->notebook), n_files);
/* Don't use `gtk_window_present()`, as the window manager will ignore this window's focus request and try
* to just mark it urgent instead (flashing in the window list for example). */
if (eel_check_is_wayland ()) {
gtk_window_present (GTK_WINDOW (window));
} else {
gtk_window_present_with_time (GTK_WINDOW (window),
gdk_x11_get_server_time (gtk_widget_get_window (GTK_WIDGET (window))));
}
break;
}
}
if (l == NULL) {
/* no existing window was found, so open a new window */
open_tabs (application, locations, n_files, screen, geometry);
}
g_list_free (list_copy);
}
static void
open_windows (NemoMainApplication *application,
GFile **files,
gint n_files,
GdkScreen *screen,
const char *geometry,
gboolean open_in_tabs,
gboolean open_in_existing_window)
{
gint i;
if (files == NULL || files[0] == NULL) {
/* Open a window pointing at the default location. */
open_window (application, NULL, screen, geometry);
} else {
if (open_in_existing_window) {
/* Open one tab at each requested location in an existing window */
open_tabs_in_existing_window (application, files, n_files, screen, geometry);
} else if (open_in_tabs) {
/* Open one window with one tab at each requested location */
open_tabs (application, files, n_files, screen, geometry);
} else {
/* Open windows at each requested location. */
for (i = 0; i < n_files; i++) {
open_window (application, files[i], screen, geometry);
}
}
}
}
static void
nemo_main_application_open_location (NemoApplication *application,
GFile *location,
GFile *selection,
const char *startup_id,
const gboolean open_in_tabs)
{
NemoWindow *window;
GList *sel_list = NULL;
window = nemo_main_application_create_window (application, gdk_screen_get_default ());
gtk_window_set_startup_id (GTK_WINDOW (window), startup_id);
if (selection != NULL) {
sel_list = g_list_prepend (sel_list, nemo_file_get (selection));
}
if(open_in_tabs){
nemo_window_slot_open_location_full (nemo_window_get_active_slot (window), location,
NEMO_WINDOW_OPEN_FLAG_NEW_TAB, sel_list, NULL, NULL);
} else {
nemo_window_slot_open_location_full (nemo_window_get_active_slot (window), location,
0, sel_list, NULL, NULL);
}
if (sel_list != NULL) {
nemo_file_list_free (sel_list);
}
}
static void
nemo_main_application_open (GApplication *app,
GFile **files,
gint n_files,
const gchar *options)
{
NemoMainApplication *self = NEMO_MAIN_APPLICATION (app);
gboolean open_in_tabs = FALSE;
gchar *geometry = NULL;
gboolean open_in_existing_window = strcmp (options, "EXISTING_WINDOW") == 0;
const char splitter = '=';
g_debug ("Open called on the GApplication instance; %d files", n_files);
if (!open_in_existing_window) {
/* Check if local command line passed --geometry or --tabs */
if (strlen (options) > 0) {
gchar** split_options = g_strsplit (options, &splitter, 2);
if (strcmp (split_options[0], "NULL") != 0) {
geometry = g_strdup (split_options[0]);
}
sscanf (split_options[1], "%d", &open_in_tabs);
g_strfreev (split_options);
}
}
DEBUG ("Open called on the GApplication instance; %d files, open in tabs: %s, geometry: '%s',"
"open in existing window: %s",
n_files,
open_in_tabs ? "yes" : "no",
geometry ? geometry : "none",
open_in_existing_window ? "yes" : "no");
open_windows (self, files, n_files, gdk_screen_get_default (), geometry, open_in_tabs, open_in_existing_window);
g_clear_pointer (&geometry, g_free);
}
static void
nemo_main_application_init (NemoMainApplication *application)
{
application->priv = G_TYPE_INSTANCE_GET_PRIVATE (application,
NEMO_TYPE_MAIN_APPLICATION,
NemoMainApplicationPriv);
}
static void
nemo_main_application_finalize (GObject *object)
{
NemoMainApplication *application;
application = NEMO_MAIN_APPLICATION (object);
nemo_bookmarks_exiting ();
g_clear_object (&application->priv->volume_monitor);
g_free (application->priv->geometry);
g_clear_object (&application->priv->dbus_manager);
g_clear_object (&application->priv->fdb_manager);
free_search_helpers ();
G_OBJECT_CLASS (nemo_main_application_parent_class)->finalize (object);
}
static gboolean
do_cmdline_sanity_checks (NemoMainApplication *self,
gboolean perform_self_check,
gboolean version,
gboolean kill_shell,
gboolean open_in_tabs,
gchar **remaining)
{
gboolean retval = FALSE;
if (perform_self_check && (remaining != NULL || kill_shell)) {
g_printerr ("%s\n",
_("--check cannot be used with other options."));
goto out;
}
if (kill_shell && remaining != NULL) {
g_printerr ("%s\n",
_("--quit cannot be used with URIs."));
goto out;
}
if (self->priv->geometry != NULL &&
!open_in_tabs &&
remaining != NULL && remaining[0] != NULL && remaining[1] != NULL) {
g_printerr ("%s\n",
_("--geometry cannot be used with more than one URI."));
goto out;
}
retval = TRUE;
out:
return retval;
}
static void
do_perform_self_checks (gint *exit_status)
{
#ifndef NEMO_OMIT_SELF_CHECK
/* Run the checks (each twice) for nemo and libnemo-private. */
nemo_run_self_checks ();
nemo_run_lib_self_checks ();
eel_exit_if_self_checks_failed ();
nemo_run_self_checks ();
nemo_run_lib_self_checks ();
eel_exit_if_self_checks_failed ();
#endif
*exit_status = EXIT_SUCCESS;
}
static gboolean
nemo_main_application_local_command_line (GApplication *application,
gchar ***arguments,
gint *exit_status)
{
gboolean perform_self_check = FALSE;
gboolean version = FALSE;
gboolean browser = FALSE;
gboolean open_in_tabs = FALSE;
gboolean open_in_existing_window = FALSE;
gboolean kill_shell = FALSE;
gboolean no_default_window = FALSE;
gboolean no_desktop_ignored = FALSE;
gboolean fix_cache = FALSE;
gboolean debug = FALSE;
gchar **remaining = NULL;
GApplicationFlags init_flags;
NemoMainApplication *self = NEMO_MAIN_APPLICATION (application);
const GOptionEntry options[] = {
#ifndef NEMO_OMIT_SELF_CHECK
{ "check", 'c', 0, G_OPTION_ARG_NONE, &perform_self_check,
N_("Perform a quick set of self-check tests."), NULL },
#endif
/* dummy, only for compatibility reasons */
{ "browser", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &browser,
NULL, NULL },
{ "version", '\0', 0, G_OPTION_ARG_NONE, &version,
N_("Show the version of the program."), NULL },
{ "geometry", 'g', 0, G_OPTION_ARG_STRING, &self->priv->geometry,
N_("Create the initial window with the given geometry. "
"Examples: nemo --geometry=+100+100, nemo --geometry=600x400, nemo --geometry=600x400+100+100."), N_("GEOMETRY") },
{ "no-default-window", 'n', 0, G_OPTION_ARG_NONE, &no_default_window,
N_("Only create windows for explicitly specified URIs."), NULL },
{ "no-desktop", '\0', 0, G_OPTION_ARG_NONE, &no_desktop_ignored,
N_("Ignored argument - left for compatibility only."), NULL },
{ "tabs", 't', 0, G_OPTION_ARG_NONE, &open_in_tabs,
N_("Open URIs in tabs."), NULL },
{ "existing-window", 0, 0, G_OPTION_ARG_NONE, &open_in_existing_window,
N_("Open URIs in an existing window."), NULL },
{ "fix-cache", '\0', 0, G_OPTION_ARG_NONE, &fix_cache,
N_("Repair the user thumbnail cache - this can be useful if you're having trouble with file thumbnails. Must be run as root"), NULL },
{ "debug", 0, 0, G_OPTION_ARG_NONE, &debug,
"Enable debugging code. Example usage: 'NEMO_DEBUG=Actions,Window nemo --debug'. Use NEMO_DEBUG=help for more topics.", NULL },
{ "quit", 'q', 0, G_OPTION_ARG_NONE, &kill_shell,
N_("Quit Nemo."), NULL },
{ G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY, &remaining, NULL, N_("[URI...]") },
{ NULL }
};
GOptionContext *context;
GError *error = NULL;
gint argc = 0;
gchar **argv = NULL;
*exit_status = EXIT_SUCCESS;
context = g_option_context_new (_("\n\nBrowse the file system with the file manager"));
g_option_context_add_main_entries (context, options, NULL);
g_option_context_add_group (context, gtk_get_option_group (TRUE));
argv = *arguments;
argc = g_strv_length (argv);
if (!g_option_context_parse (context, &argc, &argv, &error)) {
g_printerr ("Could not parse arguments: %s\n", error->message);
g_error_free (error);
*exit_status = EXIT_FAILURE;
goto out;
}
if (version) {
g_print ("nemo " VERSION "\n");
goto out;
}
if (debug) {
#if (GLIB_CHECK_VERSION(2,80,0))
const gchar* const domains[] = { "Nemo", NULL };
g_log_writer_default_set_debug_domains (domains);
#else
g_setenv ("G_MESSAGES_DEBUG", "all", TRUE);
#endif
}
if (!do_cmdline_sanity_checks (self, perform_self_check,
version, kill_shell, open_in_tabs, remaining)) {
*exit_status = EXIT_FAILURE;
goto out;
}
if (perform_self_check) {
do_perform_self_checks (exit_status);
goto out;
}
if (fix_cache) {
if (nemo_user_is_root () && nemo_treating_root_as_normal ()) {
g_printerr ("Ignoring --fix-cache as root-is-normal setting is true and this "
"check is probably unnecessary.\n");
} else
if (!nemo_user_is_root ()) {
g_printerr ("The --fix-cache option must be run with sudo or as the root user.\n");
} else
{
gnome_desktop_thumbnail_cache_fix_permissions ();
g_print ("User thumbnail cache successfully repaired.\n");
}
goto out;
}
DEBUG ("Parsing local command line, no_default_window %d, quit %d, "
"self checks %d",
no_default_window, kill_shell, perform_self_check);
/* Keep our original flags handy */
init_flags = g_application_get_flags (application);
/* First try to register as a service (this allows our dbus activation to succeed
* if we're not already running */
g_application_set_flags (application, init_flags | G_APPLICATION_IS_SERVICE);
g_application_register (application, NULL, &error);
if (error != NULL) {
g_debug ("Could not register nemo as a service, trying as a remote: %s", error->message);
g_clear_error (&error);
} else {
goto post_registration;
}
/* If service registration failed, try to connect to the existing instance */
g_application_set_flags (application, init_flags | G_APPLICATION_IS_LAUNCHER);
g_application_register (application, NULL, &error);
if (error != NULL) {
g_printerr ("Could not register nemo as a remote: %s\n", error->message);
g_clear_error (&error);
*exit_status = EXIT_FAILURE;
goto out;
}
post_registration:
if (kill_shell) {
DEBUG ("Killing application, as requested");
g_action_group_activate_action (G_ACTION_GROUP (application),
"quit", NULL);
goto out;
}
GFile **files;
gint idx, len;
len = 0;
files = NULL;
/* Convert args to GFiles */
if (remaining != NULL) {
GFile *file;
GPtrArray *file_array;
file_array = g_ptr_array_new ();
for (idx = 0; remaining[idx] != NULL; idx++) {
file = g_file_new_for_commandline_arg (remaining[idx]);
if (file != NULL) {
g_ptr_array_add (file_array, file);
}
}
len = file_array->len;
files = (GFile **) g_ptr_array_free (file_array, FALSE);
g_strfreev (remaining);
}
if (files == NULL && !no_default_window) {
files = g_malloc0 (2 * sizeof (GFile *));
len = 1;
files[0] = g_file_new_for_path (g_get_home_dir ());
files[1] = NULL;
}
/* Invoke "Open" to open in existing window or create new windows */
if (len > 0) {
gchar* concatOptions = g_malloc0(64);
if (open_in_existing_window) {
g_stpcpy (concatOptions, "EXISTING_WINDOW");
} else {
if (self->priv->geometry == NULL) {
g_snprintf (concatOptions, 64, "NULL=%d", open_in_tabs);
} else {
g_snprintf (concatOptions, 64, "%s=%d", self->priv->geometry, open_in_tabs);
}
}
g_application_open (application, files, len, concatOptions);
g_free (concatOptions);
}
for (idx = 0; idx < len; idx++) {
g_object_unref (files[idx]);
}
g_free (files);
out:
g_option_context_free (context);
return TRUE;
}
static void
menu_state_changed_callback (NemoMainApplication *self)
{
if (!g_settings_get_boolean (nemo_window_state, NEMO_WINDOW_STATE_START_WITH_MENU_BAR) &&
!g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_DISABLE_MENU_WARNING)) {
GtkWidget *dialog;
GtkWidget *msg_area;
GtkWidget *checkbox;
dialog = gtk_message_dialog_new (NULL,
GTK_DIALOG_MODAL,
GTK_MESSAGE_INFO,
GTK_BUTTONS_OK,
_("Nemo's main menu is now hidden"));
gchar *secondary;
secondary = g_strdup_printf (_("You have chosen to hide the main menu. You can get it back temporarily by:\n\n"
"- Tapping the <Alt> key\n"
"- Right-clicking an empty region of the main toolbar\n"
"- Right-clicking an empty region of the status bar.\n\n"
"You can restore it permanently by selecting this option again from the View menu."));
g_object_set (dialog,
"secondary-text", secondary,
NULL);
g_free (secondary);
msg_area = gtk_message_dialog_get_message_area (GTK_MESSAGE_DIALOG (dialog));
checkbox = gtk_check_button_new_with_label (_("Don't show this message again."));
gtk_box_pack_start (GTK_BOX (msg_area), checkbox, TRUE, TRUE, 2);
g_settings_bind (nemo_preferences,
NEMO_PREFERENCES_DISABLE_MENU_WARNING,
checkbox,
"active",
G_SETTINGS_BIND_DEFAULT);
gtk_widget_show_all (dialog);
g_signal_connect (dialog, "response",
G_CALLBACK (gtk_widget_destroy), NULL);
}
}
static void
nemo_main_application_continue_startup (NemoApplication *app)
{
NemoMainApplication *self = NEMO_MAIN_APPLICATION (app);
/* create DBus manager */
self->priv->dbus_manager = nemo_dbus_manager_new ();
self->priv->fdb_manager = nemo_freedesktop_dbus_new ();
/* Check the user's ~/.config/nemo directory and post warnings
* if there are problems.
*/
nemo_application_check_required_directory (app, nemo_get_user_directory ());
/* register views */
nemo_icon_view_register ();
nemo_list_view_register ();
nemo_icon_view_compact_register ();
#if defined(ENABLE_EMPTY_VIEW) && ENABLE_EMPTY_VIEW
nemo_empty_view_register ();
#endif
/* Watch for unmounts so we can close open windows */
/* TODO-gio: This should be using the UNMOUNTED feature of GFileMonitor instead */
self->priv->volume_monitor = g_volume_monitor_get ();
g_signal_connect_object (self->priv->volume_monitor, "mount_removed",
G_CALLBACK (mount_removed_callback), self, 0);
g_signal_connect_object (self->priv->volume_monitor, "mount_added",
G_CALLBACK (mount_added_callback), self, 0);
g_signal_connect_swapped (nemo_window_state, "changed::" NEMO_WINDOW_STATE_START_WITH_MENU_BAR,
G_CALLBACK (menu_state_changed_callback), self);
}
static void
nemo_desktop_application_continue_quit (NemoApplication *app)
{
}
static void
nemo_main_application_quit_mainloop (GApplication *app)
{
nemo_main_application_notify_unmount_done (NEMO_APPLICATION (app), NULL);
G_APPLICATION_CLASS (nemo_main_application_parent_class)->quit_mainloop (app);
}
static void
nemo_main_application_class_init (NemoMainApplicationClass *class)
{
GObjectClass *object_class;
GApplicationClass *application_class;
NemoApplicationClass *nemo_app_class;
object_class = G_OBJECT_CLASS (class);
object_class->finalize = nemo_main_application_finalize;
application_class = G_APPLICATION_CLASS (class);
application_class->open = nemo_main_application_open;
application_class->local_command_line = nemo_main_application_local_command_line;
application_class->quit_mainloop = nemo_main_application_quit_mainloop;
nemo_app_class = NEMO_APPLICATION_CLASS (class);
nemo_app_class->open_location = nemo_main_application_open_location;
nemo_app_class->create_window = nemo_main_application_create_window;
nemo_app_class->notify_unmount_show = nemo_main_application_notify_unmount_show;
nemo_app_class->notify_unmount_done = nemo_main_application_notify_unmount_done;
nemo_app_class->close_all_windows = nemo_main_application_close_all_windows;
nemo_app_class->continue_startup = nemo_main_application_continue_startup;
nemo_app_class->continue_quit = nemo_desktop_application_continue_quit;
g_type_class_add_private (class, sizeof (NemoMainApplicationPriv));
}
NemoApplication *
nemo_main_application_get_singleton (void)
{
return nemo_application_initialize_singleton (NEMO_TYPE_MAIN_APPLICATION,
"application-id", "org.Nemo",
"flags", G_APPLICATION_HANDLES_OPEN,
"register-session", TRUE,
NULL);
}