aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/cursornavigation.h
Commit message (Collapse)AuthorAgeFilesLines
* [debug info] introduce logging categoryGrigorii Zimin2019-12-121-1/+3
| | | | | Change-Id: Iecfae62068d93adc50ec12d79cd9e15e3c7a3c9f Reviewed-by: Egor Nemtsev <enemtsev@luxoft.com>
* add possibility to add offset to the directional movement of the cursorBramastyo Harimukti2019-11-271-1/+1
| | | | | Change-Id: I79d33e3f944fcdd89023dbc84534318392bfee60 Reviewed-by: Egor Nemtsev <enemtsev@luxoft.com>
* Add license and copyright informationAntti Hölttä2019-03-191-0/+39
|
* Add existing isues as TODOsAntti Hölttä2019-03-181-0/+2
|
* Add redirect feature for manually fine tuning the cursor's movementAntti Hölttä2019-03-181-3/+1
| | | | | | | | Cursornavigation now has a property redirects, that allows defining exceptions to the navigation behaviour. A redirect allows defining a starting and an ending angle and a target object. If the move command's direction falls between the limits, the algorithm is bypassed and cursor is moved to the target object.
* Add callbacks for magnitude, moves and actionsAntti Hölttä2019-03-181-5/+7
| | | | | | | | | When cursor is moved, the current item is informed of the actions via callbacks. Eg. when cursor is moved up, the item that had the cursor will have its movedUp signal fired. It is now also possible to inform navigable items over incomplete movement, or the magnitude of the movement. This may be used eg. to make buttons or elements to flip/rotate to indicate that the cursor is about to be moved.
* cursor trapping and navigation out of a scope works now as intendedAntti Hölttä2019-03-181-0/+1
| | | | | | done by precopying the list of candidates. Could avoid extra list copies if the algorithm traversed the tree, but this is simpler and works for now
* Add find-functionAntti Hölttä2019-03-181-1/+6
| | | | | | find-function is similar to the move, but instead of moving the cursor, it returns the item that cursor would move to if move was called with the same arguments
* Bugfixes to 360 algorithm, added cooldown for gamepad controlAntti Hölttä2019-03-181-4/+1
| | | | | Joystick produce change events very rapidly and continuously, so a cooldown time is needed so that the cursor wont jump over multiple items
* Add 360 algorithmAntti Hölttä2019-03-181-5/+10
| | | | | Add algorithm that allows navigation to any direction. Works somewhat well now. Example app has a page with a gamepad/stick support.
* CursorNavigationAttached now implements the control interfaceAntti Hölttä2019-03-181-3/+1
| | | | | | CursorNavigationAttached now implements the functions for moving the cursor and for giving commands. This makes it possible to reassign the control keys, or use other input sources as well
* More on scopes, works to some extent in the test programAntti Hölttä2019-03-181-3/+9
| | | | | Scope may be entered and escaped. Navigable items may have escape targets defined
* Refactor item registration with scopes in mindAntti Hölttä2019-03-181-6/+8
| | | | | ItemRegister class removed and items now keep track of their own cursor navigable child items. Navigation happens now only between siblings.
* Bind cursor presence to the current active focusAntti Hölttä2019-03-181-0/+3
|
* Initial commit, demoable pocAntti Hölttä2019-03-181-0/+45
Sort of working with 4 dir navigation, check demoapp