Merge pull request #415 from WebFreak001/patch-3

add MouseButtonLinear to sdpy
This commit is contained in:
Adam D. Ruppe 2024-01-06 16:40:36 -05:00 committed by GitHub
commit 40739b4e0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -10601,6 +10601,17 @@ enum MouseButton : int {
forwardButton = 64, /// often found on the thumb and used for forward in browsers
}
/// Corresponds to the values found in MouseEvent.buttonLinear, being equal to `core.bitop.bsf(button) + 1`
enum MouseButtonLinear : ubyte {
left = 1, ///
right, ///
middle, ///
wheelUp, ///
wheelDown, ///
backButton, /// often found on the thumb and used for back in browsers
forwardButton, /// often found on the thumb and used for forward in browsers
}
version(X11) {
// FIXME: match ASCII whenever we can. Most of it is already there,
// but there's a few exceptions and mismatches with Windows