mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
129 lines
4 KiB
Objective-C
129 lines
4 KiB
Objective-C
/* IncomingCallViewController.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 "CallIncomingView.h"
|
|
#import "LinphoneManager.h"
|
|
#import "FastAddressBook.h"
|
|
#import "PhoneMainView.h"
|
|
#import "Utils.h"
|
|
|
|
@implementation CallIncomingView
|
|
|
|
#pragma mark - ViewController Functions
|
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
|
[super viewWillAppear:animated];
|
|
|
|
[NSNotificationCenter.defaultCenter addObserver:self
|
|
selector:@selector(callUpdateEvent:)
|
|
name:kLinphoneCallUpdate
|
|
object:nil];
|
|
}
|
|
|
|
- (void)viewWillDisappear:(BOOL)animated {
|
|
[super viewWillDisappear:animated];
|
|
[NSNotificationCenter.defaultCenter removeObserver:self name:kLinphoneCallUpdate object:nil];
|
|
_call = NULL;
|
|
}
|
|
|
|
#pragma mark - UICompositeViewDelegate Functions
|
|
|
|
static UICompositeViewDescription *compositeDescription = nil;
|
|
|
|
+ (UICompositeViewDescription *)compositeViewDescription {
|
|
if (compositeDescription == nil) {
|
|
compositeDescription = [[UICompositeViewDescription alloc] init:self.class
|
|
statusBar:StatusBarView.class
|
|
tabBar:nil
|
|
sideMenu:CallSideMenuView.class
|
|
fullscreen:false
|
|
isLeftFragment:YES
|
|
fragmentWith:nil];
|
|
compositeDescription.darkBackground = true;
|
|
}
|
|
return compositeDescription;
|
|
}
|
|
|
|
- (UICompositeViewDescription *)compositeViewDescription {
|
|
return self.class.compositeViewDescription;
|
|
}
|
|
|
|
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
|
|
[super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
|
|
if (_call) {
|
|
[self update];
|
|
}
|
|
}
|
|
|
|
#pragma mark - Event Functions
|
|
|
|
- (void)callUpdateEvent:(NSNotification *)notif {
|
|
LinphoneCall *acall = [[notif.userInfo objectForKey:@"call"] pointerValue];
|
|
LinphoneCallState astate = [[notif.userInfo objectForKey:@"state"] intValue];
|
|
[self callUpdate:acall state:astate];
|
|
}
|
|
|
|
- (void)callUpdate:(LinphoneCall *)acall state:(LinphoneCallState)astate {
|
|
if (_call == acall && (astate == LinphoneCallEnd || astate == LinphoneCallError)) {
|
|
[_delegate incomingCallAborted:_call];
|
|
} else if ([LinphoneManager.instance lpConfigBoolForKey:@"auto_answer"]) {
|
|
LinphoneCallState state = linphone_call_get_state(_call);
|
|
if (state == LinphoneCallIncomingReceived) {
|
|
LOGI(@"Auto answering call");
|
|
[self onAcceptClick:nil];
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma mark -
|
|
|
|
- (void)update {
|
|
const LinphoneAddress *addr = linphone_call_get_remote_address(_call);
|
|
[ContactDisplay setDisplayNameLabel:_nameLabel forAddress:addr withAddressLabel:_addressLabel];
|
|
char *uri = linphone_address_as_string_uri_only(addr);
|
|
ms_free(uri);
|
|
[_avatarImage setImage:[FastAddressBook imageForAddress:addr] bordered:YES withRoundedRadius:YES];
|
|
|
|
_tabBar.hidden = linphone_call_params_video_enabled(linphone_call_get_remote_params(_call));
|
|
_tabVideoBar.hidden = !_tabBar.hidden;
|
|
}
|
|
|
|
#pragma mark - Property Functions
|
|
|
|
- (void)setCall:(LinphoneCall *)call {
|
|
_call = call;
|
|
[self update];
|
|
[self callUpdate:_call state:linphone_call_get_state(call)];
|
|
}
|
|
|
|
#pragma mark - Action Functions
|
|
|
|
- (IBAction)onAcceptClick:(id)event {
|
|
[_delegate incomingCallAccepted:_call evenWithVideo:YES];
|
|
}
|
|
|
|
- (IBAction)onDeclineClick:(id)event {
|
|
[_delegate incomingCallDeclined:_call];
|
|
}
|
|
|
|
- (IBAction)onAcceptAudioOnlyClick:(id)sender {
|
|
[_delegate incomingCallAccepted:_call evenWithVideo:NO];
|
|
}
|
|
|
|
@end
|