2016-03-26 16:16:01 +00:00
|
|
|
/*
|
|
|
|
ActiveGS, Copyright 2004-2016 Olivier Goguel, https://github.com/ogoguel/ActiveGS
|
|
|
|
Based on Kegs, Copyright 2004 Kent Dickey, https://kegs.sourceforge.net
|
|
|
|
This code is covered by the GNU GPL licence
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface infoViewController : UIVIEWCONTROLLERROOT {
|
|
|
|
|
|
|
|
// Properties
|
|
|
|
UIView* _portraitView;
|
|
|
|
UILabel* _versionUI;
|
|
|
|
}
|
|
|
|
|
2016-03-31 21:21:48 +00:00
|
|
|
@property (nonatomic, strong) IBOutlet UILabel* versionUI;
|
|
|
|
@property (nonatomic, strong) IBOutlet UIView* portraitView;
|
2016-04-03 19:33:35 +00:00
|
|
|
@property (nonatomic, strong) IBOutlet UIScrollView *instructionsView;
|
2016-03-26 16:16:01 +00:00
|
|
|
|
|
|
|
- (IBAction) doneButton:(id)_sender;
|
|
|
|
- (IBAction) parametersButton:(id)_sender;
|
|
|
|
- (IBAction) emailButton:(id)_sender;
|
|
|
|
@end
|