// // TKVariation.h // ThemeKit // // Created by Colin Cornaby on Sun Dec 21 2003. // Copyright (c) 2003 Carpe Stellarem. All rights reserved. // #ifndef _TKVariation_ #define __TKVariation__ #import #import #import "TKMDManagedObject.h" @interface TKVariation : TKMDManagedObject { NSMutableDictionary *idCache; NSData *currentKey; } -(id)appSkinForIdentifier:(NSString *)identifier; -(NSArray *)appSkins; -(void)removeAppSkin:(id)appSkin; -(id)addAppSkin:(id)appSkin; -(NSString *)name; -(void)setName:(NSString *)theName; -(void)setDescriptorHTML:(NSString *)htmlCode; -(NSString *)descriptorHTML; -(NSDictionary *)descriptorFileDictionary; -(void)setDescriptorFileDictionary:(NSDictionary *)descriptorFileDictionary; -(void)removeAppSkin:(id)appSkin; -(id)addAppSkin:(id)appSkin; @end #endif