From ec2b0577aae8c8c91633c61db1c70a75c7a22c88 Mon Sep 17 00:00:00 2001 From: Jan Jurzitza Date: Sat, 6 Jan 2024 21:37:35 +0000 Subject: [PATCH] add MouseButtonLinear to sdpy --- simpledisplay.d | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/simpledisplay.d b/simpledisplay.d index 0215395..fabd340 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -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