00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class ABRingtoneManager, AVController, NSMutableArray, NSString;
00010
00011 @interface ABRingtoneTableController : NSObject
00012 {
00013 id _delegate;
00014 NSMutableArray *_ringtoneIdentifiers;
00015 int _selectedRingtoneIndex;
00016 BOOL _showsNone;
00017 NSString *_noneString;
00018 struct CPRecord *_person;
00019 ABRingtoneManager *_ringtoneManager;
00020 AVController *_avController;
00021 BOOL _startedInteruption;
00022 BOOL _customAVController;
00023 }
00024
00025 - (id)init;
00026 - (id)initWithAVController:(id)fp8;
00027 - (void)dealloc;
00028 - (void)addRingtonesInDirectory:(id)fp8 toArray:(id)fp12 fileExtension:(id)fp16;
00029 - (int)compareRingtoneWithIdentifier:(id)fp8 toRingtoneWithIdentifier:(id)fp12;
00030 - (void)reloadRingtones;
00031 - (void)setDelegate:(id)fp8;
00032 - (void)setSelectedRingtoneIdentifier:(id)fp8;
00033 - (id)selectedRingtoneIdentifier;
00034 - (int)indexOfSelectedRingtone;
00035 - (id)ringtoneManager;
00036 - (void)setShowsNone:(BOOL)fp8;
00037 - (void)setNoneString:(id)fp8;
00038 - (void)setPerson:(struct CPRecord *)fp8;
00039 - (struct CPRecord *)person;
00040 - (void)processNewRingtoneSelected:(id)fp8;
00041 - (void)tableRowSelected:(id)fp8;
00042 - (int)numberOfGroupsInPreferencesTable:(id)fp8;
00043 - (int)preferencesTable:(id)fp8 numberOfRowsInGroup:(int)fp12;
00044 - (id)preferencesTable:(id)fp8 cellForRow:(int)fp12 inGroup:(int)fp16;
00045 - (BOOL)preferencesTable:(id)fp8 isRadioGroup:(int)fp12;
00046 - (void)setAVController:(id)fp8;
00047 - (id)avController;
00048 - (void)togglePlayWithRingtoneWithIdentifier:(id)fp8;
00049 - (void)playRingtoneWithIdentifier:(id)fp8;
00050 - (void)stopPlayingWithFadeOut:(BOOL)fp8;
00051 - (void)stopPlaying;
00052 - (void)finishedWithPicker;
00053
00054 @end
00055