nuclear@39: /* nuclear@39: Stereoscopic tunnel for iOS. nuclear@39: Copyright (C) 2011 John Tsiombikas nuclear@39: nuclear@39: This program is free software: you can redistribute it and/or modify nuclear@39: it under the terms of the GNU General Public License as published by nuclear@39: the Free Software Foundation, either version 3 of the License, or nuclear@39: (at your option) any later version. nuclear@39: nuclear@39: This program is distributed in the hope that it will be useful, nuclear@39: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@39: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@39: GNU General Public License for more details. nuclear@39: nuclear@39: You should have received a copy of the GNU General Public License nuclear@39: along with this program. If not, see . nuclear@39: */ nuclear@39: nuclear@39: nuclear@35: /* UI and shit */ nuclear@35: nuclear@35: #import nuclear@35: nuclear@35: @interface UI : UIViewController { nuclear@35: IBOutlet UISwitch *sw_stereo; nuclear@35: IBOutlet UISlider *slider_split; nuclear@35: IBOutlet UISegmentedControl *grp_mode; nuclear@35: IBOutlet UIButton *bn_done; nuclear@35: } nuclear@35: nuclear@35: @property (nonatomic, retain) IBOutlet UISwitch *sw_stereo; nuclear@35: @property (nonatomic, retain) IBOutlet UISlider *slider_split; nuclear@35: @property (nonatomic, retain) IBOutlet UISegmentedControl *grp_mode; nuclear@35: @property (nonatomic, retain) IBOutlet UIButton *bn_done; nuclear@35: nuclear@35: -(IBAction) done_clicked: (id) sender; nuclear@35: -(IBAction) split_changed: (id) sender; nuclear@35: -(IBAction) stereo_changed: (id) sender; nuclear@35: -(IBAction) mode_changed: (id) sender; nuclear@35: nuclear@35: @end