Issue 412
[zxing.git] / iphone / Classes / BusinessCardParsedResult.m
1 //
2 //  AddressBookDoCoMoParsedResult.m
3 //  ZXing
4 //
5 //  Created by Christian Brunschen on 29/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 "BusinessCardParsedResult.h"
23 #import "AddContactAction.h"
24
25 @implementation BusinessCardParsedResult
26
27 @synthesize name;
28 @synthesize phoneNumbers;
29 @synthesize note;
30 @synthesize email;
31 @synthesize urlString;
32 @synthesize address;
33
34 - (NSString *)stringForDisplay {
35   NSMutableString *result = [NSMutableString stringWithString:self.name];
36   if (self.phoneNumbers) {
37     for (NSString *number in self.phoneNumbers) {
38       [result appendFormat:@"\n%@", number];
39     }
40   }
41   
42   if (self.email) {
43     [result appendFormat:@"\n%@", self.email];
44   }
45   if (self.urlString) {
46     [result appendFormat:@"\n%@", self.urlString];
47   }
48   if (self.note) {
49     [result appendFormat:@"\n%@", self.note];
50   }
51   if (self.address) {
52     [result appendFormat:@"\n%@", self.address];
53   }
54   return [NSString stringWithString:result];
55 }
56
57 - (void)populateActions {
58   [actions addObject:[AddContactAction actionWithName:self.name
59                                          phoneNumbers:self.phoneNumbers 
60                                                 email:self.email 
61                                                   url:self.urlString 
62                                               address:self.address 
63                                                  note:self.note]];
64 }
65
66 - (void) dealloc {
67   [name release];
68   [phoneNumbers release];
69   [email release];
70   [urlString release];
71   [address release];
72   [note release];
73   [super dealloc];
74 }
75
76 + (NSString *)typeName {
77   return NSLocalizedString(@"Contact Result Type Name", @"Contact");
78 }
79
80 - (UIImage *)icon {
81   return [UIImage imageNamed:@"business-card.png"];
82 }
83
84 @end