Closed
Bug 479995
Opened 16 years ago
Closed 16 years ago
[linux] mozUserCancelled isn't implemented on gtk / pressing ESC while dragging a tab doesn't cancel the drag (bug 465608 isn't fixed)
Categories
(Core :: Widget: Gtk, defect, P1)
Tracking
()
VERIFIED
FIXED
mozilla1.9.2a1
Tracking | Status | |
---|---|---|
status1.9.1 | --- | .2-fixed |
People
(Reporter: asaf, Assigned: karlt)
References
Details
(Keywords: perf, platform-parity, verified1.9.1, Whiteboard: [TSnap])
Attachments
(1 file, 1 obsolete file)
10.79 KB,
patch
|
enndeakin
:
review+
samuel.sidler+old
:
approval1.9.1.2+
|
Details | Diff | Splinter Review |
GTK part of bug 471848.
Flags: blocking1.9.1?
Flags: wanted1.9.1+
Flags: blocking1.9.1?
Flags: blocking1.9.1-
OS: Mac OS X → Linux
Priority: -- → P1
Comment 1•16 years ago
|
||
Just for info: this is an easy fix but requires gtk2.12 while our builds use 2.10
Ah, can we just load the symbols we need dynamically and have this work only on 2.12? Worst case for 2.10 would be no worse than it is currently, right?
Assignee | ||
Comment 3•16 years ago
|
||
This also removes the big delay between dropping the tab (on an unreceptive target) and the tab being torn off into a new window.
Assignee: nobody → mozbugz
Status: NEW → ASSIGNED
Attachment #381207 -
Flags: superreview?(roc)
Attachment #381207 -
Flags: review?(enndeakin)
Assignee | ||
Comment 4•16 years ago
|
||
Comment on attachment 381207 [details] [diff] [review]
handle drag-failed signal when available
This applies on top of attachment 380050 [details] [diff] [review] for bug 495184.
Attachment #381207 -
Flags: superreview?(roc) → superreview+
Comment 5•16 years ago
|
||
Comment on attachment 381207 [details] [diff] [review]
handle drag-failed signal when available
>- sDragLm = PR_NewLogModule("nsDragService");
>+ sDragLm = PR_NewLogModule("nsDragService");
Unnecessary indenting change.
>+ if (aResult != MOZ_GTK_DRAG_RESULT_SUCCESS &&
>+ aResult != MOZ_GTK_DRAG_RESULT_NO_TARGET) {
>+
>+ mUserCancelled = PR_TRUE;
There are six possible values of GtkDragResult, only one
(GTK_DRAG_RESULT_USER_CANCELLED) which means the user cancelled, so mUserCancelled should only be set in that case.
If aResult is MOZ_GTK_DRAG_RESULT_NO_TARGET, don't you just want to set dropEffect to DRAGDROP_ACTION_NONE and not check the action?
Assignee | ||
Comment 6•16 years ago
|
||
(In reply to comment #5)
> (From update of attachment 381207 [details] [diff] [review])
> >- sDragLm = PR_NewLogModule("nsDragService");
> >+ sDragLm = PR_NewLogModule("nsDragService");
>
> Unnecessary indenting change.
Are you saying that we should never change the intendation for the sake of
readability? Or do you think the lack of indentation was intended?
>
> >+ if (aResult != MOZ_GTK_DRAG_RESULT_SUCCESS &&
> >+ aResult != MOZ_GTK_DRAG_RESULT_NO_TARGET) {
> >+
> >+ mUserCancelled = PR_TRUE;
>
> There are six possible values of GtkDragResult, only one
> (GTK_DRAG_RESULT_USER_CANCELLED) which means the user cancelled, so
> mUserCancelled should only be set in that case.
We are not able to accurately represent all 6 GtkDragResult values in the DOM
events. Only GTK_DRAG_RESULT_USER_CANCELLED has a similar name to the
mozUserCancelled attribute, but I thought (most) of the other failures were
cancelled drags of some sort.
GTK_DRAG_RESULT_GRAB_BROKEN would be generated if the user broke the grab
(cancelling the drag), or if an application broke the grab, which would most
likely be in response to a user action. So GTK_DRAG_RESULT_GRAB_BROKEN seems
to indicate that "the user cancelled the drag".
Regarding the other 2 GtkDragResult values, I've now read the comment on
nsIDOMDataTransfer::mozUserCancelled more carefully:
Will be true if the user cancelled the drag (typically by pressing Escape).
This will be false otherwise, including if a drag failed for any other
reason.
Currently the only user of this attribute seems to be tabbrowser's _onDragEnd,
but what that method really seems to want to know is whether a drop was
performed on an unreceptive destination. Should we have a different attribute
more suitable for this purpose?
If we don't treat GTK_DRAG_RESULT_TIMEOUT_EXPIRED as a cancelled drag, then
whatever action results from an uncancelled dragend will be performed 5
minutes after the drop that timed out.
GTK_DRAG_RESULT_ERROR is not ever generated with gtk+-2.14.7 at least, but
does it seem right to respond to an unknown error by tearing off a tab?
> If aResult is MOZ_GTK_DRAG_RESULT_NO_TARGET, don't you just want to set
> dropEffect to DRAGDROP_ACTION_NONE and not check the action?
Yes, you are right. I thought the action would always be none with
GTK_DRAG_RESULT_NO_TARGET, but this is not necessarily the case with Motif
drops.
Comment 7•16 years ago
|
||
(In reply to comment #6)
> Are you saying that we should never change the intendation for the sake of
> readability? Or do you think the lack of indentation was intended?
Sorry, I must have read the patch too quickly. That change looks ok.
>
> >
> > >+ if (aResult != MOZ_GTK_DRAG_RESULT_SUCCESS &&
> > >+ aResult != MOZ_GTK_DRAG_RESULT_NO_TARGET) {
> > >+
> > >+ mUserCancelled = PR_TRUE;
> >
> > There are six possible values of GtkDragResult, only one
> > (GTK_DRAG_RESULT_USER_CANCELLED) which means the user cancelled, so
> > mUserCancelled should only be set in that case.
>
> We are not able to accurately represent all 6 GtkDragResult values in the DOM
> events. Only GTK_DRAG_RESULT_USER_CANCELLED has a similar name to the
> mozUserCancelled attribute, but I thought (most) of the other failures were
> cancelled drags of some sort.
>
OK, that seems to make sense. The documentation for mozUserCancelled should be updated to indicate that it will also be true if the drag failed in an unexpected way.
Assignee | ||
Updated•16 years ago
|
Attachment #381207 -
Flags: review?(enndeakin)
Updated•16 years ago
|
Flags: wanted1.9.1.x?
Assignee | ||
Comment 8•16 years ago
|
||
Set dropEffect to DRAGDROP_ACTION_NONE on GTK_DRAG_RESULT_NO_TARGET,
and update mozUserCancelled documentation.
Attachment #381207 -
Attachment is obsolete: true
Attachment #382441 -
Flags: review?(enndeakin)
Updated•16 years ago
|
Attachment #382441 -
Flags: review?(enndeakin) → review+
Assignee | ||
Comment 9•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Keywords: perf
Resolution: --- → FIXED
Whiteboard: [TSnap]
Assignee | ||
Updated•16 years ago
|
Attachment #382441 -
Flags: approval1.9.1?
Comment 10•16 years ago
|
||
Verified fixed with Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2a1pre) Gecko/20090703 Minefield/3.6a1pre ID:20090703031447
Status: RESOLVED → VERIFIED
Flags: in-testsuite?
Target Milestone: --- → mozilla1.9.2a1
Version: unspecified → 1.9.1 Branch
Comment 11•16 years ago
|
||
No tests were checked in with this, perhaps a litmus test can be added?
Flags: in-litmus?
Updated•16 years ago
|
Attachment #382441 -
Flags: approval1.9.1?
Comment 12•16 years ago
|
||
Karl, will this patch work on 1.9.1? If it does, we should ask for approval1.9.1.1.
Nochum, we have to update https://litmus.mozilla.org/show_test.cgi?id=7544 when it has been (will be) fixed on 1.9.1.
Assignee | ||
Comment 13•16 years ago
|
||
Comment on attachment 382441 [details] [diff] [review]
handle drag-failed signal when available v1.1
This patch will work on 1.9.1 if was also have the patches in bug 495184.
Attachment #382441 -
Flags: approval1.9.1.1?
Assignee | ||
Updated•16 years ago
|
Comment 14•15 years ago
|
||
Comment on attachment 382441 [details] [diff] [review]
handle drag-failed signal when available v1.1
Approved for 1.9.1.2. a=ss for release-drivers
Please land on mozilla-1.9.1 and use the ".2-fixed" option of the "status1.9.1" flag.
Is there a bug for getting an automated test written for this?
Attachment #382441 -
Flags: approval1.9.1.1? → approval1.9.1.2+
Updated•15 years ago
|
Flags: wanted1.9.1.x?
Assignee | ||
Comment 15•15 years ago
|
||
status-1.9.1.2-fixed:
http://hg.mozilla.org/releases/mozilla-1.9.1/rev/8f359d58f649
(In reply to comment #14)
> Is there a bug for getting an automated test written for this?
I don't really have a good picture of how an automated test for this might
work.
Simulating a drag would require sending native pointer motion and button
and keyboard events.
status1.9.1:
--- → .2-fixed
Comment 16•15 years ago
|
||
EventUtils.synthesize[DragStart|Drop] ? That *should* be able to test this, but you can't specify an esc during the drag presently...
Assignee | ||
Comment 17•15 years ago
|
||
(In reply to comment #16)
> EventUtils.synthesize[DragStart|Drop] ? That *should* be able to test this, but
> you can't specify an esc during the drag presently...
Thanks. That would be useful for testing many parts of drag processing.
But the code involved in this bug is actually in processing native events at a level closer to the OS than nsIDOMEventTarget::dispatchEvent(), so using dispatchEvent() would not test this code.
Comment 18•15 years ago
|
||
Actually, why can't you just run a drag manually, like what's done in synthesizeDragStart, then in the dragstart handler of the element you're dragging use sendKey("VK_ESC"). I'd give it a go, but I won't have a chance until the weekend at least.
Comment 19•15 years ago
|
||
(In reply to comment #18)
> Actually, why can't you just run a drag manually, like what's done in
> synthesizeDragStart, then in the dragstart handler of the element you're
> dragging use sendKey("VK_ESC").
Because the cancelling of the drag upon pressing of the escape key is done by the operating system. Drags is general cannot be automated as they rely on the operating system's processing, which Mozilla doesn't control nor, in most cases, has any control over. On Mac, for instance, native drag apis will fail unless an actual mouse button event is being processed.
Comment 20•15 years ago
|
||
Verified fixed on 1.9.1 with Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.2pre) Gecko/20090728 Shiretoko/3.5.2pre ID:20090728032218
Litmus test https://litmus.mozilla.org/show_test.cgi?id=7544 has been updated. Marking in-litmus+. Can we minus in-testsuite?
Flags: in-litmus? → in-litmus+
Keywords: verified1.9.1
You need to log in
before you can comment on or make changes to this bug.
Description
•