]> Pileus Git - ~andy/gtk/blob - gdk/gdkdnd.h
Seal gdk
[~andy/gtk] / gdk / gdkdnd.h
1 /* GDK - The GIMP Drawing Kit
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 #if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
28 #error "Only <gdk/gdk.h> can be included directly."
29 #endif
30
31 #ifndef __GDK_DND_H__
32 #define __GDK_DND_H__
33
34 #include <gdk/gdktypes.h>
35
36 G_BEGIN_DECLS
37
38 typedef struct _GdkDragContext        GdkDragContext;
39
40 typedef enum
41 {
42   GDK_ACTION_DEFAULT = 1 << 0,
43   GDK_ACTION_COPY    = 1 << 1,
44   GDK_ACTION_MOVE    = 1 << 2,
45   GDK_ACTION_LINK    = 1 << 3,
46   GDK_ACTION_PRIVATE = 1 << 4,
47   GDK_ACTION_ASK     = 1 << 5
48 } GdkDragAction;
49
50 typedef enum
51 {
52   GDK_DRAG_PROTO_MOTIF,
53   GDK_DRAG_PROTO_XDND,
54   GDK_DRAG_PROTO_ROOTWIN,         /* A root window with nobody claiming
55                                    * drags */
56   GDK_DRAG_PROTO_NONE,            /* Not a valid drag window */
57   GDK_DRAG_PROTO_WIN32_DROPFILES, /* The simple WM_DROPFILES dnd */
58   GDK_DRAG_PROTO_OLE2,            /* The complex OLE2 dnd (not implemented) */
59   GDK_DRAG_PROTO_LOCAL            /* Intra-app */
60 } GdkDragProtocol;
61
62 /* Object that holds information about a drag in progress.
63  * this is used on both source and destination sides.
64  */
65
66 typedef struct _GdkDragContextClass GdkDragContextClass;
67
68 #define GDK_TYPE_DRAG_CONTEXT              (gdk_drag_context_get_type ())
69 #define GDK_DRAG_CONTEXT(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_DRAG_CONTEXT, GdkDragContext))
70 #define GDK_DRAG_CONTEXT_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_DRAG_CONTEXT, GdkDragContextClass))
71 #define GDK_IS_DRAG_CONTEXT(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_DRAG_CONTEXT))
72 #define GDK_IS_DRAG_CONTEXT_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_DRAG_CONTEXT))
73 #define GDK_DRAG_CONTEXT_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_DRAG_CONTEXT, GdkDragContextClass))
74
75 struct _GdkDragContext {
76   GObject parent_instance;
77
78   /*< public >*/
79   
80   GdkDragProtocol GSEAL (protocol);
81
82   gboolean GSEAL (is_source);
83   
84   GdkWindow *GSEAL (source_window);
85   GdkWindow *GSEAL (dest_window);
86
87   GList *GSEAL (targets);
88   GdkDragAction GSEAL (actions);
89   GdkDragAction GSEAL (suggested_action);
90   GdkDragAction GSEAL (action);
91
92   guint32 GSEAL (start_time);
93
94   /*< private >*/
95   
96   gpointer GSEAL (windowing_data);
97 };
98
99 struct _GdkDragContextClass {
100   GObjectClass parent_class;
101
102 };
103
104 /* Drag and Drop */
105
106 GType            gdk_drag_context_get_type   (void) G_GNUC_CONST;
107 GdkDragContext * gdk_drag_context_new        (void);
108
109 GList           *gdk_drag_context_list_targets         (GdkDragContext *context);
110 GdkDragAction    gdk_drag_context_get_actions          (GdkDragContext *context);
111 GdkDragAction    gdk_drag_context_get_suggested_action (GdkDragContext *context);
112 GdkDragAction    gdk_drag_context_get_action           (GdkDragContext *context);
113
114 /* Destination side */
115
116 void             gdk_drag_status        (GdkDragContext   *context,
117                                          GdkDragAction     action,
118                                          guint32           time_);
119 void             gdk_drop_reply         (GdkDragContext   *context,
120                                          gboolean          ok,
121                                          guint32           time_);
122 void             gdk_drop_finish        (GdkDragContext   *context,
123                                          gboolean          success,
124                                          guint32           time_);
125 GdkAtom          gdk_drag_get_selection (GdkDragContext   *context);
126
127 /* Source side */
128
129 GdkDragContext * gdk_drag_begin      (GdkWindow      *window,
130                                       GList          *targets);
131
132 GdkNativeWindow gdk_drag_get_protocol_for_display (GdkDisplay       *display,
133                                                    GdkNativeWindow   xid,
134                                                    GdkDragProtocol  *protocol);
135
136 void    gdk_drag_find_window_for_screen   (GdkDragContext   *context,
137                                            GdkWindow        *drag_window,
138                                            GdkScreen        *screen,
139                                            gint              x_root,
140                                            gint              y_root,
141                                            GdkWindow       **dest_window,
142                                            GdkDragProtocol  *protocol);
143
144 #ifndef GDK_MULTIHEAD_SAFE
145 GdkNativeWindow gdk_drag_get_protocol (GdkNativeWindow   xid,
146                                        GdkDragProtocol  *protocol);
147
148 void    gdk_drag_find_window  (GdkDragContext   *context,
149                                GdkWindow        *drag_window,
150                                gint              x_root,
151                                gint              y_root,
152                                GdkWindow       **dest_window,
153                                GdkDragProtocol  *protocol);
154 #endif /* GDK_MULTIHEAD_SAFE */
155
156 gboolean        gdk_drag_motion      (GdkDragContext *context,
157                                       GdkWindow      *dest_window,
158                                       GdkDragProtocol protocol,
159                                       gint            x_root, 
160                                       gint            y_root,
161                                       GdkDragAction   suggested_action,
162                                       GdkDragAction   possible_actions,
163                                       guint32         time_);
164 void            gdk_drag_drop        (GdkDragContext *context,
165                                       guint32         time_);
166 void            gdk_drag_abort       (GdkDragContext *context,
167                                       guint32         time_);
168 gboolean        gdk_drag_drop_succeeded (GdkDragContext *context);
169
170 G_END_DECLS
171
172 #endif /* __GDK_DND_H__ */