mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
CPAnimatablePropertyContainer protocol (CPView) CPAnimationContext _CPObjectAnimator CPViewAnimator CSS Animations wrapper CPAnimatablePropertyContainerTest : animations of views with custom Layout / Regular Layout / Custom DrawRect: / No DrawRect: / Subviews / No Subviews and combinations of these situations. controls animation (text field, button, popup, slider ...). They animate their size via their action.
23 lines
468 B
Plaintext
23 lines
468 B
Plaintext
@import <Foundation/CPObject.j>
|
|
|
|
@import "CAPropertyAnimation.j"
|
|
|
|
@implementation CAKeyframeAnimation : CAPropertyAnimation
|
|
{
|
|
CPArray _values @accessors(property=values);
|
|
CPArray _keyTimes @accessors(property=keyTimes);
|
|
CPArray _timingFunctions @accessors(property=timingFunctions);
|
|
}
|
|
|
|
- (id)init
|
|
{
|
|
self = [super init];
|
|
|
|
_values = [CPArray array];
|
|
_keyTimes = [CPArray array];
|
|
_timingFunctions = [CPArray array];
|
|
|
|
return self;
|
|
}
|
|
|
|
@end |