-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAppDelegate.m
166 lines (135 loc) · 5.93 KB
/
AppDelegate.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
/*
* Copyright (C) 2009 by Matthias Ringwald
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. Neither the name of the copyright holders nor the names of
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS
* ``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 MATTHIAS
* RINGWALD OR CONTRIBUTORS 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 "AppDelegate.h"
#import "mouse_msgs.h"
#import "ConfigurationViewController.h"
#import "SynergyClient.h"
#import "BackgroundApplication.h"
#import "AppSupport/CPDistributedMessagingCenter.h"
#define VERSION "0.9-2"
@implementation AppDelegate
@synthesize window;
@synthesize navController;
@synthesize configViewController;
@synthesize synergyClient;
static AppDelegate *_instance;
+ (AppDelegate *)sharedInstance
{
return _instance;
}
- (int)getOrientation
{
return _orientation;
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//setup shared instance
if (_instance == nil)
_instance = self;
// create config view controller
configViewController = [[ConfigurationViewController alloc] initWithStyle:UITableViewStyleGrouped];
[configViewController setTitle:[NSString stringWithFormat:@"iSynergyClient %@", @VERSION]];
// [configViewController setDelegate:self];
navController = [[UINavigationController alloc] initWithRootViewController:configViewController];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[window addSubview:navController.view];
[window setRootViewController:navController];
[window makeKeyAndVisible];
self.synergyClient = [[SynergyClient alloc] init];
[configViewController setSynergyClient:synergyClient];
[synergyClient setDelegate:configViewController];
CGRect screenBound = [[UIScreen mainScreen] bounds];
// NSLog(@"Screen width = %f, height = %f", screenBound.size.width, screenBound.size.height);
[synergyClient setScreenWidth:screenBound.size.width andHeight:screenBound.size.height];
//saiyen
//Detect orientation change
/*
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(detectOrientation) name:@"UIDeviceOrientationDidChangeNotification" object:nil];
*/
//saiyen
//register for distributed messages from orientationnotification.dylib
CPDistributedMessagingCenter *messagingCenter;
// Center name must be globally unique
messagingCenter = [CPDistributedMessagingCenter centerNamed:@"com.northoverby.orientationnotification"];
[messagingCenter runServerOnCurrentThread];
// Register Message Handlers
[messagingCenter registerForMessageName:@"interfaceOrientationChanged" target:self
selector:@selector(handleDylibMessageOrientationChanged:withUserInfo:)];
//initial orientation
_orientation = [UIApplication sharedApplication].statusBarOrientation;
return YES;
}
- (NSDictionary *)handleDylibMessageOrientationChanged:(NSString *)name withUserInfo:(NSDictionary *)userinfo
{
_orientation = [(NSNumber *)[userinfo objectForKey:@"interfaceOrientation"] intValue];
NSLog(@"Received orientationnotification.dylib message orientation changed %u", _orientation);
[self updateForOrientation];
return nil;
}
-(void)updateForOrientation
{
UIScreen *screen = [UIScreen mainScreen];
CGRect fullScreenRect = screen.bounds;
// detect changes where device is oriented landscape or portrait
if (UIInterfaceOrientationIsLandscape(_orientation))
{
CGRect temp;
temp.size.width = fullScreenRect.size.height;
temp.size.height = fullScreenRect.size.width;
fullScreenRect = temp;
}
[self.synergyClient setScreenWidth:fullScreenRect.size.width andHeight:fullScreenRect.size.height];
[self.synergyClient sendResetOptionsMessage];
}
//saiyen
/*
-(void)detectOrientation{
UIScreen *screen = [UIScreen mainScreen];
CGRect fullScreenRect = screen.bounds; //implicitly in Portrait orientation.
// detect changes where device is oriented landscape or portrait
if (UIInterfaceOrientationIsLandscape([[UIDevice currentDevice] orientation]))
{
CGRect temp;
temp.size.width = fullScreenRect.size.height;
temp.size.height = fullScreenRect.size.width;
fullScreenRect = temp;
}
[self.synergyClient setScreenWidth:fullScreenRect.size.width andHeight:fullScreenRect.size.height];
[self.synergyClient sendResetOptionsMessage];
}
*/
//saiyen
- (void)applicationWillTerminate:(UIApplication *)application{
[configViewController updateDefaultsFromView];
[BackgroundApplication setRunInBackground:NO];
[self.synergyClient deactivateMouse];
}
@end