-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDialer.h
39 lines (36 loc) · 950 Bytes
/
Dialer.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
//
// Dialer.h
// BuddyPop
//
// Created by Yann Bizeul on Wed May 26 2004.
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NSArrayAdditions.h"
#import "NSStringAdditions.h"
#import "NSCharacterSetAdditions.h"
#import "BPContact.h"
@interface Dialer : NSObject {
BOOL CANCEL;
NSString *number;
NSDictionary *userInfo;
}
+ (BOOL)isAvailable;
+ (BOOL)isReady;
+ (void)dial:(NSString*)aNumber;
- (void)setNumber:(NSString*)aNumber;
- (void)dialerWillStartDialing;
- (int)timeout;
+ (void)setUserInfo:(NSDictionary*)aDictionary;
- (void)setUserInfo:(NSDictionary*)aDictionary;
- (NSDictionary*)userInfo;
- (void)cancel;
+(void)cancel;
+ (void)setCountryCode:(NSString*)aString;
+ (NSString*)countryCode;
+ (void)setPrefix:(NSString*)aString;
+ (NSString*)prefix;
+ (void)setEnableSpeaker:(BOOL)flag;
+ (BOOL)enableSpeaker;
+ (NSString*)localizedNumber:(NSString*)number;
@end