mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
71 lines
2 KiB
Objective-C
71 lines
2 KiB
Objective-C
/* UIChatRoomHeader.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 "UIChatRoomHeader.h"
|
|
#import "Utils.h"
|
|
|
|
@implementation UIChatRoomHeader
|
|
|
|
@synthesize avatarImage;
|
|
@synthesize addressLabel;
|
|
@synthesize contact;
|
|
|
|
|
|
#pragma mark - Lifecycle Functions
|
|
|
|
- (id)init {
|
|
return [super initWithNibName:@"UIChatRoomHeader" bundle:[NSBundle mainBundle]];
|
|
}
|
|
|
|
- (void)dealloc {
|
|
[avatarImage release];
|
|
[addressLabel release];
|
|
[contact release];
|
|
[super dealloc];
|
|
}
|
|
|
|
|
|
#pragma mark - Property Functions
|
|
|
|
- (void)setContact:(NSString *)acontact {
|
|
if(contact != nil) {
|
|
[contact release];
|
|
}
|
|
contact = [acontact copy];
|
|
[self update];
|
|
}
|
|
|
|
|
|
#pragma mark -
|
|
|
|
- (void)update {
|
|
if(contact == NULL) {
|
|
[LinphoneLogger logc:LinphoneLoggerWarning format:"Cannot update chat room header: null contact"];
|
|
return;
|
|
}
|
|
|
|
[avatarImage setImage:[UIImage imageNamed:@"avatar_unknown_small.png"]];
|
|
[addressLabel setText:contact];
|
|
}
|
|
|
|
+ (CGFloat)height {
|
|
return 80.0f;
|
|
}
|
|
|
|
@end
|