1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
//
// RootViewController.m
//
// Copyright 2011 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy
// of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
//
#import "RootViewController.h"
#import "OTPAuthURL.h"
#import "HOTPGenerator.h"
#import "OTPTableViewCell.h"
#import "UIColor+MobileColors.h"
#import "OTPAuthBarClock.h"
#import "TOTPGenerator.h"
#import "GTMLocalizedString.h"
@interface RootViewController ()
@property(nonatomic, readwrite, retain) OTPAuthBarClock *clock;
- (void)showCopyMenu:(UIGestureRecognizer *)recognizer;
@end
@implementation RootViewController
@synthesize delegate = delegate_;
@synthesize clock = clock_;
@synthesize addItem = addItem_;
@synthesize legalItem = legalItem_;
- (void)dealloc {
[self.clock invalidate];
self.clock = nil;
self.delegate = nil;
self.addItem = nil;
self.legalItem = nil;
[super dealloc];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
// On an iPad, support both portrait modes and landscape modes.
return UIInterfaceOrientationIsLandscape(interfaceOrientation) ||
UIInterfaceOrientationIsPortrait(interfaceOrientation);
}
// On a phone/pod, don't support upside-down portrait.
return interfaceOrientation == UIInterfaceOrientationPortrait ||
UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
- (void)viewDidLoad {
UITableView *view = (UITableView *)self.view;
view.dataSource = self.delegate;
view.delegate = self.delegate;
view.backgroundColor = [UIColor googleBlueBackgroundColor];
UIButton *titleButton = [[[UIButton alloc] init] autorelease];
[titleButton setImage:[UIImage imageNamed:@"GoogleNavBarLogo.png"]
forState:UIControlStateNormal];
[titleButton setTitle:GTMLocalizedString(@"Authenticator", nil)
forState:UIControlStateNormal];
UILabel *titleLabel = [titleButton titleLabel];
titleLabel.font = [UIFont boldSystemFontOfSize:20.0];
titleLabel.shadowOffset = CGSizeMake(0.0, -1.0);
[titleButton setTitleShadowColor:[UIColor colorWithWhite:0.0 alpha:0.5]
forState:UIControlStateNormal];
titleButton.adjustsImageWhenHighlighted = NO;
[titleButton sizeToFit];
UINavigationItem *navigationItem = self.navigationItem;
navigationItem.titleView = titleButton;
self.clock = [[[OTPAuthBarClock alloc] initWithFrame:CGRectMake(0,0,30,30)
period:[TOTPGenerator defaultPeriod]] autorelease];
UIBarButtonItem *clockItem
= [[[UIBarButtonItem alloc] initWithCustomView:clock_] autorelease];
[navigationItem setLeftBarButtonItem:clockItem animated:NO];
self.navigationController.toolbar.tintColor = [UIColor googleBlueBarColor];
// UIGestureRecognizers are actually in the iOS 3.1.3 SDK, but are not
// publicly exposed (and have slightly different method names).
// Check to see it the "public" version is available, otherwise don't use it
// at all. numberOfTapsRequired does not exist in 3.1.3.
if ([UITapGestureRecognizer
instancesRespondToSelector:@selector(numberOfTapsRequired)]) {
UILongPressGestureRecognizer *gesture =
[[[UILongPressGestureRecognizer alloc] initWithTarget:self
action:@selector(showCopyMenu:)]
autorelease];
[view addGestureRecognizer:gesture];
UITapGestureRecognizer *doubleTap =
[[[UITapGestureRecognizer alloc] initWithTarget:self
action:@selector(showCopyMenu:)]
autorelease];
doubleTap.numberOfTapsRequired = 2;
[view addGestureRecognizer:doubleTap];
}
}
- (void)setEditing:(BOOL)editing animated:(BOOL)animated {
[super setEditing:editing animated:animated];
self.addItem.enabled = !editing;
self.legalItem.enabled = !editing;
}
- (void)showCopyMenu:(UIGestureRecognizer *)recognizer {
BOOL isLongPress =
[recognizer isKindOfClass:[UILongPressGestureRecognizer class]];
if ((isLongPress && recognizer.state == UIGestureRecognizerStateBegan) ||
(!isLongPress && recognizer.state == UIGestureRecognizerStateRecognized)) {
CGPoint location = [recognizer locationInView:self.view];
UITableView *view = (UITableView*)self.view;
NSIndexPath *indexPath = [view indexPathForRowAtPoint:location];
UITableViewCell* cell = [view cellForRowAtIndexPath:indexPath];
if ([cell respondsToSelector:@selector(showCopyMenu:)]) {
location = [view convertPoint:location toView:cell];
[(OTPTableViewCell*)cell showCopyMenu:location];
}
}
}
@end
|