forked from kennytm/iphone-private-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlarm.h
55 lines (51 loc) · 1.39 KB
/
Alarm.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
47
48
49
50
51
52
53
54
/**
* This header is generated by class-dump-z 0.2-1.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <Foundation/NSObject.h>
@class NSCalendarDate, NSString;
@interface Alarm : NSObject {
unsigned _alarmHour;
unsigned _alarmMinute;
int _alarmSetting;
NSString* _alarmSoundIdentifier;
NSString* _alarmTitle;
NSCalendarDate* _snoozeUntilDate;
unsigned _isActive : 1;
unsigned _repeats : 1;
unsigned _allowsSnooze : 1;
unsigned _dontSendUpdate : 1;
unsigned _dontStopSnoozing : 1;
unsigned _reserved : 27;
}
// inherited: -(id)description;
-(void)_update;
// inherited: -(id)init;
-(id)_initWithDictionary:(id)dictionary;
-(id)_prefsDictionary;
// inherited: -(void)dealloc;
-(BOOL)alarmTimesEqualTo:(id)to;
-(void)setAlarmHour:(unsigned)hour minute:(unsigned)minute;
-(void)getAlarmHour:(unsigned*)hour minute:(unsigned*)minute;
-(id)_fireDateAfterDate:(id)date;
-(void)setActive:(BOOL)active;
-(BOOL)isActive;
-(void)setRepeats:(BOOL)repeats;
-(BOOL)repeats;
-(void)setDaySetting:(int)setting;
-(int)daySetting;
-(void)setAllowsSnooze:(BOOL)snooze;
-(BOOL)allowsSnooze;
-(BOOL)isSnoozing;
-(void)startSnoozingFromDate:(id)date;
-(void)stopSnoozing;
-(id)_snoozeUntilDate;
-(void)setAlarmSoundIdentifier:(id)identifier;
-(id)alarmSoundIdentifier;
-(void)setAlarmTitle:(id)title;
-(id)alarmTitle;
-(void)_activateAlertItem;
-(void)fireAlarm;
@end