aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/EmulateMB.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Move timers to core libraryPierre Ossman2025-02-251-2/+2
| | | | | | | Make it clearer what is protocol handling and what is just general plumbing. This is one step of several.
* Move basic data types to core libraryPierre Ossman2025-02-131-2/+4
| | | | | | | Make it clearer what is protocol handling and what is just general plumbing. This is one step of several.
* Merge branch 'mouse-button-support' of https://github.com/CendioHalim/tigervncPierre Ossman2024-11-181-4/+4
|\
| * vncviewer: support for back/forward mouse buttonsAdam Halim2024-10-221-4/+4
| | | | | | | | | | | | | | | | This commit implements the pseudo-encoding ExtendedMouseButtons which makes it possible to use the back/forward mouse buttons. This commit contains work originally done by PixelSmith <manny33@frontbuffer.com>.
* | Use standard exception classesPierre Ossman2024-11-061-3/+3
|/ | | | | Use the more specific already included exception classes for common errors to keep things more understandable.
* Better type for pointer button maskPierre Ossman2024-08-121-4/+4
| | | | | This is a very limited bit field, so use an 8 bit type to clearly show how many bits are available.
* Explicitly request timer repetitionPierre Ossman2024-06-191-4/+2
| | | | | | One-shot timers are more common, so let's change the API a bit to make that use case simpler. This API also makes it more clear what is happening.
* fix spelling errorut0045272023-11-061-1/+1
|
* Use operator overloading for comparisonPierre Ossman2023-02-041-1/+1
| | | | | It is much more natural than custom methods for this very common operation.
* Fix position for click and drag with EmulateMBAlex Tanskanen2020-05-261-12/+60
| | | | | | | If you have the setting "Emulate middle mouse button" turned on, a click and drag can fail if it is done very quickly. The position of the initial click will be incorrect in such a case because the timeout will delay events.
* Add emulated middle mouse buttonAlex Tanskanen2020-01-161-0/+289
Not every mouse has three buttons e.g. laptops. Some OS might not have support for middle mouse button emulation. This commit adds emulation for middle mouse button when pressing both left and right mouse button simultaneously.