1 /* xscreensaver, Copyright (c) 2006-2013 Jamie Zawinski <jwz@jwz.org>
3 * Permission to use, copy, modify, distribute, and sell this software and its
4 * documentation for any purpose is hereby granted without fee, provided that
5 * the above copyright notice appear in all copies and that both that
6 * copyright notice and this permission notice appear in supporting
7 * documentation. No representations are made about the suitability of this
8 * software for any purpose. It is provided "as is" without express or
13 # import <Foundation/Foundation.h>
14 # import <UIKit/UIKit.h>
15 # import <OpenGLES/EAGL.h>
16 # import <OpenGLES/ES1/gl.h>
17 # import <OpenGLES/ES1/glext.h>
18 # import <QuartzCore/QuartzCore.h>
19 # define NSView UIView
20 # define NSRect CGRect
21 # define NSSize CGSize
22 # define NSColor UIColor
23 # define NSImage UIImage
24 # define NSEvent UIEvent
25 # define NSWindow UIWindow
26 # define NSButton UIButton
27 # define NSApplication UIApplication
28 # define NSScreen UIScreen
30 # import <Cocoa/Cocoa.h>
31 # import <ScreenSaver/ScreenSaver.h>
34 @class ScreenSaverView;
36 @interface SaverRunner : NSObject
38 NSString *saverName; // the one currently loaded
39 NSArray *saverNames; // Names of available savers
40 NSString *saverDir; // Where we find saver bundles
44 NSBundle *saverBundle;
46 IBOutlet NSMenu *menubar;
51 ScreenSaverView *saverView;
52 UIView *backgroundView;
53 UINavigationController *rootViewController;
54 IBOutlet UIWindow *window;
55 EAGLContext *eagl_ctx;
56 GLuint gl_framebuffer, gl_renderbuffer;
57 IBOutlet UIView *view;
58 UIImage *saved_screenshot;
65 - (void) loadSaver: (NSString *)name launch:(BOOL)launch;
66 - (void) loadSaver: (NSString *)name;
67 - (void) selectedSaverDidChange:(NSDictionary *)change;
68 - (void) aboutPanel: (id)sender;
71 - (void) openPreferences: (id)sender;
73 - (void) openPreferences: (NSString *)which;
74 - (UIImage *) screenshot;