summaryrefslogtreecommitdiff
path: root/libnautilus-private/nautilus-autorun.h
blob: 81d758e14f9c4c8d6d983745547c3ee62ca01823 (plain)
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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

/*
 * Nautilus
 *
 * Copyright (C) 2008 Red Hat, Inc.
 *
 * Nautilus 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.
 *
 * This program 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Author: David Zeuthen <davidz@redhat.com>
 */

/* TODO:
 *
 * - automount all user-visible media on startup
 *  - but avoid doing autorun for these
 * - unmount all the media we've automounted on shutdown
 * - finish x-content / * types
 *  - finalize the semi-spec
 *  - add probing/sniffing code
 * - clean up code
 * - implement missing features
 *  - "Open Folder when mounted"
 *  - Autorun spec (e.g. $ROOT/.autostart)
 *
 */

#ifndef NAUTILUS_AUTORUN_H
#define NAUTILUS_AUTORUN_H

#include <gtk/gtk.h>
#include <eel/eel-background.h>
#include <libnautilus-private/nautilus-file.h>

typedef void (*NautilusAutorunComboBoxChanged) (gboolean selected_ask,
						gboolean selected_ignore,
						gboolean selected_open_folder,
						GAppInfo *selected_app,
						gpointer user_data);

typedef void (*NautilusAutorunOpenWindow) (GMount *mount, gpointer user_data);
typedef void (*NautilusAutorunGetContent) (char **content, gpointer user_data);

void nautilus_autorun_prepare_combo_box (GtkWidget *combo_box, 
					 const char *x_content_type, 
					 gboolean include_ask,
					 gboolean include_open_with_other_app,
					 gboolean update_settings,
					 NautilusAutorunComboBoxChanged changed_cb,
					 gpointer user_data);

void nautilus_autorun_set_preferences (const char *x_content_type, gboolean pref_ask, gboolean pref_ignore, gboolean pref_open_folder);
void nautilus_autorun_get_preferences (const char *x_content_type, gboolean *pref_ask, gboolean *pref_ignore, gboolean *pref_open_folder);

void nautilus_autorun (GMount *mount, NautilusAutorunOpenWindow open_window_func, gpointer user_data);

char **nautilus_autorun_get_cached_x_content_types_for_mount (GMount       *mount);

void nautilus_autorun_get_x_content_types_for_mount_async (GMount *mount,
							   NautilusAutorunGetContent callback,
							   GCancellable *cancellable,
							   gpointer user_data);

void nautilus_autorun_launch_for_mount (GMount *mount, GAppInfo *app_info);

void nautilus_allow_autorun_for_volume (GVolume *volume);
void nautilus_allow_autorun_for_volume_finish (GVolume *volume);

#endif /* NAUTILUS_AUTORUN_H */