From http://www.jwz.org/xscreensaver/xscreensaver-5.30.tar.gz
[xscreensaver] / hacks / galaxy.c
index 8003941336a38d3bf319f77191a20df49a887539..2aeeb6f30f0cc11640d7088d1eb6acb1f83c9af1 100644 (file)
@@ -48,7 +48,6 @@ static const char sccsid[] = "@(#)galaxy.c 4.04 97/07/28 xlockmore";
                                        "*ignoreRotation: True \n" \
 
 # define UNIFORM_COLORS
-# define galaxy_handle_event 0
 # include "xlockmore.h"    /* from the xscreensaver distribution */
 #else  /* !STANDALONE */
 # include "xlock.h"     /* from the xlockmore distribution */
@@ -466,4 +465,16 @@ refresh_galaxy(ModeInfo * mi)
  /* Do nothing, it will refresh by itself */
 }
 
+ENTRYPOINT Bool
+galaxy_handle_event (ModeInfo *mi, XEvent *event)
+{
+  if (screenhack_event_helper (MI_DISPLAY(mi), MI_WINDOW(mi), event))
+    {
+      reshape_galaxy (mi, MI_WIDTH(mi), MI_HEIGHT(mi));
+      return True;
+    }
+  return False;
+}
+
+
 XSCREENSAVER_MODULE ("Galaxy", galaxy)