00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableArray;
00010
00011 @interface ABFavoritesList : NSObject
00012 {
00013 NSMutableArray *_list;
00014 struct __CFDictionary *_uidToEntry;
00015 struct {
00016 unsigned int dirty:1;
00017 unsigned int postCount:1;
00018 unsigned int needsReload:1;
00019 unsigned int unused:29;
00020 } _flags;
00021 }
00022
00023 + (id)sharedInstance;
00024 - (void)_initializeList;
00025 - (id)init;
00026 - (void)dealloc;
00027 - (void)_scheduleSave;
00028 - (id)entries;
00029 - (BOOL)isFull;
00030 - (id)entriesForPerson:(struct CPRecord *)fp8;
00031 - (id)entryWithIdentifier:(int)fp8 forPerson:(struct CPRecord *)fp12;
00032 - (BOOL)containsEntryWithIdentifier:(int)fp8 forPerson:(struct CPRecord *)fp12;
00033 - (BOOL)addEntryForPerson:(struct CPRecord *)fp8 property:(int)fp12 withIdentifier:(int)fp16;
00034 - (void)_addEntryToMap:(id)fp8;
00035 - (void)_removeEntryFromMap:(id)fp8 withUid:(int)fp12;
00036 - (void)_entryIdentityChanged:(id)fp8;
00037 - (void)_postChangeNotification;
00038 - (void)_listChangedExternally;
00039 - (void)addEntry:(id)fp8;
00040 - (void)removeEntryAtIndex:(int)fp8;
00041 - (void)moveEntryAtIndex:(int)fp8 toIndex:(int)fp12;
00042 - (BOOL)_writeFavoritesToFile:(id)fp8;
00043 - (void)save;
00044 - (void)recacheIdentitiesSoon;
00045 - (void)_delayedLookup;
00046 - (BOOL)entryIsDuplicateAndThusRemoved:(id)fp8 oldUid:(int)fp12;
00047
00048 @end
00049