Mercurial > hg > soniczoomios
comparison SliderController.h @ 49:178642d134a7 tip
xtra files
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Wed, 01 May 2013 17:34:33 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
48:43958fd481aa | 49:178642d134a7 |
---|---|
1 // | |
2 // SliderController.h | |
3 // sonicZoom | |
4 // | |
5 // Created by Robert Tubb on 19/04/2013. | |
6 // | |
7 // | |
8 | |
9 #import <UIKit/UIKit.h> | |
10 | |
11 #import "SliderViewController.h" | |
12 | |
13 @interface SliderController : UIViewController | |
14 @property (retain, nonatomic) IBOutlet UILabel *paramName; | |
15 @property (retain, nonatomic) IBOutlet UISlider *theSlider; | |
16 @property (retain, nonatomic) IBOutlet UILabel *valueText; | |
17 @property (nonatomic) NSInteger pID; | |
18 @property (retain,nonatomic) id delegate; | |
19 | |
20 -(id)initWithNibName:(NSString *)nibNameOrNil | |
21 bundle:(NSBundle *)nibBundleOrNil | |
22 delegate:(id)delegate | |
23 pID:(int)pID; | |
24 | |
25 - (IBAction)sliderChanged:(id)sender; | |
26 | |
27 -(void) changeLabel:(NSString *) name; | |
28 -(void) setParamValue:(NSInteger) val; | |
29 - (void) setID:(NSInteger) paramID; | |
30 - (void) makeRed; | |
31 | |
32 @end |