Mercurial > hg > soniczoomios
annotate SliderViewController.h @ 49:178642d134a7 tip
xtra files
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Wed, 01 May 2013 17:34:33 +0100 |
parents | c2fffc8ea84d |
children |
rev | line source |
---|---|
rt300@36 | 1 // |
rt300@36 | 2 // SliderViewController.h |
rt300@36 | 3 // sonicZoom |
rt300@36 | 4 // |
rt300@36 | 5 // Created by Robert Tubb on 01/02/2013. |
rt300@36 | 6 // |
rt300@36 | 7 // |
rt300@36 | 8 |
rt300@36 | 9 #import <UIKit/UIKit.h> |
rt300@43 | 10 #import "SliderController.h" |
rt300@36 | 11 |
rt300@36 | 12 @interface SliderViewController : UIViewController |
rt300@36 | 13 @property (nonatomic, assign) id theOFAppRef; |
rt300@36 | 14 -(IBAction)hide:(id)sender; |
rt300@36 | 15 -(IBAction)show:(id)sender; |
rt300@37 | 16 - (void)setAppRef:(id)theOFApp; |
rt300@43 | 17 - (void)slider:(int)which changedTo:(float)value; |
rt300@43 | 18 - (void)setSlider:(int)which to:(float)value; |
rt300@43 | 19 @property (retain,nonatomic) NSMutableArray *paramNames; |
rt300@45 | 20 @property (retain,nonatomic) NSMutableArray *paramNamesTimbre; |
rt300@43 | 21 @property (retain,nonatomic) NSMutableArray * sliderArray; |
rt300@37 | 22 |
rt300@36 | 23 @end |