/usr/include/libfm-1.0/fm-dnd-dest.h is in libfm-dev 1.2.4-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | /*
* fm-dnd-dest.h
*
* Copyright 2009 PCMan <pcman.tw@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#ifndef __FM_DND_DEST_H__
#define __FM_DND_DEST_H__
#include <gtk/gtk.h>
#include "fm-file-info.h"
G_BEGIN_DECLS
#define FM_TYPE_DND_DEST (fm_dnd_dest_get_type())
#define FM_DND_DEST(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\
FM_TYPE_DND_DEST, FmDndDest))
#define FM_DND_DEST_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),\
FM_TYPE_DND_DEST, FmDndDestClass))
#define FM_IS_DND_DEST(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),\
FM_TYPE_DND_DEST))
#define FM_IS_DND_DEST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),\
FM_TYPE_DND_DEST))
/**
* FmDndDestTargetType
* @FM_DND_DEST_TARGET_FM_LIST: direct pointer of #FmList
* @FM_DND_DEST_TARGET_URI_LIST: "text/uri-list"
* @FM_DND_DEST_TARGET_XDS: X direct save
* @N_FM_DND_DEST_DEFAULT_TARGETS: widget's target indices should start from this
*
* default droppable targets supported by #FmDndDest
*/
typedef enum
{
FM_DND_DEST_TARGET_FM_LIST = 1,
FM_DND_DEST_TARGET_URI_LIST,
FM_DND_DEST_TARGET_XDS,
/*< private >*/
FM_DND_DEST_RESERVED1,
FM_DND_DEST_RESERVED2,
FM_DND_DEST_RESERVED3,
FM_DND_DEST_RESERVED4,
FM_DND_DEST_RESERVED5,
/*< public >*/
N_FM_DND_DEST_DEFAULT_TARGETS
} FmDndDestTargetType;
typedef struct _FmDndDest FmDndDest;
typedef struct _FmDndDestClass FmDndDestClass;
/**
* FmDndDestClass
* @parent_class: the parent class
* @files_dropped: the class closure for the #FmDndDest::files-dropped signal
*/
struct _FmDndDestClass
{
GObjectClass parent_class;
gboolean (*files_dropped)(FmDndDest* dd, int x, int y, guint action, guint info_type, FmPathList* files);
/*< private >*/
gpointer _reserved1;
};
GType fm_dnd_dest_get_type (void);
FmDndDest* fm_dnd_dest_new (GtkWidget* w);
FmDndDest* fm_dnd_dest_new_with_handlers (GtkWidget* w);
void fm_dnd_dest_set_widget(FmDndDest* dd, GtkWidget* w);
void fm_dnd_dest_set_dest_file(FmDndDest* dd, FmFileInfo* dest_file);
FmFileInfo* fm_dnd_dest_get_dest_file(FmDndDest* dd);
FmPath* fm_dnd_dest_get_dest_path(FmDndDest* dd);
#if !GTK_CHECK_VERSION(2, 22, 0)
# define gdk_drag_context_list_targets(ctx) ctx->targets
#endif
#define fm_drag_context_has_target(ctx, target) \
(g_list_find(gdk_drag_context_list_targets(ctx), target) != NULL)
#define fm_drag_context_has_target_name(ctx, name) \
fm_drag_context_has_target(ctx, gdk_atom_intern_static_string(name))
gboolean fm_dnd_dest_drag_data_received(FmDndDest* dd, GdkDragContext *drag_context,
gint x, gint y, GtkSelectionData *sel_data, guint info, guint time);
gboolean fm_dnd_dest_is_target_supported(FmDndDest* dd, GdkAtom target);
GdkAtom fm_dnd_dest_find_target(FmDndDest* dd, GdkDragContext *drag_context);
gboolean fm_dnd_dest_drag_drop(FmDndDest* dd, GdkDragContext *drag_context,
GdkAtom target, int x, int y, guint time);
GdkDragAction fm_dnd_dest_get_default_action(FmDndDest* dd,
GdkDragContext* drag_context,
GdkAtom target);
void fm_dnd_dest_drag_leave(FmDndDest* dd, GdkDragContext* drag_context, guint time);
/**
* fm_dnd_dest_add_targets
* @widget: #GtkWidget to add targets
* @targets: pointer to array of #GtkTargetEntry to add
* @n: number of targets to add
*
* Adds drop destination targets to existing list for @widget. Convenience API.
*
* Since: 1.0.1
*/
#define fm_dnd_dest_add_targets(widget,targets,n) \
gtk_target_list_add_table(gtk_drag_dest_get_target_list(widget), \
targets, n)
G_END_DECLS
#endif /* __FM_DND_DEST_H__ */
|