RESOLVED FIXED 211723
[GTK] Rework drag and drop handling in preparation for GTK4
https://bugs.webkit.org/show_bug.cgi?id=211723
Summary [GTK] Rework drag and drop handling in preparation for GTK4
Carlos Garcia Campos
Reported 2020-05-11 06:14:29 PDT
Make it easier to share the implementation.
Attachments
Patch (66.87 KB, patch)
2020-05-11 06:22 PDT, Carlos Garcia Campos
no flags
Patch (71.41 KB, patch)
2020-05-12 05:49 PDT, Carlos Garcia Campos
aperez: review+
Carlos Garcia Campos
Comment 1 2020-05-11 06:22:17 PDT
Carlos Garcia Campos
Comment 2 2020-05-12 05:49:58 PDT
Created attachment 399122 [details] Patch I forgot to add the gtk4 stubs
Adrian Perez
Comment 3 2020-05-12 09:17:18 PDT
Comment on attachment 399122 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=399122&action=review > Source/WebCore/platform/gtk/GtkUtilities.cpp:111 > + && gdkAction & GDK_ACTION_LINK) It took me a while to understand why this is done in this way. IMO it's more idiomatic to use a bitmastk to checl all flags at once: static constexpr auto gdkEveryMask = GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK; if ((gdkAction & gdkEveryMask) == gdkEveryMask) return DragOperationEvery; ...but it was already written this way before, so feel free to leave it as-is.
Carlos Garcia Campos
Comment 4 2020-05-12 12:27:55 PDT
Note You need to log in before you can comment on or make changes to this bug.