From http://www.jwz.org/xscreensaver/xscreensaver-5.16.tar.gz
[xscreensaver] / OSX / SaverRunner.h
1 /* xscreensaver, Copyright (c) 2006-2012 Jamie Zawinski <jwz@jwz.org>
2  *
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 
9  * implied warranty.
10  */
11
12 #ifdef USE_IPHONE
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
29 #else
30 # import <Cocoa/Cocoa.h>
31 # import <ScreenSaver/ScreenSaver.h>
32 #endif
33
34 @class ScreenSaverView;
35
36 #ifdef USE_IPHONE
37 # import "SaverListController.h"
38 #endif
39
40 @interface SaverRunner : NSObject
41 {
42   NSString *saverName;          // the one currently loaded
43   NSArray  *saverNames;         // Names of available savers
44   NSString *saverDir;           // Where we find saver bundles
45
46 # ifndef USE_IPHONE
47
48   NSBundle *saverBundle;
49   NSArray  *windows;
50   IBOutlet NSMenu *menubar;
51
52 # else  // USE_IPHONE
53
54   ScreenSaverView *saverView;
55   UINavigationController *rootViewController;
56   IBOutlet UIWindow *window;
57   EAGLContext *eagl_ctx;
58   GLuint gl_framebuffer, gl_renderbuffer;
59   IBOutlet UIView *view;
60   SaverListController *listController;
61   UIImage *saved_screenshot;
62
63 # endif // USE_IPHONE
64 }
65
66 - (void) aboutPanel: (id)sender;
67 - (void) openPreferences: (id)sender;
68 - (void)loadSaver:(NSString *)name launch:(BOOL)launch;
69 - (void) loadSaver: (NSString *)name;
70 - (void)selectedSaverDidChange:(NSDictionary *)change;
71
72 #ifdef USE_IPHONE
73 - (void) loadSaverMenu: (id)sender;
74 - (UIImage *) screenshot;
75 #endif
76
77 @end