diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2011-01-11 12:20:35 +0100 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2011-01-11 12:22:55 +0100 |
commit | b20ff7a5cd1d9304c5716433de1958faedccefde (patch) | |
tree | cab4a5e472c4462136f4197a211261fdda223846 /src/nautilus-error-reporting.h | |
parent | e1ca0591f0588d114249361c624f467126b323c9 (diff) | |
download | nautilus-b20ff7a5cd1d9304c5716433de1958faedccefde.tar.gz |
Move icon views outside of src/file-manager
Part of the final step towards removing src/file-manager completely;
only code shuffling around, not any real code change.
Diffstat (limited to 'src/nautilus-error-reporting.h')
-rw-r--r-- | src/nautilus-error-reporting.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/nautilus-error-reporting.h b/src/nautilus-error-reporting.h new file mode 100644 index 000000000..c539af867 --- /dev/null +++ b/src/nautilus-error-reporting.h @@ -0,0 +1,55 @@ +/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ + +/* fm-error-reporting.h - interface for file manager functions that report + errors to the user. + + Copyright (C) 2000 Eazel, Inc. + + The Gnome Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The Gnome Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the Gnome Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + Authors: John Sullivan <sullivan@eazel.com> +*/ + +#ifndef FM_ERROR_REPORTING_H +#define FM_ERROR_REPORTING_H + +#include <gtk/gtk.h> +#include <libnautilus-private/nautilus-file.h> + +void fm_report_error_loading_directory (NautilusFile *file, + GError *error, + GtkWindow *parent_window); +void fm_report_error_renaming_file (NautilusFile *file, + const char *new_name, + GError *error, + GtkWindow *parent_window); +void fm_report_error_setting_permissions (NautilusFile *file, + GError *error, + GtkWindow *parent_window); +void fm_report_error_setting_owner (NautilusFile *file, + GError *error, + GtkWindow *parent_window); +void fm_report_error_setting_group (NautilusFile *file, + GError *error, + GtkWindow *parent_window); + +/* FIXME bugzilla.gnome.org 42394: Should this file be renamed or should this function be moved? */ +void fm_rename_file (NautilusFile *file, + const char *new_name, + NautilusFileOperationCallback callback, + gpointer callback_data); + +#endif /* FM_ERROR_REPORTING_H */ |