-
Notifications
You must be signed in to change notification settings - Fork 17
/
OSAppWindow.m
301 lines (212 loc) · 9.38 KB
/
OSAppWindow.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#import "OSAppWindow.h"
#import "OSPaneModel.h"
@implementation OSAppWindow
@synthesize application = _application;
@synthesize appView = _appView;
- (id)initWithApplication:(SBApplication*)application{
CGRect windowFrame = CGRectApplyAffineTransform([[UIScreen mainScreen] bounds], CGAffineTransformMakeScale(0.5, 0.5));
if(UIInterfaceOrientationIsLandscape([application statusBarOrientation])){
float width = windowFrame.size.width;
windowFrame.size.width = windowFrame.size.height;
windowFrame.size.height = width;
}
if(![super initWithFrame:windowFrame title:application.displayName])
return nil;
self.backgroundColor = [UIColor blackColor];
windowFrame.size.height += self.windowBar.bounds.size.height;
self.frame = windowFrame;
if(UIInterfaceOrientationIsPortrait([UIApp statusBarOrientation]))
self.center = CGPointMake([[UIScreen mainScreen] bounds].size.width / 2, [[UIScreen mainScreen] bounds].size.height / 2);
else
self.center = CGPointMake([[UIScreen mainScreen] bounds].size.height / 2, [[UIScreen mainScreen] bounds].size.width / 2);
self.application = application;
self.appView = [[self.application mainScreenContextHostManager] hostViewForRequester:@"WindowManager" enableAndOrderFront:true];
CGRect frame = self.appView.frame;
frame.origin.y += self.windowBar.bounds.size.height;
self.appView.frame = frame;
[self addSubview:self.appView];
UILongPressGestureRecognizer *rotateRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(expandButtonHeld:)];
[self.expandButton.view addGestureRecognizer:rotateRecognizer];
[rotateRecognizer release];
UILongPressGestureRecognizer *idiomSwitchRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(idiomSwitchButtonHeld:)];
[self.closeButton.view addGestureRecognizer:idiomSwitchRecognizer];
[idiomSwitchRecognizer release];
return self;
}
- (void)resetHostView{
if(![self.subviews containsObject:self.appView]){
self.appView = [[self.application mainScreenContextHostManager] hostViewForRequester:@"WindowManager" enableAndOrderFront:true];
[self addSubview:self.appView];
}
}
- (void)applicationDidRotate{
[self layoutSubviews];
[UIView animateWithDuration:0.25 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
CGRect originalFrame = self.frame;
CGRect frame = self.frame;
if(frame.size.height < 200){
frame.size.height = 200;
frame.origin = originalFrame.origin;
}
if(UIDeviceOrientationIsPortrait([self.application statusBarOrientation])){
frame.size.width = ([UIScreen mainScreen].bounds.size.width * (frame.size.height - self.windowBar.bounds.size.height)) / [UIScreen mainScreen].bounds.size.height;
}else{
frame.size.width = ([UIScreen mainScreen].bounds.size.height * (frame.size.height - self.windowBar.bounds.size.height)) / [UIScreen mainScreen].bounds.size.width;
}
self.frame = frame;
}completion:^(BOOL finished){}];
}
- (void)idiomSwitchButtonHeld:(UILongPressGestureRecognizer*)gesture{
if([gesture state] == UIGestureRecognizerStateBegan){
if(![self.application forceClassic]){
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Relaunch in iPhone Mode?" message:@"Would you like to relaunch this app in iPhone mode? Some apps may not work as expected." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alert show];
[alert release];
}else{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Relaunch in Normal Mode?" message:@"Would you like to relaunch this app in normal mode?" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alert show];
[alert release];
}
}
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) {
if(![[self application] forceClassic]){
[[self application] setForceClassic:true];
[[self application] relaunch];
}else{
[[self application] setForceClassic:false];
[[self application] relaunch];
}
}
}
- (void)expandButtonHeld:(UILongPressGestureRecognizer*)gesture{
if([gesture state] == UIGestureRecognizerStateBegan){
if(UIInterfaceOrientationIsPortrait([[self application] statusBarOrientation])){
[[self application] rotateToInterfaceOrientation:UIInterfaceOrientationLandscapeLeft];
}else{
[[self application] rotateToInterfaceOrientation:UIInterfaceOrientationPortrait];
}
}
}
- (void)handleResizePanGesture:(UIPanGestureRecognizer*)gesture{
if([gesture state] == UIGestureRecognizerStateBegan){
[[self delegate] window:self didRecieveResizePanGesture:gesture];
}else if([gesture state] == UIGestureRecognizerStateChanged){
CGRect originalFrame = self.frame;
[[self delegate] window:self didRecieveResizePanGesture:gesture];
CGRect frame = self.frame;
if(frame.size.height < 200){
frame.size.height = 200;
frame.origin = originalFrame.origin;
}
if (UIDeviceOrientationIsPortrait([self.application statusBarOrientation])){
frame.size.width = ([UIScreen mainScreen].bounds.size.width * (frame.size.height - self.windowBar.bounds.size.height)) / [UIScreen mainScreen].bounds.size.height;
}else{
frame.size.width = ([UIScreen mainScreen].bounds.size.height * (frame.size.height - self.windowBar.bounds.size.height)) / [UIScreen mainScreen].bounds.size.width;
}
self.frame = frame;
}
}
- (void)expandButtonPressed{
[[self application] rotateToInterfaceOrientation:[UIApp statusBarOrientation]];
CGAffineTransform appViewTransform = self.appView.transform;
OSAppPane *appPane = [[OSAppPane alloc] initWithDisplayIdentifier:[self.application bundleIdentifier]];
[self addSubview:self.appView];
self.appView.transform = appViewTransform;
CGPoint animationViewOrigin = [self convertPoint:self.appView.frame.origin toView:[[OSViewController sharedInstance] view]];
[[[OSViewController sharedInstance] view] addSubview:self.appView];
CGRect frame = self.appView.frame;
frame.origin = animationViewOrigin;
self.appView.frame = frame;
[[OSPaneModel sharedInstance] addPaneToBack:appPane];
self.windowBar.clipsToBounds = true;
frame = self.windowBar.frame;
frame.origin = [self convertPoint:self.windowBar.frame.origin toView:[[OSViewController sharedInstance] view]];
self.windowBar.frame = frame;
[self.windowBar layoutSubviews];
[[[OSViewController sharedInstance] view] addSubview:self.windowBar];
self.hidden = true;
[UIView animateWithDuration:1.00 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut animations:^{
int appViewDegrees;
switch([UIApp statusBarOrientation]){
case UIInterfaceOrientationPortrait:
appViewDegrees = 0;
break;
case UIInterfaceOrientationPortraitUpsideDown:
appViewDegrees = 180;
break;
case UIInterfaceOrientationLandscapeLeft:
appViewDegrees = 90;
break;
case UIInterfaceOrientationLandscapeRight:
appViewDegrees = 270;
break;
}
self.appView.transform = CGAffineTransformMakeRotation(DegreesToRadians(appViewDegrees));
CGRect frame = self.appView.frame;
frame.origin = CGPointMake(0, 0);
self.appView.frame = frame;
frame = self.windowBar.frame;
frame.size.width = self.appView.frame.size.width;
frame.origin.x = 0;
frame.origin.y = -self.windowBar.frame.size.height;
self.windowBar.frame = frame;
[self.windowBar layoutSubviews];
//Scroll OSSlider
CGRect bounds = [[OSSlider sharedInstance] bounds];
bounds.origin.x = [[OSPaneModel sharedInstance] indexOfPane:appPane] * [[OSSlider sharedInstance] bounds].size.width;
[[OSSlider sharedInstance] setBounds:bounds];
[[OSSlider sharedInstance] updateDockPosition];
[[OSThumbnailView sharedInstance] updateSelectedThumbnail];
}completion:^(BOOL finished){
[appPane addSubview:self.appView];
[appPane sendSubviewToBack:self.appView];
[appPane release];
[self.windowBar removeFromSuperview];
[[(OSDesktopPane*)[self superview] windows] removeObject:self];
[self removeFromSuperview];
}];
}
- (void)layoutSubviews{
[super layoutSubviews];
if(![self.subviews containsObject:self.appView])
return;
int appViewDegrees;
switch([self.application statusBarOrientation]){
case UIInterfaceOrientationPortrait:
appViewDegrees = 0;
break;
case UIInterfaceOrientationPortraitUpsideDown:
appViewDegrees = 180;
break;
case UIInterfaceOrientationLandscapeLeft:
appViewDegrees = 90;
break;
case UIInterfaceOrientationLandscapeRight:
appViewDegrees = 270;
break;
}
self.appView.transform = CGAffineTransformRotate(CGAffineTransformIdentity, DegreesToRadians(appViewDegrees));
if(UIDeviceOrientationIsLandscape([self.application statusBarOrientation])){
self.appView.transform = CGAffineTransformScale(self.appView.transform, (self.bounds.size.height - self.windowBar.bounds.size.height) / self.appView.bounds.size.width, self.bounds.size.width / self.appView.bounds.size.height);
}else{
self.appView.transform = CGAffineTransformScale(self.appView.transform, self.bounds.size.width / self.appView.bounds.size.width, (self.bounds.size.height - self.windowBar.bounds.size.height) / self.appView.bounds.size.height);
}
CGRect frame = self.appView.frame;
frame.origin = CGPointZero;
frame.origin.y += self.windowBar.bounds.size.height;
self.appView.frame = frame;
}
- (void)stopButtonPressed{
[self.application suspend];
}
- (BOOL)showsExpandButton{
return true;
}
- (void)dealloc{
self.application = nil;
self.appView = nil;
[super dealloc];
}
@end