-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-desktop-application.c
467 lines (368 loc) · 13.1 KB
/
nemo-desktop-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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* nemo-application: main Nemo application class.
*
* Copyright (C) 1999, 2000 Red Hat, Inc.
* Copyright (C) 2000, 2001 Eazel, Inc.
* Copyright (C) 2010, Cosimo Cecchi <cosimoc@gnome.org>
*
* 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.
*
* Authors: Elliot Lee <sopwith@redhat.com>,
* Darin Adler <darin@bentspoon.com>
* Cosimo Cecchi <cosimoc@gnome.org>
*
*/
#include <config.h>
#include "nemo-desktop-application.h"
#include "nemo-desktop-icon-view.h"
#include "nemo-desktop-icon-grid-view.h"
#include "nemo-icon-view.h"
#include "nemo-list-view.h"
#include "nemo-freedesktop-dbus.h"
#include "nemo-desktop-manager.h"
#include "nemo-image-properties-page.h"
#include "nemo-previewer.h"
#include "nemo-progress-ui-handler.h"
#include "nemo-window-bookmarks.h"
#include "nemo-window-private.h"
#include <eel/eel-vfs-extensions.h>
#include <libnemo-private/nemo-desktop-link-monitor.h>
#include <libnemo-private/nemo-desktop-metadata.h>
#include <libnemo-private/nemo-file-utilities.h>
#include <libnemo-private/nemo-global-preferences.h>
#include <libnemo-private/nemo-module.h>
#include <libnemo-private/nemo-signaller.h>
#include <libnemo-private/nemo-undo-manager.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 <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <glib/gstdio.h>
#include <glib/gi18n.h>
#include <gdk/gdkx.h>
#include <X11/Xatom.h>
G_DEFINE_TYPE (NemoDesktopApplication, nemo_desktop_application, NEMO_TYPE_APPLICATION);
struct _NemoDesktopApplicationPriv {
NemoDesktopManager *desktop_manager;
NemoFreedesktopDBus *fdb_manager;
};
static void
nemo_desktop_application_init (NemoDesktopApplication *application)
{
application->priv = G_TYPE_INSTANCE_GET_PRIVATE (application,
NEMO_TYPE_DESKTOP_APPLICATION,
NemoDesktopApplicationPriv);
}
static void
nemo_desktop_application_finalize (GObject *object)
{
NemoDesktopApplication *app = NEMO_DESKTOP_APPLICATION (object);
g_clear_object (&app->priv->fdb_manager);
G_OBJECT_CLASS (nemo_desktop_application_parent_class)->finalize (object);
}
static void
init_desktop (NemoDesktopApplication *self)
{
/* Initialize the desktop link monitor singleton */
nemo_desktop_link_monitor_get ();
nemo_desktop_metadata_init ();
self->priv->desktop_manager = nemo_desktop_manager_get ();
}
/* from libwnck/xutils.c, comes as LGPLv2+ */
static char *
latin1_to_utf8 (const char *latin1)
{
GString *str;
const char *p;
str = g_string_new (NULL);
p = latin1;
while (*p)
{
g_string_append_unichar (str, (gunichar) *p);
++p;
}
return g_string_free (str, FALSE);
}
/* derived from libwnck/xutils.c, comes as LGPLv2+ */
static void
_get_wmclass (Display *xdisplay,
Window xwindow,
char **res_class,
char **res_name)
{
XClassHint ch;
ch.res_name = NULL;
ch.res_class = NULL;
gdk_error_trap_push ();
XGetClassHint (xdisplay, xwindow, &ch);
gdk_error_trap_pop_ignored ();
if (res_class)
*res_class = NULL;
if (res_name)
*res_name = NULL;
if (ch.res_name)
{
if (res_name)
*res_name = latin1_to_utf8 (ch.res_name);
XFree (ch.res_name);
}
if (ch.res_class)
{
if (res_class)
*res_class = latin1_to_utf8 (ch.res_class);
XFree (ch.res_class);
}
}
static gboolean
desktop_handler_is_ignored (GdkWindow *window, gchar **ignored)
{
gboolean ret;
Window xw;
Display *xd;
guint i;
if (ignored == NULL) {
return FALSE;
}
ret = FALSE;
xw = gdk_x11_window_get_xid (GDK_X11_WINDOW (window));
xd = gdk_x11_display_get_xdisplay (gdk_display_get_default ());
for (i = 0; i < g_strv_length (ignored); i++) {
gchar *wmclass, *wm_class_casefolded, *match_string_casefolded;
_get_wmclass (xd, xw, &wmclass, NULL);
if (wmclass != NULL) {
wm_class_casefolded = g_utf8_casefold (wmclass, -1);
match_string_casefolded = g_utf8_casefold (ignored[i], -1);
if (g_strstr_len (wm_class_casefolded, -1, match_string_casefolded) != NULL) {
ret = TRUE;
}
g_free (wm_class_casefolded);
g_free (match_string_casefolded);
g_free (wmclass);
}
if (ret == TRUE)
break;
}
return ret;
}
static gboolean
desktop_already_managed (void)
{
GdkScreen *screen;
GList *windows, *iter;
gboolean ret;
screen = gdk_screen_get_default ();
windows = gdk_screen_get_window_stack (screen);
ret = FALSE;
for (iter = windows; iter != NULL; iter = iter->next) {
GdkWindow *window = GDK_WINDOW (iter->data);
if (gdk_window_get_type_hint (window) == GDK_WINDOW_TYPE_HINT_DESKTOP) {
GSettings *desktop_preferences = g_settings_new("org.nemo.desktop");
gchar **ignored = g_settings_get_strv (desktop_preferences, NEMO_PREFERENCES_DESKTOP_IGNORED_DESKTOP_HANDLERS);
if (!desktop_handler_is_ignored (window, ignored)) {
ret = TRUE;
}
g_strfreev (ignored);
g_object_unref (desktop_preferences);
break;
}
}
g_list_free_full (windows, (GDestroyNotify) g_object_unref);
if (ret) {
g_warning ("Desktop already managed by another application, skipping desktop setup.\n"
"To change this, modify org.nemo.desktop 'ignored-desktop-handlers'.\n");
}
return ret;
}
static gboolean
nemo_desktop_application_local_command_line (GApplication *application,
gchar ***arguments,
gint *exit_status)
{
GFile **files;
gint len;
gboolean version = FALSE;
gboolean kill_shell = FALSE;
gboolean debug = FALSE;
const GOptionEntry options[] = {
{ "version", '\0', 0, G_OPTION_ARG_NONE, &version,
N_("Show the version of the program."), NULL },
{ "debug", 0, 0, G_OPTION_ARG_NONE, &debug,
"Enable debugging code. Example usage: 'NEMO_DEBUG=Desktop,Actions nemo-desktop --debug'. Use NEMO_DEBUG=all for more topics.", NULL },
{ "quit", 'q', 0, G_OPTION_ARG_NONE, &kill_shell,
N_("Quit Nemo Desktop."), NULL },
{ NULL }
};
GOptionContext *context;
GError *error = NULL;
gint argc = 0;
gchar **argv = NULL;
*exit_status = EXIT_SUCCESS;
context = g_option_context_new (_("\n\nManage the desktop 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-desktop " 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 (nemo_user_is_root () && !nemo_treating_root_as_normal ()) {
g_printerr ("nemo-desktop cannot be run as root, please try again as a normal user.\n"
"Check 'man nemo' to see how to change this behavior.");
goto out;
}
g_application_register (application, NULL, &error);
if (error != NULL) {
g_printerr ("Could not register the application: %s\n", error->message);
g_error_free (error);
*exit_status = EXIT_FAILURE;
goto out;
}
if (kill_shell) {
g_printerr ("Killing nemo-desktop, as requested\n");
g_action_group_activate_action (G_ACTION_GROUP (application),
"quit", NULL);
goto out;
}
if (desktop_already_managed ()) {
goto out;
}
files = g_malloc0 (2 * sizeof (GFile *));
len = 1;
files[0] = g_file_new_for_uri (EEL_DESKTOP_URI);
files[1] = NULL;
g_application_open (application, files, len, "");
g_object_unref (files[0]);
g_free (files);
out:
g_option_context_free (context);
return TRUE;
}
static void
nemo_desktop_application_continue_startup (NemoApplication *app)
{
/* Check the user's Desktop and config directories and post warnings
* if there are problems.
*/
nemo_application_check_required_directory (app, nemo_get_desktop_directory ());
nemo_application_check_required_directory (app, nemo_get_user_directory ());
NEMO_DESKTOP_APPLICATION (app)->priv->fdb_manager = nemo_freedesktop_dbus_new ();
/* register views */
nemo_desktop_icon_view_register ();
nemo_desktop_icon_grid_view_register ();
nemo_icon_view_register ();
}
static void
nemo_desktop_application_continue_quit (NemoApplication *app)
{
NemoDesktopApplication *self = NEMO_DESKTOP_APPLICATION (app);
g_clear_object (&self->priv->desktop_manager);
}
static void
nemo_desktop_application_open (GApplication *app,
GFile **files,
gint n_files,
const gchar *geometry)
{
NemoDesktopApplication *self = NEMO_DESKTOP_APPLICATION (app);
DEBUG ("Open called on the GApplication instance; %d files", n_files);
if (self->priv->desktop_manager == NULL) {
init_desktop (self);
}
/* FIXME: how to do this? */
}
static void
nemo_desktop_application_open_location (NemoApplication *application,
GFile *location,
GFile *selection,
const char *startup_id,
const gboolean open_in_tabs)
{
GAppInfo *appinfo;
GError *error = NULL;
GList *sel_list = NULL;
appinfo = g_app_info_get_default_for_type ("inode/directory", TRUE);
if (!appinfo) {
g_warning ("Cannot launch file browser, no mimetype handler for inode/directory");
return;
}
if (selection != NULL) {
sel_list = g_list_prepend (sel_list, selection);
} else if (location != NULL) {
sel_list = g_list_prepend (sel_list, location);
}
if (!g_app_info_launch (appinfo, sel_list, NULL, &error)) {
gchar *uri;
uri = g_file_get_uri (selection);
g_warning ("Could not launch file browser to display file: %s\n", uri);
g_free (uri);
g_clear_error (&error);
}
if (sel_list != NULL) {
g_list_free (sel_list);
}
g_clear_object (&appinfo);
}
static NemoWindow *
nemo_desktop_application_create_window (NemoApplication *application,
GdkScreen *screen)
{
return NULL;
}
static void
nemo_desktop_application_class_init (NemoDesktopApplicationClass *class)
{
GObjectClass *object_class;
GApplicationClass *application_class;
NemoApplicationClass *nemo_app_class;
object_class = G_OBJECT_CLASS (class);
object_class->finalize = nemo_desktop_application_finalize;
application_class = G_APPLICATION_CLASS (class);
application_class->open = nemo_desktop_application_open;
application_class->local_command_line = nemo_desktop_application_local_command_line;
nemo_app_class = NEMO_APPLICATION_CLASS (class);
nemo_app_class->continue_startup = nemo_desktop_application_continue_startup;
nemo_app_class->create_window = nemo_desktop_application_create_window;
nemo_app_class->continue_quit = nemo_desktop_application_continue_quit;
nemo_app_class->open_location = nemo_desktop_application_open_location;
g_type_class_add_private (class, sizeof (NemoDesktopApplicationPriv));
}
NemoApplication *
nemo_desktop_application_get_singleton (void)
{
return nemo_application_initialize_singleton (NEMO_TYPE_DESKTOP_APPLICATION,
"application-id", "org.NemoDesktop",
"flags", G_APPLICATION_HANDLES_OPEN,
"register-session", TRUE,
NULL);
}