/usr/include/libfm-1.0/fm-dnd-src.h is in libfm-dev 1.2.5-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 | /*
* fm-dnd-src.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_SRC_H__
#define __FM_DND_SRC_H__
#include <gtk/gtk.h>
#include "fm-file-info.h"
#include "fm-seal.h"
G_BEGIN_DECLS
#define FM_TYPE_DND_SRC (fm_dnd_src_get_type())
#define FM_DND_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\
FM_TYPE_DND_SRC, FmDndSrc))
#define FM_DND_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),\
FM_TYPE_DND_SRC, FmDndSrcClass))
#define FM_IS_DND_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),\
FM_TYPE_DND_SRC))
#define FM_IS_DND_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),\
FM_TYPE_DND_SRC))
/**
* FmDndSrcTarget
* @FM_DND_SRC_TARGET_FM_LIST: direct pointer of FmList
* @FM_DND_SRC_TARGET_URI_LIST: "text/uri-list"
* @FM_DND_SRC_TARGET_TEXT: Gtk+ default text targets
* @N_FM_DND_SRC_DEFAULT_TARGETS: widget's target indices should start from this
*
* default targets of drag source
*/
typedef enum
{
FM_DND_SRC_TARGET_FM_LIST = 1,
FM_DND_SRC_TARGET_URI_LIST,
FM_DND_SRC_TARGET_TEXT,
/*< private >*/
FM_DND_SRC_RESERVED2,
FM_DND_SRC_RESERVED3,
FM_DND_SRC_RESERVED4,
FM_DND_SRC_RESERVED5,
/*< public >*/
N_FM_DND_SRC_DEFAULT_TARGETS
} FmDndSrcTarget;
typedef struct _FmDndSrc FmDndSrc;
typedef struct _FmDndSrcClass FmDndSrcClass;
struct _FmDndSrc
{
GObject parent;
GtkWidget* FM_SEAL(widget);
FmFileInfoList* FM_SEAL(files);
/*< private >*/
gpointer _reserved1;
};
/**
* FmDndSrcClass
* @parent_class: the parent class
* @data_get: the class closure for the #FmDndSrc::data-get signal
*/
struct _FmDndSrcClass
{
GObjectClass parent_class;
void (*data_get)(FmDndSrc*);
/*< private >*/
gpointer _reserved1;
};
GType fm_dnd_src_get_type (void);
FmDndSrc* fm_dnd_src_new (GtkWidget* w);
void fm_dnd_src_set_widget(FmDndSrc* ds, GtkWidget* w);
/* FmFileInfoList* fm_dnd_src_get_files(FmDndSrc* ds); */
void fm_dnd_src_set_files(FmDndSrc* ds, FmFileInfoList* files);
void fm_dnd_src_set_file(FmDndSrc* ds, FmFileInfo* file);
/**
* fm_dnd_src_add_targets
* @widget: #GtkWidget to add targets
* @targets: pointer to array of #GtkTargetEntry to add
* @n: number of targets to add
*
* Adds drag source targets to existing list for @widget. Convenience API.
*
* Since: 1.0.1
*/
#define fm_dnd_src_add_targets(widget,targets,n) \
gtk_target_list_add_table(gtk_drag_source_get_target_list(widget), \
targets, n)
G_END_DECLS
#endif /* __FM_DND_SRC_H__ */
|