// // MGMUser.h // MGMUsers // // Created by Mr. Gecko on 7/4/10. // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // #if TARGET_OS_IPHONE #import #else #import #endif extern NSString * const MGMUserStartNotification; extern NSString * const MGMUserDoneNotification; extern NSString * const MGMUserUpdatedNotification; extern NSString * const MGMUserID; extern NSString * const MGMUserName; @class MGMUser, MGMKeychainItem, MGMHTTPCookieStorage; @protocol MGMUserDelegate - (BOOL)isUserDone:(MGMUser *)theUser; @end @interface MGMUser : NSObject { @private id delegate; MGMKeychainItem *keychainItem; NSMutableDictionary *settings; } + (NSString *)applicationSupportPath; + (NSString *)cachePath; + (NSString *)cookieStoragePath; + (MGMHTTPCookieStorage *)cookieStorage; + (NSMutableDictionary *)usersPlist; + (NSArray *)users; + (NSArray *)userNames; + (NSArray *)lastUsers; + (MGMUser *)userWithName:(NSString *)theName; + (MGMUser *)userWithID:(NSString *)theID; + (MGMUser *)createUserWithName:(NSString *)theName password:(NSString *)thePassword; - (id)initWithSettings:(NSDictionary *)theSettings; - (BOOL)isEqual:(id)theObject; - (id)delegate; - (void)setDelegate:(id)theDelegate; - (MGMKeychainItem *)keychainItem; - (void)start; - (BOOL)isStarted; - (id)settingForKey:(NSString *)theKey; - (void)setSetting:(id)theSetting forKey:(NSString *)theKey; - (BOOL)boolForKey:(NSString *)theKey; - (void)setBool:(BOOL)theBool forKey:(NSString *)theKey; - (NSString *)settingsPath; - (NSDictionary *)settings; - (void)registerSettings:(NSDictionary *)theSettings; - (NSString *)supportPath; - (NSString *)cachePath; - (NSString *)password; - (void)setPassword:(NSString *)thePassword; - (NSString *)cookieStoragePath; - (MGMHTTPCookieStorage *)cookieStorage; - (void)done; - (void)remove; @end