istereo

annotate src/ui.h @ 39:ff055bff6a15

copyright statements and stuff
author John Tsiombikas <nuclear@mutantstargoat.com>
date Sun, 11 Sep 2011 09:03:18 +0300
parents 23e5d274b2a2
children
rev   line source
nuclear@39 1 /*
nuclear@39 2 Stereoscopic tunnel for iOS.
nuclear@39 3 Copyright (C) 2011 John Tsiombikas <nuclear@member.fsf.org>
nuclear@39 4
nuclear@39 5 This program is free software: you can redistribute it and/or modify
nuclear@39 6 it under the terms of the GNU General Public License as published by
nuclear@39 7 the Free Software Foundation, either version 3 of the License, or
nuclear@39 8 (at your option) any later version.
nuclear@39 9
nuclear@39 10 This program is distributed in the hope that it will be useful,
nuclear@39 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
nuclear@39 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
nuclear@39 13 GNU General Public License for more details.
nuclear@39 14
nuclear@39 15 You should have received a copy of the GNU General Public License
nuclear@39 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
nuclear@39 17 */
nuclear@39 18
nuclear@39 19
nuclear@35 20 /* UI and shit */
nuclear@35 21
nuclear@35 22 #import <UIKit/UIKit.h>
nuclear@35 23
nuclear@35 24 @interface UI : UIViewController {
nuclear@35 25 IBOutlet UISwitch *sw_stereo;
nuclear@35 26 IBOutlet UISlider *slider_split;
nuclear@35 27 IBOutlet UISegmentedControl *grp_mode;
nuclear@35 28 IBOutlet UIButton *bn_done;
nuclear@35 29 }
nuclear@35 30
nuclear@35 31 @property (nonatomic, retain) IBOutlet UISwitch *sw_stereo;
nuclear@35 32 @property (nonatomic, retain) IBOutlet UISlider *slider_split;
nuclear@35 33 @property (nonatomic, retain) IBOutlet UISegmentedControl *grp_mode;
nuclear@35 34 @property (nonatomic, retain) IBOutlet UIButton *bn_done;
nuclear@35 35
nuclear@35 36 -(IBAction) done_clicked: (id) sender;
nuclear@35 37 -(IBAction) split_changed: (id) sender;
nuclear@35 38 -(IBAction) stereo_changed: (id) sender;
nuclear@35 39 -(IBAction) mode_changed: (id) sender;
nuclear@35 40
nuclear@35 41 @end