mirror of
https://github.com/ogoguel/activegs-ios.git
synced 2025-01-18 08:31:10 +00:00
153 lines
4.1 KiB
Plaintext
153 lines
4.1 KiB
Plaintext
/*
|
|
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 "activegsAppDelegate.h"
|
|
#import "infoViewController.h"
|
|
#import "activegsList.h"
|
|
#include "../Common/svnversion.h"
|
|
#import "asyncimageview.h"
|
|
#import "activegsViewController.h"
|
|
#include "../xcodebuild.h"
|
|
|
|
@implementation infoViewController
|
|
|
|
@synthesize versionUI=_versionIU;
|
|
@synthesize versionUILandscape=_versionUILandscape;
|
|
@synthesize portraitView= _portraitView;
|
|
@synthesize landscapeView = _landscapeView;
|
|
|
|
- (void)dealloc {
|
|
[super dealloc];
|
|
}
|
|
|
|
|
|
-(void)viewDidLoad
|
|
{
|
|
|
|
|
|
NSString *AppVersion = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
|
|
NSString *buildVersion = [NSString stringWithUTF8String:xcodebuild];
|
|
|
|
|
|
self.versionUILandscape.text=
|
|
self.versionUI.text = [NSString stringWithFormat: @"v%@#%@ -- ActiveGS "TOSTRING(ACTIVEGSMAJOR)"."TOSTRING(ACTIVEGSMINOR)"."TOSTRING(ACTIVEGSBUILD)"",AppVersion,buildVersion];
|
|
|
|
[self.portraitView setFrame:[[UIScreen mainScreen] bounds] ];
|
|
[self.landscapeView setFrame:[[UIScreen mainScreen] bounds] ];
|
|
|
|
// [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
|
|
}
|
|
|
|
-(void)viewDidAppear:(BOOL)animated
|
|
{
|
|
printf("viewDidAppear");
|
|
|
|
|
|
// Swipe left to go back to browsing
|
|
UISwipeGestureRecognizer* grswipeleft = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeLeft:)];
|
|
grswipeleft.direction = UISwipeGestureRecognizerDirectionLeft;
|
|
grswipeleft.cancelsTouchesInView = NO;
|
|
[self.view addGestureRecognizer:grswipeleft];
|
|
[grswipeleft release];
|
|
|
|
// Swipe Right to go back to browsing
|
|
UISwipeGestureRecognizer* grswiperight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeRight:)];
|
|
grswiperight.direction = UISwipeGestureRecognizerDirectionRight;
|
|
grswiperight.cancelsTouchesInView = NO;
|
|
[self.view addGestureRecognizer:grswiperight];
|
|
[grswiperight release];
|
|
|
|
}
|
|
|
|
|
|
-(void)updateView:(UIDeviceOrientation)_orientation
|
|
{
|
|
debug_printf("updateView infoViewController");
|
|
|
|
|
|
BOOL isPortrait = abs([pManager getAngle])==90.0f ;
|
|
|
|
if (isPortrait)
|
|
self.view = self.portraitView;
|
|
else
|
|
self.view = self.landscapeView;
|
|
|
|
// self.view = self.portraitView;
|
|
|
|
|
|
CGAffineTransform matv = CGAffineTransformIdentity;
|
|
matv = CGAffineTransformRotate (matv,(270-[pManager getAngle])*M_PI/180); //Avec
|
|
self.view.transform = matv;
|
|
|
|
CGRect rv2 = [[UIScreen mainScreen] applicationFrame];
|
|
CGRect rv3 = CGRectApplyAffineTransform(rv2,matv);
|
|
rv3.origin.x = 0;
|
|
rv3.origin.y = 0;
|
|
[self.view setBounds:rv3];
|
|
|
|
CGRect rscreen = [[UIScreen mainScreen] applicationFrame];
|
|
CGRect vscreen = self.view.frame;
|
|
|
|
vscreen.origin.x = (rscreen.size.width - self.view.frame.size.width)/2;
|
|
vscreen.origin.y = (rscreen.size.height-self.view.frame.size.height)/2;
|
|
[self.view setFrame:vscreen];
|
|
|
|
// pour réactiver les gestures
|
|
[self viewDidAppear:FALSE];
|
|
|
|
}
|
|
|
|
|
|
-(void)swipeLeft :(UISwipeGestureRecognizer*)_rec
|
|
{
|
|
|
|
if (_rec.state == UIGestureRecognizerStateEnded)
|
|
{
|
|
[pManager doStateChange:[pManager getBrowserView] type:kCATransitionPush sens:kCATransitionFromRight];
|
|
}
|
|
}
|
|
|
|
-(void)swipeRight :(UISwipeGestureRecognizer*)_rec
|
|
{
|
|
if (_rec.state == UIGestureRecognizerStateEnded)
|
|
{
|
|
[pManager doStateChange:[pManager getBrowserView] type:kCATransitionPush sens:kCATransitionFromLeft];
|
|
}
|
|
}
|
|
|
|
- (IBAction) doneButton:(id)_sender;
|
|
{
|
|
[pManager doStateChange:[pManager getBrowserView] type:kCATransitionFade sens:kCATransitionFromLeft];
|
|
|
|
}
|
|
|
|
- (IBAction) emailButton:(id)_sender;
|
|
{
|
|
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.facebook.com/groups/187271854617450/"]];
|
|
|
|
}
|
|
|
|
- (IBAction) parametersButton:(id)_sender
|
|
{
|
|
UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"ActiveGS" message:@"Not implemented yet" delegate:self cancelButtonTitle:@"Done" otherButtonTitles:nil] autorelease];
|
|
[alert show];
|
|
|
|
}
|
|
|
|
// IOS 5 Compatibility
|
|
|
|
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)shouldAutorotate
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
@end
|