darling-cocotron/QuartzCore/CATransition.m

42 lines
649 B
Mathematica
Raw Permalink Normal View History

2010-10-22 01:21:17 +00:00
#import <QuartzCore/CATransition.h>
@implementation CATransition
- (NSString *) type {
return _type;
2010-10-22 01:21:17 +00:00
}
- (void) setType: (NSString *) value {
value = [value copy];
[_type release];
_type = value;
2010-10-22 01:21:17 +00:00
}
- (NSString *) subtype {
return _subtype;
2010-10-22 01:21:17 +00:00
}
- (void) setSubtype: (NSString *) value {
value = [value copy];
[_subtype release];
_subtype = value;
2010-10-22 01:21:17 +00:00
}
- (CGFloat) startProgress {
return _startProgress;
2010-10-22 01:21:17 +00:00
}
- (void) setStartProgress: (CGFloat) value {
_startProgress = value;
2010-10-22 01:21:17 +00:00
}
- (CGFloat) endProgress {
return _endProgress;
2010-10-22 01:21:17 +00:00
}
- (void) setEndProgress: (CGFloat) value {
_endProgress = value;
2010-10-22 01:21:17 +00:00
}
@end