-
Notifications
You must be signed in to change notification settings - Fork 31
/
Tween_o_MaticAppDelegate.h
executable file
·37 lines (29 loc) · 1.2 KB
/
Tween_o_MaticAppDelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// Tween_o_MaticAppDelegate.h
// Tween-o-Matic
//
// Created by Simon Whitaker on 25/03/2010.
//
#import <Cocoa/Cocoa.h>
#import <QuartzCore/QuartzCore.h>
#import "Grid.h"
@interface Tween_o_MaticAppDelegate : NSObject <NSApplicationDelegate, GridDelegate> {
}
-(IBAction)updateTimingFunction:(id)sender;
-(IBAction)updateControlPoints:(id)sender;
-(IBAction)doAnimationDemo:(id)sender;
-(void)updateControlPointFromGridAtIndex:(unsigned int)index;
@property (nonatomic, retain) IBOutlet Grid* grid;
@property (nonatomic, retain) IBOutlet NSWindow *window;
@property (nonatomic, retain) IBOutlet NSImageView *demoImage;
@property (nonatomic, copy) NSArray* curveTypes;
@property (nonatomic, retain) CAMediaTimingFunction* timingFunction;
@property (nonatomic) CGFloat demoAnimationStartX;
@property (nonatomic) CGFloat demoAnimationEndX;
@property (nonatomic, retain) IBOutlet NSPopUpButton* curveTypeDropDown;
@property (nonatomic, retain) IBOutlet NSTextField* cp1X;
@property (nonatomic, retain) IBOutlet NSTextField* cp1Y;
@property (nonatomic, retain) IBOutlet NSTextField* cp2X;
@property (nonatomic, retain) IBOutlet NSTextField* cp2Y;
@property (nonatomic, retain) IBOutlet NSTextField* constructor;
@end