X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=OSX%2FXScreenSaverView.h;h=7365b9d82080e0566111c4ccdfb95f502215aaf8;hb=6f5482d73adb0165c0130bb47d852644ab0c4869;hp=1c384ffa56916046828789e9bdd60a86dda9d092;hpb=ec8d2b32b63649e6d32bdfb306eda062769af823;p=xscreensaver diff --git a/OSX/XScreenSaverView.h b/OSX/XScreenSaverView.h index 1c384ffa..7365b9d8 100644 --- a/OSX/XScreenSaverView.h +++ b/OSX/XScreenSaverView.h @@ -1,4 +1,4 @@ -/* xscreensaver, Copyright (c) 2006-2011 Jamie Zawinski +/* xscreensaver, Copyright (c) 2006-2012 Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -15,12 +15,47 @@ the "screenhack.c" module. */ -#import -#import +#ifdef USE_IPHONE +# import +# import +# define NSView UIView +# define NSRect CGRect +# define NSSize CGSize +# define NSColor UIColor +# define NSImage UIImage +# define NSEvent UIEvent +# define NSWindow UIWindow +#else +# import +# import +#endif + + #import "screenhackI.h" #import "PrefsReader.h" +#ifdef USE_IPHONE +@interface ScreenSaverView : NSView +- (id)initWithFrame:(NSRect)frame isPreview:(BOOL)isPreview; +- (NSTimeInterval)animationTimeInterval; +- (void)setAnimationTimeInterval:(NSTimeInterval)timeInterval; +- (void)startAnimation; +- (void)stopAnimation; +- (BOOL)isAnimating; +- (void)animateOneFrame; +- (BOOL)hasConfigureSheet; +//- (NSWindow*)configureSheet; +- (UIViewController*)configureView; +- (BOOL)isPreview; +@end + +#endif // USE_IPHONE + + @interface XScreenSaverView : ScreenSaverView +# ifdef USE_IPHONE + +# endif { struct xscreensaver_function_table *xsft; PrefsReader *prefsReader; @@ -35,10 +70,41 @@ Window xwindow; void *xdata; fps_state *fpst; + +# ifdef USE_IPHONE + UIDeviceOrientation orientation, new_orientation; + double tap_time; + CGPoint tap_point; + BOOL screenLocked; + + GLfloat rotation_ratio; // ratio thru rotation anim, or -1 + NSSize rot_from, rot_to; // start size rect, end size rect + GLfloat angle_from, angle_to; // start angle, end angle + double rot_start_time; + + NSSize rot_current_size; + GLfloat rot_current_angle; + + CGContextRef backbuffer; + NSSize backbuffer_size; + + NSTimer *crash_timer; + +# endif // USE_IPHONE + } +- (id)initWithFrame:(NSRect)frame saverName:(NSString*)n isPreview:(BOOL)p; + +- (void) render_x11; - (void) prepareContext; - (void) resizeContext; - (NSUserDefaultsController *) userDefaultsController; +#ifdef USE_IPHONE +- (void)didRotate:(NSNotification *)notification; +- (void)setScreenLocked:(BOOL)locked; +- (void)createBackbuffer; +#endif // USE_IPHONE + @end