diff mac/dw.m @ 2618:156ad91481eb

WARNING: Standardize button press and release button parameter values. This may break existing code using 3rd mouse button press/release events. The motion callback and OS/2 had been passing the 3rd mouse button as value 4. Other platforms were passing it as value 3. Since button/press and release events only have a single button values 1,2,3 were unique... but OS/2 was passing the mask value instead, making these not work cross platform. I decided to make the button press/release and motion events all function the same. Passing the mask values instead of button numbers. This change will only affect button 3 on button press or release events on Windows, Mac and GTK. OS/2 already functioned this way, iOS and Android do not support button 3.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 23 Jul 2021 20:26:56 +0000
parents d17e3fb76bde
children e63c1373c010
line wrap: on
line diff
--- a/mac/dw.m	Fri Jul 23 19:42:06 2021 +0000
+++ b/mac/dw.m	Fri Jul 23 20:26:56 2021 +0000
@@ -623,7 +623,7 @@
             {
                 int (* API buttonfunc)(HWND, int, int, int, void *) = (int (* API)(HWND, int, int, int, void *))handler->signalfunction;
                 NSPoint p = [NSEvent mouseLocation];
-                int button = 1;
+                int button = DW_BUTTON1_MASK;
 
                 if([event isMemberOfClass:[NSEvent class]])
                 {
@@ -634,15 +634,15 @@
 
                     if(type == DWEventTypeRightMouseDown || type == DWEventTypeRightMouseUp)
                     {
-                        button = 2;
+                        button = DW_BUTTON2_MASK;
                     }
                     else if(type == DWEventTypeOtherMouseDown || type == DWEventTypeOtherMouseUp)
                     {
-                        button = 3;
+                        button = DW_BUTTON3_MASK;
                     }
                     else if([event modifierFlags] & DWEventModifierFlagControl)
                     {
-                        button = 2;
+                        button = DW_BUTTON2_MASK;
                     }
                 }