WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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
Details
Formatted Diff
Diff
Patch
(71.41 KB, patch)
2020-05-12 05:49 PDT
,
Carlos Garcia Campos
aperez
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Carlos Garcia Campos
Comment 1
2020-05-11 06:22:17 PDT
Created
attachment 399015
[details]
Patch
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
Committed
r261570
: <
https://trac.webkit.org/changeset/261570
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug