/* UIHistoryCell.m * * Copyright (C) 2012 Belledonne Comunications, Grenoble, France * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #import "UIHistoryCell.h" #import "LinphoneManager.h" #import "PhoneMainView.h" #import "Utils.h" @implementation UIHistoryCell @synthesize callLog; @synthesize addressLabel; @synthesize imageView; @synthesize deleteButton; @synthesize detailsButton; #pragma mark - Lifecycle Functions - (id)initWithIdentifier:(NSString*)identifier { if ((self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier]) != nil) { NSArray *arrayOfViews = [[NSBundle mainBundle] loadNibNamed:@"UIHistoryCell" owner:self options:nil]; if ([arrayOfViews count] >= 1) { [self addSubview:[[arrayOfViews objectAtIndex:0] retain]]; } self->callLog = NULL; } return self; } - (void) dealloc { [detailsButton release]; [deleteButton release]; [addressLabel release]; [imageView release]; [super dealloc]; } #pragma mark - Action Functions - (void)setCallLog:(LinphoneCallLog *)acallLog { callLog = acallLog; [self update]; } #pragma mark - Action Functions - (IBAction)onDetails:(id) event { if(callLog != NULL) { // Go to History details view HistoryDetailsViewController *controller = DYNAMIC_CAST([[PhoneMainView instance] changeCurrentView:[HistoryDetailsViewController compositeViewDescription] push:TRUE], HistoryDetailsViewController); if(controller != nil) { [controller setCallLog:callLog]; } } } - (IBAction)onDelete:(id)event { if(callLog != NULL) { UIView *view = [self superview]; // Find TableViewCell if(view != nil && ![view isKindOfClass:[UITableView class]]) view = [view superview]; if(view != nil) { UITableView *tableView = (UITableView*) view; NSIndexPath *indexPath = [tableView indexPathForCell:self]; [[tableView dataSource] tableView:tableView commitEditingStyle:UITableViewCellEditingStyleDelete forRowAtIndexPath:indexPath]; } } } #pragma mark - - (void)update { if(callLog == NULL) { [LinphoneLogger logc:LinphoneLoggerWarning format:"Cannot update history cell: null callLog"]; return; } // Set up the cell... LinphoneAddress* addr; UIImage *image; if (callLog->dir == LinphoneCallIncoming) { if (callLog->status != LinphoneCallMissed) { image = [UIImage imageNamed:@"call_status_incoming.png"]; } else { image = [UIImage imageNamed:@"call_status_missed.png"]; } addr = callLog->from; } else { image = [UIImage imageNamed:@"call_status_outgoing.png"]; addr = callLog->to; } NSString* address = nil; if(addr != NULL) { BOOL useLinphoneAddress = true; // contact name char* lAddress = linphone_address_as_string_uri_only(addr); if(lAddress) { NSString *normalizedSipAddress = [FastAddressBook normalizeSipURI:[NSString stringWithUTF8String:lAddress]]; ABRecordRef contact = [[[LinphoneManager instance] fastAddressBook] getContact:normalizedSipAddress]; if(contact) { address = [FastAddressBook getContactDisplayName:contact]; useLinphoneAddress = false; } ms_free(lAddress); } if(useLinphoneAddress) { const char* lDisplayName = linphone_address_get_display_name(addr); const char* lUserName = linphone_address_get_username(addr); if (lDisplayName) address = [NSString stringWithUTF8String:lDisplayName]; else if(lUserName) address = [NSString stringWithUTF8String:lUserName]; } } if(address == nil) { address = @"Unknown"; } [addressLabel setText:address]; [imageView setImage: image]; } - (void)setEditing:(BOOL)editing { [self setEditing:editing animated:FALSE]; } - (void)setEditing:(BOOL)editing animated:(BOOL)animated { if(animated) { [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:0.3]; } if(editing) { [deleteButton setAlpha:1.0f]; [detailsButton setAlpha:0.0f]; } else { [detailsButton setAlpha:1.0f]; [deleteButton setAlpha:0.0f]; } if(animated) { [UIView commitAnimations]; } } @end