]> git.saurik.com Git - iphone-api.git/blob - SpringBoard-2.1/Alarm.h
Commit the ChatKit folder (for WinterBoard).
[iphone-api.git] / SpringBoard-2.1 / Alarm.h
1 /*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
7 #import "NSObject.h"
8
9 @class NSCalendarDate, NSString;
10
11 @interface Alarm : NSObject
12 {
13 unsigned int _alarmHour;
14 unsigned int _alarmMinute;
15 int _alarmSetting;
16 NSString *_alarmSoundIdentifier;
17 NSString *_alarmTitle;
18 NSCalendarDate *_snoozeUntilDate;
19 unsigned int _isActive:1;
20 unsigned int _repeats:1;
21 unsigned int _allowsSnooze:1;
22 unsigned int _dontSendUpdate:1;
23 unsigned int _dontStopSnoozing:1;
24 unsigned int _reserved:27;
25 }
26
27 - (id)description;
28 - (void)_update;
29 - (id)init;
30 - (id)_initWithDictionary:(id)fp8;
31 - (id)_prefsDictionary;
32 - (void)dealloc;
33 - (BOOL)alarmTimesEqualTo:(id)fp8;
34 - (void)setAlarmHour:(unsigned int)fp8 minute:(unsigned int)fp12;
35 - (void)getAlarmHour:(unsigned int *)fp8 minute:(unsigned int *)fp12;
36 - (id)_fireDateAfterDate:(id)fp8;
37 - (void)setActive:(BOOL)fp8;
38 - (BOOL)isActive;
39 - (void)setRepeats:(BOOL)fp8;
40 - (BOOL)repeats;
41 - (void)setDaySetting:(int)fp8;
42 - (int)daySetting;
43 - (void)setAllowsSnooze:(BOOL)fp8;
44 - (BOOL)allowsSnooze;
45 - (BOOL)isSnoozing;
46 - (void)startSnoozingFromDate:(id)fp8;
47 - (void)stopSnoozing;
48 - (id)_snoozeUntilDate;
49 - (void)setAlarmSoundIdentifier:(id)fp8;
50 - (id)alarmSoundIdentifier;
51 - (void)setAlarmTitle:(id)fp8;
52 - (id)alarmTitle;
53 - (void)_activateAlertItem;
54 - (void)fireAlarm;
55
56 @end
57