/* * fm-dnd-src.h * * Copyright 2009 PCMan * * 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 #include "fm-file-info.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)) /* default targets of drag source */ enum { FM_DND_SRC_TARGET_FM_LIST, /* direct pointer of FmList */ FM_DND_SRC_TARGET_URI_LIST, /* text/uri-list */ N_FM_DND_SRC_DEFAULT_TARGETS }; extern GtkTargetEntry fm_default_dnd_src_targets[]; typedef struct _FmDndSrc FmDndSrc; typedef struct _FmDndSrcClass FmDndSrcClass; struct _FmDndSrc { GObject parent; GtkWidget* widget; FmFileInfoList* files; }; struct _FmDndSrcClass { GObjectClass parent_class; void (*data_get)(); }; 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); G_END_DECLS #endif /* __FM_DND_SRC_H__ */