1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- |
---|
2 | |
---|
3 | gnome-vfs-mime-monitor.h: Class for noticing changes in MIME data. |
---|
4 | |
---|
5 | Copyright (C) 2000 Eazel, Inc. |
---|
6 | |
---|
7 | This program is free software; you can redistribute it and/or |
---|
8 | modify it under the terms of the GNU General Public License as |
---|
9 | published by the Free Software Foundation; either version 2 of the |
---|
10 | License, or (at your option) any later version. |
---|
11 | |
---|
12 | This program is distributed in the hope that it will be useful, |
---|
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
15 | General Public License for more details. |
---|
16 | |
---|
17 | You should have received a copy of the GNU General Public |
---|
18 | License along with this program; if not, write to the |
---|
19 | Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
20 | Boston, MA 02111-1307, USA. |
---|
21 | |
---|
22 | Author: John Sullivan <sullivan@eazel.com> |
---|
23 | */ |
---|
24 | |
---|
25 | #ifndef GNOME_VFS_MIME_MONITOR_H |
---|
26 | #define GNOME_VFS_MIME_MONITOR_H |
---|
27 | |
---|
28 | #include <gtk/gtkobject.h> |
---|
29 | |
---|
30 | typedef struct { |
---|
31 | GtkObject object; |
---|
32 | } GnomeVFSMIMEMonitor; |
---|
33 | |
---|
34 | /* Instead of a class declaration here, I will just document |
---|
35 | * the signals. |
---|
36 | * |
---|
37 | * "data_changed", no parameters |
---|
38 | */ |
---|
39 | |
---|
40 | /* There's a single GnomeVFSMIMEMonitor object. |
---|
41 | * The only thing you need it for is to connect to its signals. |
---|
42 | */ |
---|
43 | GnomeVFSMIMEMonitor * gnome_vfs_mime_monitor_get (void); |
---|
44 | |
---|
45 | #endif /* GNOME_VFS_MIME_MONITOR_H */ |
---|