ftp://ftp.krokus.ru/pub/OpenBSD/distfiles/xscreensaver-4.22.tar.gz
[xscreensaver] / hacks / glx / antinspect.c
index 777ddbecfca55dfccfb14007e5f0e58aca22b568..99784b2fb689356679c7954fd3cd52a9b8f7a3a6 100644 (file)
@@ -26,8 +26,7 @@
 #define EVENT_MASK         PointerMotionMask
 #define antinspect_opts            xlockmore_opts
 #define DEFAULTS           "*delay:   20000   \n" \
-                           "*showFPS: False   \n" \
-                           "*wireframe: False \n"
+                           "*showFPS: False   \n"
 
 #include "xlockmore.h"
 #else
@@ -555,7 +554,7 @@ void release_antinspect(ModeInfo * mi) {
 Bool antinspect_handle_event (ModeInfo *mi, XEvent *event) {
   antinspectstruct *mp = &antinspect[MI_SCREEN(mi)];
   
-  if(event->xany.type == ButtonPress && event->xbutton.button & Button1) {
+  if(event->xany.type == ButtonPress && event->xbutton.button == Button1) {
        mp->button_down_p = True;
        gltrackball_start(mp->trackball,
                                          event->xbutton.x, event->xbutton.y,
@@ -563,10 +562,18 @@ Bool antinspect_handle_event (ModeInfo *mi, XEvent *event) {
        return True;
   }
   else if(event->xany.type == ButtonRelease && 
-                 event->xbutton.button & Button1) {
+                 event->xbutton.button == Button1) {
        mp->button_down_p = False;
        return True;
   }
+  else if (event->xany.type == ButtonPress &&
+           (event->xbutton.button == Button4 ||
+            event->xbutton.button == Button5))
+    {
+      gltrackball_mousewheel (mp->trackball, event->xbutton.button, 5,
+                              !event->xbutton.state);
+      return True;
+    }
   else if(event->xany.type == MotionNotify && mp->button_down_p) {
        gltrackball_track (mp->trackball,
                                           event->xmotion.x, event->xmotion.y,