comparison 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
comparison
equal deleted inserted replaced
28:e2c62db1e265 29:fabb3a5cdfc9
6 // 6 //
7 // 7 //
8 8
9 #import <UIKit/UIKit.h> 9 #import <UIKit/UIKit.h>
10 #import "HelpViewController.h" 10 #import "HelpViewController.h"
11 11 #define IS_SUPERVISED 1 // to set new user button
12 @interface TopButtonViewController : UIViewController 12 @interface TopButtonViewController : UIViewController
13 13
14 @property (nonatomic, assign) id theOFAppRef; 14 @property (nonatomic, assign) id theOFAppRef;
15 15
16 @property (retain, nonatomic) IBOutlet UIBarButtonItem *playButton; 16 @property (retain, nonatomic) IBOutlet UIBarButtonItem *playButton;
17 @property (retain, nonatomic) IBOutlet UIBarButtonItem *pauseButton; 17 @property (retain, nonatomic) IBOutlet UIBarButtonItem *pauseButton;
18 @property (retain, nonatomic) IBOutlet UIBarButtonItem *qButton; 18 @property (retain, strong, nonatomic) IBOutlet UIBarButtonItem *qButton;
19 @property (retain, strong,nonatomic) IBOutlet UIBarButtonItem *newUserButton;
19 20
20 -(IBAction)show:(id)sender; 21 -(IBAction)show:(id)sender;
21 -(void)setAppRef:(id)theOFApp; 22 -(void)setAppRef:(id)theOFApp;
22 -(void)enableQuestionButton; 23 -(void)enableQuestionButton;
23 - (IBAction)playPressed:(id)sender; 24 - (IBAction)playPressed:(id)sender;