forked from btrask/Sequential
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PGFullscreenController.m
240 lines (204 loc) · 9.18 KB
/
PGFullscreenController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/* Copyright © 2007-2009, The Sequential Project
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the the Sequential Project nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE SEQUENTIAL PROJECT ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE SEQUENTIAL PROJECT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
#import "PGFullscreenController.h"
#import <Carbon/Carbon.h>
// Views
#import "PGFullscreenWindow.h"
// Controllers
#import "PGDocumentController.h"
#import "PGPreferenceWindowController.h"
// Other Sources
#import "PGAppKitAdditions.h"
#import "PGDelayedPerforming.h"
#import "PGFoundationAdditions.h"
@interface PGFullscreenController(Private)
- (void)_setMenuBarHidden:(BOOL)hidden delayed:(BOOL)delayed; // Delaying prevents the menu bar from messing up when the application unhides on Leopard.
- (void)_hideMenuBar;
- (void)_showMenuBar;
@end
@implementation PGFullscreenController
#pragma mark +PGFullscreenController
+ (id)sharedFullscreenController
{
static PGFullscreenController *sharedFullscreenController = nil;
if(!sharedFullscreenController) sharedFullscreenController = [[self alloc] init];
return sharedFullscreenController;
}
#pragma mark -PGFullscreenController
- (void)prepareToExitFullscreen
{
_isExitingFullscreen = YES;
[self _setMenuBarHidden:NO delayed:NO]; // For some reason, this moves windows downward slightly (at least on 10.5.3), so make sure it happens before our new windows get put onscreen.
}
#pragma mark -
- (void)displayScreenDidChange:(NSNotification *)aNotif
{
NSScreen *const screen = [[PGPreferenceWindowController sharedPrefController] displayScreen];
[(PGFullscreenWindow *)[self window] moveToScreen:screen];
if(![[self window] isKeyWindow]) return;
[self _setMenuBarHidden:[NSScreen PG_mainScreen] == screen delayed:YES];
}
#pragma mark -PGFullscreenController(Private)
- (void)_setMenuBarHidden:(BOOL)hidden delayed:(BOOL)delayed
{
[self PG_cancelPreviousPerformRequestsWithSelector:@selector(_hideMenuBar) object:nil];
[self PG_cancelPreviousPerformRequestsWithSelector:@selector(_showMenuBar) object:nil];
if(delayed) [self PG_performSelector:hidden ? @selector(_hideMenuBar) : @selector(_showMenuBar) withObject:nil fireDate:nil interval:0.0f options:kNilOptions];
else if(hidden) [self _hideMenuBar];
else [self _showMenuBar];
}
- (void)_hideMenuBar
{
SetSystemUIMode(kUIModeAllSuppressed, kNilOptions);
}
- (void)_showMenuBar
{
SetSystemUIMode(kUIModeNormal, kNilOptions);
}
#pragma mark -PGDisplayController
- (BOOL)setActiveDocument:(PGDocument *)document closeIfAppropriate:(BOOL)flag
{
if(document || _isExitingFullscreen) return [super setActiveDocument:document closeIfAppropriate:NO];
if(![self activeDocument]) return NO;
NSMutableArray *const docs = [[[[PGDocumentController sharedDocumentController] documents] mutableCopy] autorelease];
PGDocument *const nextDoc = [[PGDocumentController sharedDocumentController] next:YES documentBeyond:[self activeDocument]];
[docs removeObjectIdenticalTo:[self activeDocument]];
[super setActiveDocument:nextDoc closeIfAppropriate:NO]; // PGDocumentController knows when to close us, so don't close ourselves.
return NO;
}
- (NSWindow *)windowForSheet
{
return nil;
}
#pragma mark -PGDisplayController(PGThumbnailControllerCallbacks)
- (void)thumbnailPanelDidBecomeKey:(NSNotification *)aNotif
{
[self windowDidBecomeKey:aNotif];
}
- (void)thumbnailPanelDidResignKey:(NSNotification *)aNotif
{
[self windowDidResignKey:aNotif];
}
#pragma mark -NSWindowController
- (BOOL)shouldCascadeWindows
{
return NO;
}
- (void)windowDidLoad
{
NSWindow *const window = [[[PGFullscreenWindow alloc] initWithScreen:[[PGPreferenceWindowController sharedPrefController] displayScreen]] autorelease];
NSView *const content = [[[[self window] contentView] retain] autorelease];
[[self window] setContentView:nil];
[window setContentView:content];
[window setDelegate:[[self window] delegate]];
[window setHidesOnDeactivate:[[self window] hidesOnDeactivate]];
[window registerForDraggedTypes:[NSArray arrayWithObjects:NSFilenamesPboardType, NSURLPboardType, nil]];
[self setWindow:window];
[super windowDidLoad];
}
- (void)close
{
if(!_isExitingFullscreen) for(PGDocument *const doc in [[PGDocumentController sharedDocumentController] documents]) [doc close];
}
#pragma mark -NSObject
- (id)init
{
if((self = [super init])) {
[[PGPreferenceWindowController sharedPrefController] PG_addObserver:self selector:@selector(displayScreenDidChange:) name:PGPreferenceWindowControllerDisplayScreenDidChangeNotification];
}
return self;
}
- (void)dealloc
{
[self PG_cancelPreviousPerformRequests];
[self PG_removeObserver];
[_shieldWindows makeObjectsPerformSelector:@selector(close)];
[_shieldWindows release];
[super dealloc];
}
#pragma mark -<NSWindowDelegate>
- (void)windowDidBecomeMain:(NSNotification *)aNotif
{
[super windowDidBecomeMain:aNotif];
[NSCursor setHiddenUntilMouseMoves:YES];
}
- (void)windowDidResignMain:(NSNotification *)aNotif
{
if(!_isExitingFullscreen) [super windowDidResignMain:aNotif];
}
- (void)windowDidBecomeKey:(NSNotification *)aNotif
{
BOOL const dim = [[NSUserDefaults standardUserDefaults] boolForKey:PGDimOtherScreensKey]; // We shouldn't need to observe this value because our fullscreen window isn't going to be key while the user is adjusting the setting in the prefs window.
NSScreen *const displayScreen = [[PGPreferenceWindowController sharedPrefController] displayScreen];
if(dim || [NSScreen PG_mainScreen] == displayScreen) [self _setMenuBarHidden:YES delayed:YES];
if(!dim) return;
[_shieldWindows makeObjectsPerformSelector:@selector(close)];
[_shieldWindows release];
_shieldWindows = [[NSMutableArray alloc] init];
for(NSScreen *const screen in [NSScreen screens]) {
if(displayScreen == screen) continue;
NSWindow *const w = [[[NSWindow alloc] initWithContentRect:[screen frame] styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES] autorelease]; // Use borderless windows instead of CGSetDisplayTransferByFormula() so that 1. the menu bar remains visible (if it's on a different screen), and 2. the user can't click on things that can't be seen.
[w setReleasedWhenClosed:NO];
[w setBackgroundColor:[NSColor blackColor]];
[w setHasShadow:NO];
[w setLevel:NSFloatingWindowLevel - 1];
[w orderFront:self];
[_shieldWindows addObject:w];
}
}
- (void)windowDidResignKey:(NSNotification *)aNotif
{
if([[PGPreferenceWindowController sharedPrefController] displayScreen] != [NSScreen PG_mainScreen]) return;
[self _setMenuBarHidden:NO delayed:YES];
[_shieldWindows makeObjectsPerformSelector:@selector(close)];
[_shieldWindows release];
_shieldWindows = nil;
}
#pragma mark -<PGDocumentWindowDelegate>
- (NSDragOperation)window:(PGDocumentWindow *)window dragOperationForInfo:(id<NSDraggingInfo>)info
{
if(!([info draggingSourceOperationMask] & NSDragOperationGeneric)) return NSDragOperationNone;
NSPasteboard *const pboard = [info draggingPasteboard];
NSArray *const types = [pboard types];
if([types containsObject:NSFilenamesPboardType]) {
NSArray *const paths = [pboard propertyListForType:NSFilenamesPboardType];
return [paths count] == 1 ? NSDragOperationGeneric : NSDragOperationNone;
} else if([types containsObject:NSURLPboardType]) {
return [NSURL URLFromPasteboard:pboard] ? NSDragOperationGeneric : NSDragOperationNone;
}
return NSDragOperationNone;
}
- (BOOL)window:(PGDocumentWindow *)window performDragOperation:(id<NSDraggingInfo>)info
{
NSPasteboard *const pboard = [info draggingPasteboard];
NSArray *const types = [pboard types];
if([types containsObject:NSFilenamesPboardType]) return !![[PGDocumentController sharedDocumentController] openDocumentWithContentsOfURL:[[[pboard propertyListForType:NSFilenamesPboardType] lastObject] PG_fileURL] display:YES];
else if([types containsObject:NSURLPboardType]) return !![[PGDocumentController sharedDocumentController] openDocumentWithContentsOfURL:[NSURL URLFromPasteboard:pboard] display:YES];
return NO;
}
#pragma mark -<PGFullscreenWindowDelegate>
- (void)closeWindowContent:(PGFullscreenWindow *)sender
{
[[self activeDocument] close];
}
@end