aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/touch.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Explicitly mark unused parametersPierre Ossman2023-01-041-4/+8
| | | | | This allows us to separate accidentally unused, from explicitly unused parameters, which allows us to turn on such checks in the compiler.
* Retry connection in case of an errorJohannes2021-07-231-3/+3
|
* Merge branch 'noblock' of https://github.com/CendioOssman/tigervncPierre Ossman2021-01-191-1/+1
|
* Fix some inappropriate format specifiersPierre Ossman2020-06-181-4/+4
| | | | A "0x" prefix suggest hexadecimal values, not decimal.
* Don't catch exceptions by valuePierre Ossman2020-05-311-1/+1
|
* Support touch gestures on WindowsSamuel Mannehed2020-05-291-9/+62
| | | | | | | | | | This adds the same touch gesture support for Windows as already added for Unix. Note that it uses Windows gesture detection instead of our own here though to give the user a familiar experience. Unfortunately that means we lose the three finger tap. This also raises the base requirements to Windows 7 as that's when Windows got proper touch support.
* Implement X Input pointer handling for UnixAaron Sowry2020-05-291-0/+220
Switch from using Core events to using X Input events for pointer devices in order to differentiate between mouse events and touch events. Because FLTK doesn't understand X Input 2, we intercept these events and translate them to core events where possible.