rt300@24
|
1 //
|
rt300@24
|
2 // TopButtonViewController.h
|
rt300@24
|
3 // sonicZoom
|
rt300@24
|
4 //
|
rt300@24
|
5 // Created by Robert Tubb on 31/01/2013.
|
rt300@24
|
6 //
|
rt300@24
|
7 //
|
rt300@24
|
8
|
rt300@24
|
9 #import <UIKit/UIKit.h>
|
rt300@26
|
10 #import "HelpViewController.h"
|
rt300@29
|
11 #define IS_SUPERVISED 1 // to set new user button
|
rt300@24
|
12 @interface TopButtonViewController : UIViewController
|
rt300@24
|
13
|
rt300@38
|
14 @property (retain, nonatomic) IBOutlet UILabel *smoothText;
|
rt300@38
|
15 @property (retain, nonatomic) IBOutlet UISwitch *smoothToggle;
|
rt300@38
|
16 @property (retain, nonatomic) IBOutlet UIBarButtonItem *smoothSwitch;
|
rt300@24
|
17 @property (nonatomic, assign) id theOFAppRef;
|
rt300@38
|
18 @property (retain, nonatomic) IBOutlet UIBarButtonItem *savePresetButton;
|
rt300@24
|
19
|
rt300@24
|
20 @property (retain, nonatomic) IBOutlet UIBarButtonItem *playButton;
|
rt300@24
|
21 @property (retain, nonatomic) IBOutlet UIBarButtonItem *pauseButton;
|
rt300@29
|
22 @property (retain, strong, nonatomic) IBOutlet UIBarButtonItem *qButton;
|
rt300@29
|
23 @property (retain, strong,nonatomic) IBOutlet UIBarButtonItem *newUserButton;
|
rt300@36
|
24 - (IBAction)nextSequence:(id)sender;
|
rt300@38
|
25 - (IBAction)smoothSwitchChanged:(id)sender;
|
rt300@24
|
26
|
rt300@24
|
27 -(IBAction)show:(id)sender;
|
rt300@24
|
28 -(void)setAppRef:(id)theOFApp;
|
rt300@25
|
29 -(void)enableQuestionButton;
|
rt300@24
|
30 - (IBAction)playPressed:(id)sender;
|
rt300@24
|
31 - (IBAction)pausePressed:(id)sender;
|
rt300@24
|
32 - (IBAction)savePressed:(id)sender;
|
rt300@24
|
33 - (IBAction)lockSequencePressed:(id)sender;
|
rt300@24
|
34 - (IBAction)lockSynthPressed:(id)sender;
|
rt300@24
|
35 - (IBAction)qPressed:(id)sender;
|
rt300@25
|
36 - (IBAction)randomise:(id)sender;
|
rt300@26
|
37 - (IBAction)helpPressed:(id)sender;
|
rt300@27
|
38 - (IBAction)newUser:(id)sender;
|
rt300@38
|
39 - (void)enableSmoothSwitch:(id)sender;
|
rt300@41
|
40 -(void)unlockAll;
|
rt300@24
|
41 @end
|