1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
2 
3    Copyright (C) 1999, 2000, 2001 Eazel, Inc.
4 
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9 
10    This program 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    General Public License for more details.
14 
15    You should have received a copy of the GNU General Public
16    License along with this program; if not, write to the
17    Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18    Boston, MA 02110-1301, USA.
19 
20    Author: Pavel Cisler <pavel@eazel.com>
21 */
22 
23 #ifndef CAJA_FILE_CHANGES_QUEUE_H
24 #define CAJA_FILE_CHANGES_QUEUE_H
25 
26 #include <gdk/gdk.h>
27 #include <gio/gio.h>
28 
29 void caja_file_changes_queue_file_added                      (GFile      *location);
30 void caja_file_changes_queue_file_changed                    (GFile      *location);
31 void caja_file_changes_queue_file_removed                    (GFile      *location);
32 void caja_file_changes_queue_file_moved                      (GFile      *from,
33         GFile      *to);
34 void caja_file_changes_queue_schedule_position_set           (GFile      *location,
35         GdkPoint    point,
36         int         screen);
37 void caja_file_changes_queue_schedule_position_remove        (GFile      *location);
38 
39 void caja_file_changes_consume_changes                       (gboolean    consume_all);
40 
41 
42 #endif /* CAJA_FILE_CHANGES_QUEUE_H */
43