aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AppKit/GTMKeyValueAnimation.h36
-rw-r--r--AppKit/GTMKeyValueAnimation.m52
-rw-r--r--AppKit/GTMKeyValueAnimationTest.m55
-rw-r--r--GTM.xcodeproj/project.pbxproj12
4 files changed, 155 insertions, 0 deletions
diff --git a/AppKit/GTMKeyValueAnimation.h b/AppKit/GTMKeyValueAnimation.h
new file mode 100644
index 0000000..6860012
--- /dev/null
+++ b/AppKit/GTMKeyValueAnimation.h
@@ -0,0 +1,36 @@
+//
+// GTMKeyValueAnimation.h
+// Copyright 2011 Google Inc.
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy
+// of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+//
+
+#import <AppKit/AppKit.h>
+
+// Simple class for doing key value path animation on a target.
+// The key value path of target will be set to the currentValue
+// (not the currentProgress) of the animation.
+// Defaults to NSAnimationNonblocking as opposed to NSAnimationBlocking
+// because in our experience most use cases don't want blocking animations.
+// KeyPath of target must represent a CGFloat value.
+@interface GTMKeyValueAnimation : NSAnimation {
+ @private
+ id target_;
+ NSString *keyPath_;
+}
+
+- (id)initWithTarget:(id)target keyPath:(NSString*)keyPath;
+- (id)target;
+- (NSString *)keyPath;
+
+@end
diff --git a/AppKit/GTMKeyValueAnimation.m b/AppKit/GTMKeyValueAnimation.m
new file mode 100644
index 0000000..31e6fd4
--- /dev/null
+++ b/AppKit/GTMKeyValueAnimation.m
@@ -0,0 +1,52 @@
+//
+// GTMKeyValueAnimation.m
+// Copyright 2011 Google Inc.
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy
+// of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+//
+
+#import "GTMKeyValueAnimation.h"
+
+
+@implementation GTMKeyValueAnimation
+
+- (id)initWithTarget:(id)target keyPath:(NSString*)keyPath {
+ if ((self = [super init])) {
+ target_ = [target retain];
+ keyPath_ = [keyPath copy];
+ [self setAnimationBlockingMode:NSAnimationNonblocking];
+ }
+ return self;
+}
+
+- (void)dealloc {
+ [target_ release];
+ [keyPath_ release];
+ [super dealloc];
+}
+
+- (void)setCurrentProgress:(NSAnimationProgress)progress {
+ [super setCurrentProgress:progress];
+ [target_ setValue:[NSNumber numberWithDouble:[self currentValue]]
+ forKeyPath:keyPath_];
+}
+
+- (id)target {
+ return target_;
+}
+
+- (NSString *)keyPath {
+ return keyPath_;
+}
+
+@end
diff --git a/AppKit/GTMKeyValueAnimationTest.m b/AppKit/GTMKeyValueAnimationTest.m
new file mode 100644
index 0000000..665a9f9
--- /dev/null
+++ b/AppKit/GTMKeyValueAnimationTest.m
@@ -0,0 +1,55 @@
+//
+// GTMKeyValueAnimationTest.m
+//
+// Copyright 2011 Google Inc.
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy
+// of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+//
+
+#import "GTMSenTestCase.h"
+#import "GTMKeyValueAnimation.h"
+#import "GTMFoundationUnitTestingUtilities.h"
+
+@interface GTMKeyValueAnimationTest : GTMTestCase {
+ @private
+ GTMUnitTestingBooleanRunLoopContext *context_;
+ BOOL shouldStartHit_;
+}
+@end
+
+@implementation GTMKeyValueAnimationTest
+
+- (void)testAnimation {
+ shouldStartHit_ = NO;
+ GTMKeyValueAnimation *anim =
+ [[[GTMKeyValueAnimation alloc] initWithTarget:self
+ keyPath:@"oggle"] autorelease];
+ [anim setDelegate:self];
+ [anim startAnimation];
+ context_ = [GTMUnitTestingBooleanRunLoopContext context];
+ [[NSRunLoop currentRunLoop] gtm_runUpToSixtySecondsWithContext:context_];
+ [anim stopAnimation];
+ STAssertTrue([context_ shouldStop], @"Animation value never got set");
+ STAssertTrue(shouldStartHit_, @"animationShouldStart not called");
+}
+
+- (BOOL)animationShouldStart:(NSAnimation*)animation {
+ shouldStartHit_ = YES;
+ return YES;
+}
+
+- (void)setOggle:(CGFloat)oggle {
+ [context_ setShouldStop:YES];
+}
+
+@end
diff --git a/GTM.xcodeproj/project.pbxproj b/GTM.xcodeproj/project.pbxproj
index 9cbed35..14c4a8a 100644
--- a/GTM.xcodeproj/project.pbxproj
+++ b/GTM.xcodeproj/project.pbxproj
@@ -255,6 +255,9 @@
8BEEA90D0DA7446300894774 /* GTMUnitTestingImage.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 8BEEA90A0DA7446300894774 /* GTMUnitTestingImage.tiff */; };
8BEEA90E0DA7446300894774 /* GTMUnitTestingWindow.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 8BEEA90B0DA7446300894774 /* GTMUnitTestingWindow.tiff */; };
8BEEA90F0DA7446300894774 /* GTMUnitTestingView.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 8BEEA90C0DA7446300894774 /* GTMUnitTestingView.tiff */; };
+ 8BF2368F13CF67CB00F3FD82 /* GTMKeyValueAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF2368D13CF67CB00F3FD82 /* GTMKeyValueAnimation.h */; };
+ 8BF2369013CF67CB00F3FD82 /* GTMKeyValueAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF2368E13CF67CB00F3FD82 /* GTMKeyValueAnimation.m */; };
+ 8BF2369213CF694C00F3FD82 /* GTMKeyValueAnimationTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF2369113CF694C00F3FD82 /* GTMKeyValueAnimationTest.m */; };
8BF2555310F65B56000490C8 /* GTMTypeCasting.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF2555110F65B56000490C8 /* GTMTypeCasting.h */; settings = {ATTRIBUTES = (Public, ); }; };
8BFE13B60FB0F2C0001BE894 /* GTMABAddressBook.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFE13B00FB0F2B9001BE894 /* GTMABAddressBook.h */; settings = {ATTRIBUTES = (Public, ); }; };
8BFE13B70FB0F2C0001BE894 /* GTMABAddressBook.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BFE13B10FB0F2B9001BE894 /* GTMABAddressBook.m */; };
@@ -780,6 +783,9 @@
8BEEA90A0DA7446300894774 /* GTMUnitTestingImage.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = GTMUnitTestingImage.tiff; sourceTree = "<group>"; };
8BEEA90B0DA7446300894774 /* GTMUnitTestingWindow.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = GTMUnitTestingWindow.tiff; sourceTree = "<group>"; };
8BEEA90C0DA7446300894774 /* GTMUnitTestingView.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = GTMUnitTestingView.tiff; sourceTree = "<group>"; };
+ 8BF2368D13CF67CB00F3FD82 /* GTMKeyValueAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMKeyValueAnimation.h; sourceTree = "<group>"; };
+ 8BF2368E13CF67CB00F3FD82 /* GTMKeyValueAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMKeyValueAnimation.m; sourceTree = "<group>"; };
+ 8BF2369113CF694C00F3FD82 /* GTMKeyValueAnimationTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMKeyValueAnimationTest.m; sourceTree = "<group>"; };
8BF2555110F65B56000490C8 /* GTMTypeCasting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMTypeCasting.h; sourceTree = "<group>"; };
8BFE13B00FB0F2B9001BE894 /* GTMABAddressBook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMABAddressBook.h; sourceTree = "<group>"; };
8BFE13B10FB0F2B9001BE894 /* GTMABAddressBook.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMABAddressBook.m; sourceTree = "<group>"; };
@@ -1348,6 +1354,9 @@
F4C62485109753960069CADD /* GTMIBArrayTest.h */,
F4C62486109753960069CADD /* GTMIBArrayTest.m */,
F4C62487109753960069CADD /* GTMIBArrayTest.xib */,
+ 8BF2368D13CF67CB00F3FD82 /* GTMKeyValueAnimation.h */,
+ 8BF2368E13CF67CB00F3FD82 /* GTMKeyValueAnimation.m */,
+ 8BF2369113CF694C00F3FD82 /* GTMKeyValueAnimationTest.m */,
8B1801A10E2533D500280961 /* GTMLargeTypeWindow.h */,
8B1801A00E2533D500280961 /* GTMLargeTypeWindow.m */,
8B1801A40E2533DB00280961 /* GTMLargeTypeWindowTest.m */,
@@ -1717,6 +1726,7 @@
8B29080A11F8E1670064F50F /* GTMNSFileHandle+UniqueName.h in Headers */,
8B414E891226FB1000D0064F /* GTMServiceManagement.h in Headers */,
F42866B81267340A0090FE0F /* GTMURITemplate.h in Headers */,
+ 8BF2368F13CF67CB00F3FD82 /* GTMKeyValueAnimation.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2390,6 +2400,7 @@
8B29080911F8E1630064F50F /* GTMNSFileHandle+UniqueName.m in Sources */,
8B414E881226FB1000D0064F /* GTMServiceManagement.c in Sources */,
F42866B91267340A0090FE0F /* GTMURITemplate.m in Sources */,
+ 8BF2369013CF67CB00F3FD82 /* GTMKeyValueAnimation.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -2424,6 +2435,7 @@
8B17FD16117638D500E7A908 /* GTMFoundationUnitTestingUtilities.m in Sources */,
8B17FD1A117638F400E7A908 /* GTMAppKitUnitTestingUtilities.m in Sources */,
8BB77A0511B5A09900AB31AF /* GTMGoogleSearchTest.m in Sources */,
+ 8BF2369213CF694C00F3FD82 /* GTMKeyValueAnimationTest.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};