1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
23 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
27 #ifndef __G_FILE_MONITOR_H__
28 #define __G_FILE_MONITOR_H__
30 #include <glib-object.h>
31 #include <gio/gfile.h>
35 #define G_TYPE_FILE_MONITOR (g_file_monitor_get_type ())
36 #define G_FILE_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_MONITOR, GFileMonitor))
37 #define G_FILE_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_MONITOR, GFileMonitorClass))
38 #define G_IS_FILE_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_MONITOR))
39 #define G_IS_FILE_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_MONITOR))
40 #define G_FILE_MONITOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_MONITOR, GFileMonitorClass))
44 * @G_FILE_MONITOR_EVENT_CHANGED: a file changed.
45 * @G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT: a hint that this was probably the last change in a set of changes.
46 * @G_FILE_MONITOR_EVENT_DELETED: a file was deleted.
47 * @G_FILE_MONITOR_EVENT_CREATED: a file was created.
48 * @G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED: a file attribute was changed.
49 * @G_FILE_MONITOR_EVENT_PRE_UNMOUNT: the file location will soon be unmounted.
50 * @G_FILE_MONITOR_EVENT_UNMOUNTED: the file location was be unmounted.
52 * Specifies what type of event a monitor event is.
55 G_FILE_MONITOR_EVENT_CHANGED,
56 G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT,
57 G_FILE_MONITOR_EVENT_DELETED,
58 G_FILE_MONITOR_EVENT_CREATED,
59 G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED,
60 G_FILE_MONITOR_EVENT_PRE_UNMOUNT,
61 G_FILE_MONITOR_EVENT_UNMOUNTED
64 typedef struct _GFileMonitorClass GFileMonitorClass;
65 typedef struct _GFileMonitorPrivate GFileMonitorPrivate;
70 * Watches for changes to a file.
74 GObject parent_instance;
77 GFileMonitorPrivate *priv;
80 struct _GFileMonitorClass
82 GObjectClass parent_class;
85 void (* changed) (GFileMonitor* monitor,
88 GFileMonitorEvent event_type);
91 gboolean (*cancel)(GFileMonitor* monitor);
94 /* Padding for future expansion */
95 void (*_g_reserved1) (void);
96 void (*_g_reserved2) (void);
97 void (*_g_reserved3) (void);
98 void (*_g_reserved4) (void);
99 void (*_g_reserved5) (void);
102 GType g_file_monitor_get_type (void) G_GNUC_CONST;
104 gboolean g_file_monitor_cancel (GFileMonitor *monitor);
105 gboolean g_file_monitor_is_cancelled (GFileMonitor *monitor);
106 void g_file_monitor_set_rate_limit (GFileMonitor *monitor,
110 /* For implementations */
111 void g_file_monitor_emit_event (GFileMonitor *monitor,
114 GFileMonitorEvent event_type);
118 #endif /* __G_FILE_MONITOR_H__ */