Blame src/nautilus-clipboard.h

Packit a189e0
Packit a189e0
/* fm-directory-view.h
Packit a189e0
 *
Packit a189e0
 * Copyright (C) 1999, 2000  Free Software Foundaton
Packit a189e0
 * Copyright (C) 2000  Eazel, Inc.
Packit a189e0
 *
Packit a189e0
 * This program is free software; you can redistribute it and/or
Packit a189e0
 * modify it under the terms of the GNU Library General Public License as
Packit a189e0
 * published by the Free Software Foundation; either version 2 of the
Packit a189e0
 * License, or (at your option) any later version.
Packit a189e0
 *
Packit a189e0
 * This program is distributed in the hope that it will be useful,
Packit a189e0
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a189e0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a189e0
 * Library General Public License for more details.
Packit a189e0
 *
Packit a189e0
 * You should have received a copy of the GNU Library General Public
Packit a189e0
 * License along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit a189e0
 *
Packit a189e0
 * Author: Rebecca Schulman <rebecka@eazel.com>
Packit a189e0
 */
Packit a189e0
Packit a189e0
#ifndef NAUTILUS_CLIPBOARD_H
Packit a189e0
#define NAUTILUS_CLIPBOARD_H
Packit a189e0
Packit a189e0
#include <gtk/gtk.h>
Packit a189e0
Packit a189e0
void nautilus_clipboard_clear_if_colliding_uris    (GtkWidget          *widget,
Packit a189e0
                                                    const GList        *item_uris);
Packit a189e0
GtkClipboard* nautilus_clipboard_get               (GtkWidget          *widget);
Packit 076c46
GList* nautilus_clipboard_get_uri_list_from_selection_data (const gchar *selection_data);
Packit 076c46
gboolean nautilus_clipboard_is_cut_from_selection_data (const gchar *selection_data);
Packit a189e0
void nautilus_clipboard_prepare_for_files (GtkClipboard *clipboard,
Packit a189e0
                                           GList        *files,
Packit a189e0
                                           gboolean      cut);
Packit a189e0
GdkAtom nautilus_clipboard_get_atom (void);
Packit 076c46
gboolean nautilus_clipboard_is_data_valid_from_selection_data (const gchar *selection_data);
Packit a189e0
Packit a189e0
#endif /* NAUTILUS_CLIPBOARD_H */