diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-01-02 09:09:22 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-01-08 18:48:20 -0500 |
commit | 853063bea76f6c6add1b9775e8864a4cc119c835 (patch) | |
tree | c5378cc6b02783c9d54c34df326790545fbd009b /gtk/gtkwidget.h | |
parent | 69e3fee5e2d5ecdaf66338827fd880d662c35e92 (diff) | |
download | gtk+-853063bea76f6c6add1b9775e8864a4cc119c835.tar.gz |
Remove old drag dest api
Diffstat (limited to 'gtk/gtkwidget.h')
-rw-r--r-- | gtk/gtkwidget.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gtk/gtkwidget.h b/gtk/gtkwidget.h index 47dc7fc0ad..fc1221fc81 100644 --- a/gtk/gtkwidget.h +++ b/gtk/gtkwidget.h @@ -187,14 +187,6 @@ struct _GtkWidget * @focus: * @move_focus: Signal emitted when a change of focus is requested * @keynav_failed: Signal emitted if keyboard navigation fails. - * @drag_leave: Signal emitted on the drop site when the cursor leaves - * the widget. - * @drag_motion: signal emitted on the drop site when the user moves - * the cursor over the widget during a drag. - * @drag_drop: Signal emitted on the drop site when the user drops the - * data onto the widget. - * @drag_data_received: Signal emitted on the drop site when the - * dragged data has been received. * @popup_menu: Signal emitted whenever a widget should pop up a * context menu. * @get_accessible: Returns the accessible object that describes the @@ -266,21 +258,6 @@ struct _GtkWidgetClass gboolean (* keynav_failed) (GtkWidget *widget, GtkDirectionType direction); - /* Target side drag signals */ - void (* drag_leave) (GtkWidget *widget, - GdkDrop *drop); - gboolean (* drag_motion) (GtkWidget *widget, - GdkDrop *drop, - gint x, - gint y); - gboolean (* drag_drop) (GtkWidget *widget, - GdkDrop *drop, - gint x, - gint y); - void (* drag_data_received) (GtkWidget *widget, - GdkDrop *drop, - GtkSelectionData *selection_data); - /* Signals used only for keybindings */ gboolean (* popup_menu) (GtkWidget *widget); |