summaryrefslogtreecommitdiff
path: root/data/mobileterminal/gsevent.diff
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2009-08-14 12:11:41 +0000
committerJay Freeman <saurik@saurik.com>2009-08-14 12:11:41 +0000
commit1ec7964f62c88a9fea608e439c75ce6d9586ccae (patch)
tree0095dff6d0908e090011c24ecfa273951dd41de5 /data/mobileterminal/gsevent.diff
parentdff810090329435588cc73ec812e0f608fc3933a (diff)
I apparently never checked in MobileTerminal 364.
git-svn-id: http://svn.telesphoreo.org/trunk@661 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/mobileterminal/gsevent.diff')
-rw-r--r--data/mobileterminal/gsevent.diff123
1 files changed, 0 insertions, 123 deletions
diff --git a/data/mobileterminal/gsevent.diff b/data/mobileterminal/gsevent.diff
deleted file mode 100644
index 6830d13f7..000000000
--- a/data/mobileterminal/gsevent.diff
+++ /dev/null
@@ -1,123 +0,0 @@
-diff -ru mobileterminal-316s/Sources/MobileTerminal.h mobileterminal-316s+iPhone/Sources/MobileTerminal.h
---- mobileterminal-316s/Sources/MobileTerminal.h 2008-08-23 04:37:49.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/MobileTerminal.h 2008-11-22 09:42:13.000000000 +0000
-@@ -65,8 +65,8 @@
- + (Menu *)menu;
-
- - (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
--- (void)applicationSuspend:(GSEvent *)event;
--- (void)applicationResume:(GSEvent *)event;
-+- (void)applicationSuspend:(GSEventRef)event;
-+- (void)applicationResume:(GSEventRef)event;
-
- - (void)handleStreamOutput:(const char *)c length:(unsigned int)len identifier:(int)tid;
- - (void)handleKeyPress:(unichar)c;
-diff -ru mobileterminal-316s/Sources/MobileTerminal.m mobileterminal-316s+iPhone/Sources/MobileTerminal.m
---- mobileterminal-316s/Sources/MobileTerminal.m 2008-08-26 11:46:29.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/MobileTerminal.m 2008-11-22 09:42:13.000000000 +0000
-@@ -134,7 +134,7 @@
- // Suspend/Resume: We have to hide then show again the keyboard view to get it
- // to properly acheive focus on suspend and resume.
-
--- (void)applicationResume:(GSEvent *)event
-+- (void)applicationResume:(GSEventRef)event
- {
- [mainView addSubview:keyboardView];
-
-@@ -153,7 +153,7 @@
- [self updateStatusBar];
- }
-
--- (void)applicationSuspend:(GSEvent *)event
-+- (void)applicationSuspend:(GSEventRef)event
- {
- BOOL shouldQuit;
- int i;
-@@ -181,7 +181,7 @@
- [self removeStatusBarImageNamed:[NSString stringWithFormat:@"MobileTerminal%d", i]];
- }
-
--- (void)applicationExited:(GSEvent *)event
-+- (void)applicationExited:(GSEventRef)event
- {
- int i;
-
-@@ -330,7 +330,7 @@
- [[self textView] refreshCursorRow];
- }
-
--- (void)statusBarMouseUp:(GSEvent *)event
-+- (void)statusBarMouseUp:(GSEventRef)event
- {
- if (numTerminals > 1) {
- CGPoint pos = GSEventGetLocationInWindow(event).origin;
-@@ -349,7 +349,7 @@
- }
- }
-
--- (void)deviceOrientationChanged:(GSEvent *)event
-+- (void)deviceOrientationChanged:(GSEventRef)event
- {
- switch ([UIHardware deviceOrientation:YES]) {
- case 1: [self setOrientation: 0]; break;
-diff -ru mobileterminal-316s/Sources/UI/GestureView.m mobileterminal-316s+iPhone/Sources/UI/GestureView.m
---- mobileterminal-316s/Sources/UI/GestureView.m 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/GestureView.m 2008-11-22 09:42:13.000000000 +0000
-@@ -88,7 +88,7 @@
- [self endTrackingAt:[touch locationInView:self] previous:[touch previousLocationInView:self] withEvent:event];
- }
-
--- (void)mouseDown:(GSEvent *)event
-+- (void)mouseDown:(GSEventRef)event
- {
- mouseDownPos = [delegate viewPointForWindowPoint:GSEventGetLocationInWindow(event).origin];
- [delegate showMenu:mouseDownPos];
-@@ -102,7 +102,7 @@
- return ((7-(lround(theta/M_PI_4)+4)%8)+7)%8;
- }
-
--- (void)mouseUp:(GSEvent *)event
-+- (void)mouseUp:(GSEventRef)event
- {
- if (gestureMode) {
- gestureMode = NO;
-@@ -187,7 +187,7 @@
- return YES;
- }
-
--- (CGPoint)gestureCenter:(GSEvent *)event
-+- (CGPoint)gestureCenter:(GSEventRef)event
- {
- float cx = 0, cy = 0;
- int i;
-@@ -200,18 +200,18 @@
- return CGPointMake(cx,cy);
- }
-
--- (void)gestureStarted:(GSEvent *)event
-+- (void)gestureStarted:(GSEventRef)event
- {
- [delegate hideMenu];
- gestureMode = YES;
- gestureStart = [delegate viewPointForWindowPoint:[self gestureCenter:event]];
- }
-
--- (void)gestureChanged:(GSEvent *)event
-+- (void)gestureChanged:(GSEventRef)event
- {
- }
-
--- (void)gestureEnded:(GSEvent *)event
-+- (void)gestureEnded:(GSEventRef)event
- {
- [delegate hideMenu];
- gestureEnd = [delegate viewPointForWindowPoint:[self gestureCenter:event]];
-@@ -259,7 +259,7 @@
- menuTapped = NO;
- }
-
--- (void)view:(UIView *)view handleTapWithCount:(int)count event:(GSEvent *)event fingerCount:(int)fingers
-+- (void)view:(UIView *)view handleTapWithCount:(int)count event:(GSEventRef)event fingerCount:(int)fingers
- {
- if (fingers == 1) {
- if (count == 2) {