annotate TopButtonViewController.h @ 25:f42a00e3f22d

Logs condensed slightly. Questionnaire button enable. double precision location!!!
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Fri, 01 Feb 2013 17:39:19 +0000
parents a4908ad8c78e
children 2e1fdac115af
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@24 10
rt300@24 11 @interface TopButtonViewController : UIViewController
rt300@24 12
rt300@24 13 @property (nonatomic, assign) id theOFAppRef;
rt300@24 14
rt300@24 15 @property (retain, nonatomic) IBOutlet UIBarButtonItem *playButton;
rt300@24 16 @property (retain, nonatomic) IBOutlet UIBarButtonItem *pauseButton;
rt300@25 17 @property (retain, nonatomic) IBOutlet UIBarButtonItem *qButton;
rt300@24 18
rt300@24 19 -(IBAction)show:(id)sender;
rt300@24 20 -(void)setAppRef:(id)theOFApp;
rt300@25 21 -(void)enableQuestionButton;
rt300@24 22 - (IBAction)playPressed:(id)sender;
rt300@24 23 - (IBAction)pausePressed:(id)sender;
rt300@24 24 - (IBAction)savePressed:(id)sender;
rt300@24 25 - (IBAction)lockSequencePressed:(id)sender;
rt300@24 26 - (IBAction)lockSynthPressed:(id)sender;
rt300@24 27 - (IBAction)qPressed:(id)sender;
rt300@25 28 - (IBAction)randomise:(id)sender;
rt300@24 29
rt300@24 30 @end