2008-02-29 Cosimo Cecchi <cosimoc@gnome.org>
[nautilus.git] / libnautilus-private / nautilus-file-changes-queue.h
blob185def4130a121a630bfeed87b9a657eed050b17
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
3 Copyright (C) 1999, 2000, 2001 Eazel, Inc.
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.
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.
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., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
20 Author: Pavel Cisler <pavel@eazel.com>
23 #ifndef NAUTILUS_FILE_CHANGES_QUEUE_H
24 #define NAUTILUS_FILE_CHANGES_QUEUE_H
26 #include <gdk/gdktypes.h>
27 #include <gio/gio.h>
29 void nautilus_file_changes_queue_file_added (GFile *location);
30 void nautilus_file_changes_queue_file_changed (GFile *location);
31 void nautilus_file_changes_queue_file_removed (GFile *location);
32 void nautilus_file_changes_queue_file_moved (GFile *from,
33 GFile *to);
34 void nautilus_file_changes_queue_schedule_metadata_copy (GFile *from,
35 GFile *to);
36 void nautilus_file_changes_queue_schedule_metadata_move (GFile *from,
37 GFile *to);
38 void nautilus_file_changes_queue_schedule_metadata_remove (GFile *location);
39 void nautilus_file_changes_queue_schedule_position_set (GFile *location,
40 GdkPoint point,
41 int screen);
42 void nautilus_file_changes_queue_schedule_position_remove (GFile *location);
44 void nautilus_file_changes_consume_changes (gboolean consume_all);
47 #endif /* NAUTILUS_FILE_CHANGES_QUEUE_H */