RESOLVED FIXED 137685
[GTK] Move click counter logic back to WebKitWebViewBase
https://bugs.webkit.org/show_bug.cgi?id=137685
Summary [GTK] Move click counter logic back to WebKitWebViewBase
Carlos Garcia Campos
Reported 2014-10-14 03:52:12 PDT
It was moved to a shared class in platform to be used by both WebKit1 and WebKit2, but it's currently only used by WebKitWebViewBase.
Attachments
Patch (13.49 KB, patch)
2014-10-14 03:54 PDT, Carlos Garcia Campos
no flags
Rebased patch to apply on current git master (13.00 KB, patch)
2014-10-20 03:26 PDT, Carlos Garcia Campos
no flags
New patch (12.35 KB, patch)
2014-12-11 08:39 PST, Carlos Garcia Campos
mrobinson: review+
Carlos Garcia Campos
Comment 1 2014-10-14 03:54:54 PDT
Carlos Garcia Campos
Comment 2 2014-10-14 03:55:49 PDT
Btw, this is also another file we don't build twice because of the plugin process :-)
WebKit Commit Bot
Comment 3 2014-10-14 03:57:05 PDT
Thanks for the patch. If this patch contains new public API please make sure it follows the guidelines for new WebKit2 GTK+ API. See http://trac.webkit.org/wiki/WebKitGTK/AddingNewWebKit2API
Martin Robinson
Comment 4 2014-10-14 09:03:33 PDT
Again, I think we should just move this class to WebKit2. It's useful to separate code into classes.
Carlos Garcia Campos
Comment 5 2014-10-14 23:23:23 PDT
(In reply to comment #4) > Again, I think we should just move this class to WebKit2. It's useful to separate code into classes. I don't think it's always helpful, in this case we end up with a very small class (another file to build) with a single method that IMO belongs to the view. In the case of the DND helper is even worse, because having half of the code in the web view and the other half in a separate class makes quite difficult to follow the code (and DND logic is already complex enough). It made sense to me when we needed to share the common code, but that's no longer needed.
Carlos Garcia Campos
Comment 6 2014-10-20 03:26:43 PDT
Created attachment 240104 [details] Rebased patch to apply on current git master
Carlos Garcia Campos
Comment 7 2014-12-11 08:39:46 PST
Created attachment 243124 [details] New patch Added a private struct
Martin Robinson
Comment 8 2014-12-11 08:42:36 PST
Comment on attachment 243124 [details] New patch View in context: https://bugs.webkit.org/attachment.cgi?id=243124&action=review > Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp:768 > + // For double and triple clicks GDK sends both a normal button press event > + // and a specific type (like GDK_2BUTTON_PRESS). If we detect a special press > + // coming up, ignore this event as it certainly generated the double or triple > + // click. The consequence of not eating this event is two DOM button press events > + // are generated. > + GUniquePtr<GdkEvent> nextEvent(gdk_event_peek()); > + if (nextEvent && (nextEvent->any.type == GDK_2BUTTON_PRESS || nextEvent->any.type == GDK_3BUTTON_PRESS)) > return TRUE; I think I prefer this method as part of the click counter, since understanding types of click events is what it's good at.
Carlos Garcia Campos
Comment 9 2014-12-11 08:51:48 PST
(In reply to comment #8) > Comment on attachment 243124 [details] > New patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=243124&action=review > > > Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp:768 > > + // For double and triple clicks GDK sends both a normal button press event > > + // and a specific type (like GDK_2BUTTON_PRESS). If we detect a special press > > + // coming up, ignore this event as it certainly generated the double or triple > > + // click. The consequence of not eating this event is two DOM button press events > > + // are generated. > > + GUniquePtr<GdkEvent> nextEvent(gdk_event_peek()); > > + if (nextEvent && (nextEvent->any.type == GDK_2BUTTON_PRESS || nextEvent->any.type == GDK_3BUTTON_PRESS)) > > return TRUE; > > I think I prefer this method as part of the click counter, since > understanding types of click events is what it's good at. it doesn't use anything from the click counter
Martin Robinson
Comment 10 2014-12-11 08:57:12 PST
Comment on attachment 243124 [details] New patch View in context: https://bugs.webkit.org/attachment.cgi?id=243124&action=review >>> Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp:768 >>> return TRUE; >> >> I think I prefer this method as part of the click counter, since understanding types of click events is what it's good at. > > it doesn't use anything from the click counter I just meant that it is involved with counting clicks. Perhaps if it had a better name, it would make more sense. I'm not sure.
Carlos Garcia Campos
Comment 11 2014-12-11 09:07:10 PST
Note You need to log in before you can comment on or make changes to this bug.