Mercurial > hg > soniczoomios
annotate 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 |
rev | line source |
---|---|
rt300@49 | 1 // |
rt300@49 | 2 // SliderController.h |
rt300@49 | 3 // sonicZoom |
rt300@49 | 4 // |
rt300@49 | 5 // Created by Robert Tubb on 19/04/2013. |
rt300@49 | 6 // |
rt300@49 | 7 // |
rt300@49 | 8 |
rt300@49 | 9 #import <UIKit/UIKit.h> |
rt300@49 | 10 |
rt300@49 | 11 #import "SliderViewController.h" |
rt300@49 | 12 |
rt300@49 | 13 @interface SliderController : UIViewController |
rt300@49 | 14 @property (retain, nonatomic) IBOutlet UILabel *paramName; |
rt300@49 | 15 @property (retain, nonatomic) IBOutlet UISlider *theSlider; |
rt300@49 | 16 @property (retain, nonatomic) IBOutlet UILabel *valueText; |
rt300@49 | 17 @property (nonatomic) NSInteger pID; |
rt300@49 | 18 @property (retain,nonatomic) id delegate; |
rt300@49 | 19 |
rt300@49 | 20 -(id)initWithNibName:(NSString *)nibNameOrNil |
rt300@49 | 21 bundle:(NSBundle *)nibBundleOrNil |
rt300@49 | 22 delegate:(id)delegate |
rt300@49 | 23 pID:(int)pID; |
rt300@49 | 24 |
rt300@49 | 25 - (IBAction)sliderChanged:(id)sender; |
rt300@49 | 26 |
rt300@49 | 27 -(void) changeLabel:(NSString *) name; |
rt300@49 | 28 -(void) setParamValue:(NSInteger) val; |
rt300@49 | 29 - (void) setID:(NSInteger) paramID; |
rt300@49 | 30 - (void) makeRed; |
rt300@49 | 31 |
rt300@49 | 32 @end |