mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
125 lines
4 KiB
Objective-C
125 lines
4 KiB
Objective-C
/* ChatViewController.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 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 "ChatViewController.h"
|
|
#import "PhoneMainView.h"
|
|
|
|
@implementation ChatViewController
|
|
|
|
@synthesize tableController;
|
|
@synthesize editButton;
|
|
@synthesize addressField;
|
|
|
|
#pragma mark - Lifecycle Functions
|
|
|
|
- (id)init {
|
|
return [super initWithNibName:@"ChatViewController" bundle:[NSBundle mainBundle]];
|
|
}
|
|
|
|
#pragma mark - ViewController Functions
|
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
|
[super viewWillAppear:animated];
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(textReceivedEvent:)
|
|
name:kLinphoneMessageReceived
|
|
object:nil];
|
|
if ([tableController isEditing])
|
|
[tableController setEditing:FALSE animated:FALSE];
|
|
[editButton setOff];
|
|
}
|
|
|
|
- (void)viewWillDisappear:(BOOL)animated {
|
|
[super viewWillDisappear:animated];
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self name:kLinphoneMessageReceived object:nil];
|
|
}
|
|
|
|
#pragma mark - Event Functions
|
|
|
|
- (void)textReceivedEvent:(NSNotification *)notif {
|
|
[tableController loadData];
|
|
}
|
|
|
|
#pragma mark - UICompositeViewDelegate Functions
|
|
|
|
static UICompositeViewDescription *compositeDescription = nil;
|
|
|
|
+ (UICompositeViewDescription *)compositeViewDescription {
|
|
if (compositeDescription == nil) {
|
|
compositeDescription = [[UICompositeViewDescription alloc] init:@"Chat"
|
|
content:@"ChatViewController"
|
|
stateBar:@"UIStateBar"
|
|
tabBar:@"UIMainBar"
|
|
fullscreen:false
|
|
landscapeMode:[LinphoneManager runningOnIpad]
|
|
portraitMode:true];
|
|
}
|
|
return compositeDescription;
|
|
}
|
|
|
|
#pragma mark - Action Functions
|
|
|
|
- (void)startChatRoom {
|
|
// Push ChatRoom
|
|
LinphoneChatRoom *room =
|
|
linphone_core_get_chat_room_from_uri([LinphoneManager getLc], [addressField.text UTF8String]);
|
|
if (room != nil) {
|
|
ChatRoomViewController *controller = DYNAMIC_CAST(
|
|
[[PhoneMainView instance] changeCurrentView:[ChatRoomViewController compositeViewDescription] push:TRUE],
|
|
ChatRoomViewController);
|
|
if (controller != nil) {
|
|
[controller setChatRoom:room];
|
|
}
|
|
} else {
|
|
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Invalid address", nil)
|
|
message:@"Please specify the entire SIP address for the chat"
|
|
delegate:nil
|
|
cancelButtonTitle:NSLocalizedString(@"Cancel", nil)
|
|
otherButtonTitles:nil];
|
|
[alert show];
|
|
}
|
|
addressField.text = @"";
|
|
}
|
|
- (IBAction)onAddClick:(id)event {
|
|
if ([[addressField text] length] == 0) { // if no address is manually set, lauch address book
|
|
[ContactSelection setSelectionMode:ContactSelectionModeMessage];
|
|
[ContactSelection setAddAddress:nil];
|
|
[ContactSelection setSipFilter:[LinphoneManager instance].contactFilter];
|
|
[ContactSelection enableEmailFilter:FALSE];
|
|
[ContactSelection setNameOrEmailFilter:nil];
|
|
[[PhoneMainView instance] changeCurrentView:[ContactsViewController compositeViewDescription] push:TRUE];
|
|
} else {
|
|
[self startChatRoom];
|
|
}
|
|
}
|
|
|
|
- (IBAction)onEditClick:(id)event {
|
|
[tableController setEditing:![tableController isEditing] animated:TRUE];
|
|
}
|
|
|
|
#pragma mark - UITextFieldDelegate Functions
|
|
|
|
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
|
|
[addressField resignFirstResponder];
|
|
if ([[addressField text] length] > 0)
|
|
[self startChatRoom];
|
|
return YES;
|
|
}
|
|
@end
|