Mercurial > hg > soniczoomios
annotate TopButtonViewController.h @ 29:fabb3a5cdfc9
Timed session improvements. Desperate pathetic attempts to send a simple HTTP POST.
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Fri, 22 Feb 2013 17:41:38 +0000 |
parents | ae4d2c3ce5e0 |
children | a42903c61558 |
rev | line source |
---|---|
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@24 | 14 @property (nonatomic, assign) id theOFAppRef; |
rt300@24 | 15 |
rt300@24 | 16 @property (retain, nonatomic) IBOutlet UIBarButtonItem *playButton; |
rt300@24 | 17 @property (retain, nonatomic) IBOutlet UIBarButtonItem *pauseButton; |
rt300@29 | 18 @property (retain, strong, nonatomic) IBOutlet UIBarButtonItem *qButton; |
rt300@29 | 19 @property (retain, strong,nonatomic) IBOutlet UIBarButtonItem *newUserButton; |
rt300@24 | 20 |
rt300@24 | 21 -(IBAction)show:(id)sender; |
rt300@24 | 22 -(void)setAppRef:(id)theOFApp; |
rt300@25 | 23 -(void)enableQuestionButton; |
rt300@24 | 24 - (IBAction)playPressed:(id)sender; |
rt300@24 | 25 - (IBAction)pausePressed:(id)sender; |
rt300@24 | 26 - (IBAction)savePressed:(id)sender; |
rt300@24 | 27 - (IBAction)lockSequencePressed:(id)sender; |
rt300@24 | 28 - (IBAction)lockSynthPressed:(id)sender; |
rt300@24 | 29 - (IBAction)qPressed:(id)sender; |
rt300@25 | 30 - (IBAction)randomise:(id)sender; |
rt300@26 | 31 - (IBAction)helpPressed:(id)sender; |
rt300@27 | 32 - (IBAction)newUser:(id)sender; |
rt300@24 | 33 |
rt300@24 | 34 @end |