Bug 362217 - Input event not being correctly recognized when cursor is or not over certain elements in Krita 3.0 alpha
Summary: Input event not being correctly recognized when cursor is or not over certain...
Status: RESOLVED FIXED
Alias: None
Product: krita
Classification: Applications
Component: Usability (show other bugs)
Version: 3.0 Alpha
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Krita Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-04-25 05:11 UTC by Tyson Tan
Modified: 2016-04-29 01:07 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tyson Tan 2016-04-25 05:11:52 UTC
Input event not being correctly recognized when cursor is or not over certain elements in Krita 3.0 alpha.

For example:
1. Zooming shortcuts (Ctrl+=/+/1, +/-) not working when cursor is not on canvas;
2. Keyword filter input box in brush preset widget, when cursor moves onto canvas (without clicking) all keyword input is interpreted as canvas shortcut;

We very often use zooming during operations like changing Brushes, Color adjustment, Transformation, and switching back and forth between another program to look at references. It's unpredictable where the cursor will be when we switch our focus back to drawing. With behavior like (1), zooming cease to work without any context, which is very annoying and breaks the flow.

When using a graphics tablet, it's not easy to keep the cursor inside the input box when typing a keyword. It's not like using a mouse, with which you can stop anytime, a stylus instead keeps reporting its position until it's lifted high enough. For intuos pro/Cintiq, the effective range is more than 7mm high. Even if I try to lift it up vertically, it MUST have move the cursor somewhere! Behavior like (2) is really confusing and flow breaking as a result.

There must be more than these two, but they are by far the most serious flow breakers for me.

Reproducible: Always
Comment 1 Tyson Tan 2016-04-25 05:18:59 UTC
(1) is especially annoying with Intuos Pro/Cintiq, because when I reach out to the zooming shortcuts using my hands (one of them is holding the stylus), there is a high chance the cursor being moved out of the canvas unintentionally, causing the flow to break.
Comment 2 Dmitry Kazakov 2016-04-25 11:55:58 UTC
Hi, Tyson!

Thank you for your report! I think this bug was always present in Krita since we first introduced our own canvas-based gestures. I will try to think over what I can do with it without breaking too much stuff.
Comment 3 wolthera 2016-04-25 12:00:06 UTC
Tyson, you reported this one before, I think. Did it briefly get fixed inbetween sessions?

*** This bug has been marked as a duplicate of bug 343763 ***
Comment 4 Tyson Tan 2016-04-26 09:24:12 UTC
I didn't check if there was a similar old bug reported. But such annoyance never felt so obvious before. 

It could be me using Intuos more recently, tho. This is how I arrange my workspace:
[SCREEN]
[KEYBOARD]
[INTUOS]
So each time I need to press a shortcut with a modifier (need both hands, one holding the stylus), the cursor moves out of the canvas as my hand moved over the tablet upward to press the keyboard.

Earlier this year I used Cintiq more because I sketched more, the workspace was like:
[CINTIQ]
[KEYBOARD]
It didn't happen as often as the Intuos arrangement, because when using Cintiq, it's easier and more intuitive to lift the stylus vertically as the screen angled, parallel to the arms.

If I did reported a duplicated bug, I'm sorry. But I think this is a bug that impacts user experience in a very bad way -- it's too unpredictable and often being interpreted as the program not being responsive (such as I thought before, as well). Krita's UI never hinted users where to put the cursor when carrying out different tasks, making the confusion even worse, unless they know this bug.

I wonder if we can do something about this before Krita 3.1 comes out?
Comment 5 Dmitry Kazakov 2016-04-27 17:39:09 UTC
Git commit d64d85fb10a58b6ed3b9451abeb1927576052e4d by Dmitry Kazakov.
Committed on 27/04/2016 at 17:38.
Pushed by dkazakov into branch 'master'.

Fix shortcuts when the cursor is outside the canvas

This patch needs testing on Windows, OSX and all the variations
of DE on Linux!

Before today the focus was automatically transferred to the canvas
when the cursor was hovering over it. That caused all input boxes
in the dockers work only when you keep the cursor over them. That
was hardly convenient.

Now the focus can be transferred in a semi-automatic way.

* if you move the cursor outside the canvas without clicking anywhere
  the focus is kept on the canvas and you can still use the shortcuts

* if you click in any input box outside the canvas, the focus will be
  transferred to that input box. Therefore the shortcuts will not work.

* to return input focus to the canvas you should do one of the following:
    - just start a stroke on it
    - keep your cursor *moving* over the canvas for 2 seconds and
      the focus will be transferred automatically. "Moving" condition is
      needed for a case when you drop your mouse or a stylus in a fixed
      position on a canvas and move your hands to the keyboard to fill
      in input boxes in the dockers. If you do this "dropping" quick
      enough (< 2 sec), the focus will be kept on your input box :)

To implement such behavior I had to create a special class
KisTimedSignalThreshold which uses almost the same interface as
KisSignalsCompressor, but does what we need: emit the signal if the
flow of events is strong enough.

Fixes T2346
Related: bug 343763
CC:kimageshop@kde.org

M  +1    -0    libs/image/CMakeLists.txt
A  +82   -0    libs/image/kis_timed_signal_threshold.cpp     [License: GPL (v2+)]
A  +71   -0    libs/image/kis_timed_signal_threshold.h     [License: GPL (v2+)]
M  +3    -15   libs/ui/input/kis_input_manager.cpp
M  +39   -5    libs/ui/input/kis_input_manager_p.cpp
M  +8    -1    libs/ui/input/kis_input_manager_p.h
M  +5    -1    libs/ui/input/kis_shortcut_matcher.cpp

http://commits.kde.org/krita/d64d85fb10a58b6ed3b9451abeb1927576052e4d
Comment 6 Tyson Tan 2016-04-28 03:09:11 UTC
Thank you very much Dmitry! That's exactly what we need! I will test this as soon as the PPA is updated accordingly.

And I wonder, if we can return the input focus to the canvas by using Middle-click (move canvas) as well? That's a very common habit when we draw as well.
Comment 7 Dmitry Kazakov 2016-04-28 06:52:07 UTC
Hi, Tyson!

Yes, you can return focus by middle click. It'll start a panning action though. Not sure if it is a bad thing or not. And I will try to update PPA today.
Comment 8 Tyson Tan 2016-04-28 09:01:30 UTC
Hi Dmitry,

Panning is good. The point to use middle-click to shift focus to canvas is exactly to make zooming available with panning.
Comment 9 Tyson Tan 2016-04-29 01:07:26 UTC
Hi Dmitry, I confirmed the fix using the lastest PPA package, they worked beautifully. It will keep my sanity up XD Thank you so much!