~elementary-apps/pantheon-files/trunk

1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
1
/*
679 by am.monkeyd at gmail
files operations use file-changes-queue. rename on new folder. rename reuse edited row.
2
 * Copyright (C) 1999, 2000, 2001 Eazel, Inc.
1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
3
 *
679 by am.monkeyd at gmail
files operations use file-changes-queue. rename on new folder. rename reuse edited row.
4
 * This program is free software; you can redistribute it and/or
5
 * modify it under the terms of the GNU General Public License as
2484.2.1 by Jeremy Wootten
Fix licensecheck warnings
6
 * published by the Free Software Foundation, Inc.,; either version 2 of the
679 by am.monkeyd at gmail
files operations use file-changes-queue. rename on new folder. rename reuse edited row.
7
 * License, or (at your option) any later version.
1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
8
 *
679 by am.monkeyd at gmail
files operations use file-changes-queue. rename on new folder. rename reuse edited row.
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 * General Public License for more details.
1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
13
 *
679 by am.monkeyd at gmail
files operations use file-changes-queue. rename on new folder. rename reuse edited row.
14
 * You should have received a copy of the GNU General Public
15
 * License along with this program; if not, write to the
2484.2.1 by Jeremy Wootten
Fix licensecheck warnings
16
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor
17
 * Boston, MA 02110-1335 USA.
679 by am.monkeyd at gmail
files operations use file-changes-queue. rename on new folder. rename reuse edited row.
18
 *
1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
19
 * Author: Pavel Cisler <pavel@eazel.com>
679 by am.monkeyd at gmail
files operations use file-changes-queue. rename on new folder. rename reuse edited row.
20
 */
21
22
#ifndef MARLIN_FILE_CHANGES_QUEUE_H
23
#define MARLIN_FILE_CHANGES_QUEUE_H
24
25
#include <gdk/gdk.h>
26
#include <gio/gio.h>
27
28
void marlin_file_changes_queue_file_added                      (GFile      *location);
29
void marlin_file_changes_queue_file_changed                    (GFile      *location);
30
void marlin_file_changes_queue_file_removed                    (GFile      *location);
31
void marlin_file_changes_queue_file_moved                      (GFile      *from,
32
                                                                GFile      *to);
33
34
void marlin_file_changes_consume_changes                       (gboolean    consume_all);
35
36
37
#endif /* MARLIN_FILE_CHANGES_QUEUE_H */