mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-21 02:21:01 +00:00
Additional stubs for NSAnimationContext.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@39051 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8e8a1af817
commit
20997976b9
3 changed files with 44 additions and 0 deletions
|
@ -46,6 +46,12 @@ static NSAnimationContext *_currentContext = nil;
|
|||
return _currentContext;
|
||||
}
|
||||
|
||||
// run
|
||||
+ (void)runAnimationGroup: (GSAnimationContextChanges)changes
|
||||
completionHandler: (GSAnimationContextCompletionHandler)completionHandler
|
||||
{
|
||||
}
|
||||
|
||||
// Properties...
|
||||
- (void) setDuration: (NSTimeInterval)duration
|
||||
{
|
||||
|
@ -57,5 +63,24 @@ static NSAnimationContext *_currentContext = nil;
|
|||
return _duration;
|
||||
}
|
||||
|
||||
- (GSAnimationContextCompletionHandler) completionHandler
|
||||
{
|
||||
return _completionHandler;
|
||||
}
|
||||
|
||||
- (void) setCompletiionHandler: (GSAnimationContextCompletionHandler) completionHandler
|
||||
{
|
||||
_completionHandler = completionHandler;
|
||||
}
|
||||
|
||||
- (void *) timingFunction
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
- (void) setTimingFunction: (void *)timingFunction
|
||||
{
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue