scan archive UI improvements, phase 1
[zxing.git] / iphone / Classes / OpenUrlAction.m
1 //
2 //  OpenUrlAction.m
3 //  ZXing
4 //
5 //  Created by Christian Brunschen on 28/05/2008.
6 /*
7  * Copyright 2008 ZXing authors
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21
22 #import "OpenUrlAction.h"
23
24
25 @implementation OpenUrlAction
26
27 @synthesize URL;
28
29 - initWithURL:(NSURL *)url {
30   if ((self = [super init]) != nil) {
31     NSLog(@"initialising with URL with retain count %d", [url retainCount]);
32     self.URL = url;
33   }
34   return self;
35 }
36
37 + actionWithURL:(NSURL *)URL {
38   return [[[self alloc] initWithURL:URL] autorelease];
39 }
40
41 - (NSString *)title {
42   return [NSString localizedStringWithFormat:NSLocalizedString(@"Open %@", @"action title"), self.URL];
43 }
44
45 - (NSString *)alertTitle {
46   return NSLocalizedString(@"Open URL", @"alert title");
47 }
48
49 - (NSString *)alertMessage {
50   return [NSString localizedStringWithFormat:NSLocalizedString(@"Open URL <%@>?", @"alert message"), self.URL];
51 }
52
53 - (NSString *)alertButtonTitle {
54   return NSLocalizedString(@"Open", @"alert button title");
55 }
56
57 - (void)performActionWithController:(UIViewController *)controller {
58   UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil 
59                                                       message:[self alertMessage] 
60                                                      delegate:self 
61                                             cancelButtonTitle:NSLocalizedString(@"Cancel", @"cancel button title") 
62                                             otherButtonTitles:[self alertButtonTitle], nil];
63   [alertView show];
64   [alertView release];
65 }
66
67 - (void)openURL {
68   [[UIApplication sharedApplication] openURL:self.URL];
69 }
70
71 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
72   if (buttonIndex != [alertView cancelButtonIndex]) {
73     // perform the action
74     [self openURL];
75   }
76 }
77
78 @end