]> Pileus Git - ~andy/gtk/blob - gtk/gtkselection.h
Use the new file DND api.
[~andy/gtk] / gtk / gtkselection.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GTK_SELECTION_H__
28 #define __GTK_SELECTION_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkenums.h>
33 #include <gtk/gtkwidget.h>
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
38
39 typedef struct _GtkTargetList    GtkTargetList;
40 typedef struct _GtkTargetEntry   GtkTargetEntry;
41
42 #define GTK_TYPE_SELECTION_DATA (gtk_selection_data_get_type ())
43
44 /* The contents of a selection are returned in a GtkSelectionData
45  * structure. selection/target identify the request.  type specifies
46  * the type of the return; if length < 0, and the data should be
47  * ignored. This structure has object semantics - no fields should be
48  * modified directly, they should not be created directly, and
49  * pointers to them should not be stored beyond the duration of a
50  * callback. (If the last is changed, we'll need to add reference
51  * counting.) The time field gives the timestamp at which the data was
52  * sent.
53  */
54
55 struct _GtkSelectionData
56 {
57   GdkAtom       selection;
58   GdkAtom       target;
59   GdkAtom       type;
60   gint          format;
61   guchar       *data;  
62   gint          length;
63   GdkDisplay   *display;
64 };
65
66 struct _GtkTargetEntry {
67   gchar *target;
68   guint  flags;
69   guint  info;
70 };
71
72 /* These structures not public, and are here only for the convenience of
73  * gtkdnd.c 
74  */
75
76 typedef struct _GtkTargetPair GtkTargetPair;
77
78 /* This structure is a list of destinations, and associated guint id's */
79 struct _GtkTargetList {
80   GList *list;
81   guint ref_count;
82 };
83
84 struct _GtkTargetPair {
85   GdkAtom   target;
86   guint     flags;
87   guint     info;
88 };
89
90 GtkTargetList *gtk_target_list_new       (const GtkTargetEntry *targets,
91                                           guint                 ntargets);
92 void           gtk_target_list_ref       (GtkTargetList  *list);
93 void           gtk_target_list_unref     (GtkTargetList  *list);
94 void           gtk_target_list_add       (GtkTargetList  *list,
95                                           GdkAtom         target,
96                                           guint           flags,
97                                           guint           info);
98 void           gtk_target_list_add_text_targets  (GtkTargetList  *list,
99                                                   guint           info);
100 void           gtk_target_list_add_image_targets (GtkTargetList  *list,
101                                                   guint           info,
102                                                   gboolean        writable);
103 void           gtk_target_list_add_uri_targets   (GtkTargetList  *list,
104                                                   guint           info);
105 void           gtk_target_list_add_table (GtkTargetList        *list,
106                                           const GtkTargetEntry *targets,
107                                           guint                 ntargets);
108 void           gtk_target_list_remove    (GtkTargetList  *list,
109                                           GdkAtom         target);
110 gboolean       gtk_target_list_find      (GtkTargetList  *list,
111                                           GdkAtom         target,
112                                           guint          *info);
113
114 /* Public interface */
115
116 gboolean gtk_selection_owner_set             (GtkWidget  *widget,
117                                               GdkAtom     selection,
118                                               guint32     time_);
119 gboolean gtk_selection_owner_set_for_display (GdkDisplay *display,
120                                               GtkWidget  *widget,
121                                               GdkAtom     selection,
122                                               guint32     time_);
123
124 void     gtk_selection_add_target    (GtkWidget            *widget,
125                                       GdkAtom               selection,
126                                       GdkAtom               target,
127                                       guint                 info);
128 void     gtk_selection_add_targets   (GtkWidget            *widget,
129                                       GdkAtom               selection,
130                                       const GtkTargetEntry *targets,
131                                       guint                 ntargets);
132 void     gtk_selection_clear_targets (GtkWidget            *widget,
133                                       GdkAtom               selection);
134 gboolean gtk_selection_convert       (GtkWidget            *widget,
135                                       GdkAtom               selection,
136                                       GdkAtom               target,
137                                       guint32               time_);
138 void     gtk_selection_data_set      (GtkSelectionData     *selection_data,
139                                       GdkAtom               type,
140                                       gint                  format,
141                                       const guchar         *data,
142                                       gint                  length);
143 gboolean gtk_selection_data_set_text (GtkSelectionData     *selection_data,
144                                       const gchar          *str,
145                                       gint                  len);
146 guchar * gtk_selection_data_get_text (GtkSelectionData     *selection_data);
147 gboolean gtk_selection_data_set_pixbuf (GtkSelectionData   *selection_data,
148                                         GdkPixbuf          *pixbuf);
149 GdkPixbuf *gtk_selection_data_get_pixbuf (GtkSelectionData *selection_data);
150 gboolean gtk_selection_data_set_uris (GtkSelectionData     *selection_data,
151                                       gchar               **uris);
152 gchar  **gtk_selection_data_get_uris (GtkSelectionData     *selection_data);
153
154 gboolean gtk_selection_data_get_targets          (GtkSelectionData  *selection_data,
155                                                   GdkAtom          **targets,
156                                                   gint              *n_atoms);
157 gboolean gtk_selection_data_targets_include_text (GtkSelectionData  *selection_data);
158
159 /* Called when a widget is destroyed */
160
161 void gtk_selection_remove_all      (GtkWidget *widget);
162
163 /* Event handlers */
164 #if !defined(GTK_DISABLE_DEPRECATED) || defined (GTK_COMPILATION)
165 gboolean gtk_selection_clear              (GtkWidget         *widget,
166                                            GdkEventSelection *event);
167 #endif
168 gboolean _gtk_selection_request           (GtkWidget         *widget,
169                                            GdkEventSelection *event);
170 gboolean _gtk_selection_incr_event        (GdkWindow         *window,
171                                            GdkEventProperty  *event);
172 gboolean _gtk_selection_notify            (GtkWidget         *widget,
173                                            GdkEventSelection *event);
174 gboolean _gtk_selection_property_notify   (GtkWidget         *widget,
175                                            GdkEventProperty  *event);
176
177 GType             gtk_selection_data_get_type (void);
178 GtkSelectionData *gtk_selection_data_copy     (GtkSelectionData *data);
179 void              gtk_selection_data_free     (GtkSelectionData *data);
180
181
182
183 #ifdef __cplusplus
184 }
185 #endif /* __cplusplus */
186
187
188 #endif /* __GTK_SELECTION_H__ */