forked from peterhajas/SpringBoard-4.x-Headers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSBConferenceManager.h
47 lines (43 loc) · 1.43 KB
/
SBConferenceManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* This header is generated by class-dump-z 0.2a.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import "CNFSoundPlayerDelegateProtocol.h"
#import <Foundation/NSObject.h>
@class CNFAudioPlayer, CNFConferenceController, NSDate, SBVideoAlert;
@interface SBConferenceManager : NSObject <CNFSoundPlayerDelegateProtocol> {
CNFConferenceController* _conferenceController;
SBVideoAlert* _currentVideoAlert;
unsigned _avState;
unsigned _endedReason;
NSDate* _conferenceStartedDate;
CNFAudioPlayer* _player;
}
@property(readonly, assign) SBVideoAlert* currentVideoAlert;
@property(readonly, assign) unsigned chatState;
@property(readonly, assign) CNFConferenceController* conferenceController;
+(id)sharedInstance;
+(void)initialize;
-(id)init;
-(void)alertHasBeenHandled;
-(BOOL)videoConferenceInvitationExists;
-(BOOL)invitationIsFaceTimeUpgrade;
-(BOOL)inConference;
-(BOOL)canStartConference;
-(BOOL)shouldCreateMissedFaceTimeCall;
-(void)answerIncomingConference;
-(void)declineIncomingConference;
-(void)endConference;
-(void)playSound:(int)sound numOfLoops:(int)loops pauseDuration:(float)duration;
-(void)stopAudioPlayer;
-(void)dealloc;
-(void)updateStatusBar;
-(void)_updateStatusBar;
-(id)durationString;
-(void)_handleInvitation:(id)invitation;
-(void)_handleMissedInvitation:(id)invitation;
-(void)_conferenceStateChanged:(id)changed;
-(void)audioPlayerDidStopPlaying:(id)audioPlayer;
@end