istereo

view src/ui.h @ 35:23e5d274b2a2

added options panel, also added the xib files to the repository as they're needed
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 09 Sep 2011 10:03:42 +0300
parents
children ff055bff6a15
line source
1 /* UI and shit */
3 #import <UIKit/UIKit.h>
5 @interface UI : UIViewController {
6 IBOutlet UISwitch *sw_stereo;
7 IBOutlet UISlider *slider_split;
8 IBOutlet UISegmentedControl *grp_mode;
9 IBOutlet UIButton *bn_done;
10 }
12 @property (nonatomic, retain) IBOutlet UISwitch *sw_stereo;
13 @property (nonatomic, retain) IBOutlet UISlider *slider_split;
14 @property (nonatomic, retain) IBOutlet UISegmentedControl *grp_mode;
15 @property (nonatomic, retain) IBOutlet UIButton *bn_done;
17 -(IBAction) done_clicked: (id) sender;
18 -(IBAction) split_changed: (id) sender;
19 -(IBAction) stereo_changed: (id) sender;
20 -(IBAction) mode_changed: (id) sender;
22 @end