00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class ISItem, ISPlistParser, NSArray, NSMutableArray, NSString;
00010
00011 @interface ISStorePage : NSObject
00012 {
00013 id _delegate;
00014 struct __CFSet *_observers;
00015 ISPlistParser *_requestParser;
00016 unsigned int _forcedIdle:1;
00017 ISPlistParser *_loadMoreParser;
00018 ISItem *_loadMoreItem;
00019 NSArray *_sections;
00020 unsigned int _activeSection;
00021 int _sectionsType;
00022 NSArray *_history;
00023 struct __CFBag *_itemTypes;
00024 NSMutableArray *_items;
00025 NSArray *_groups;
00026 ISItem *_item;
00027 NSString *_title;
00028 }
00029
00030 + (BOOL)anyPageHasLoaded;
00031 - (id)init;
00032 - (id)initWithStoreRoot:(int)fp8;
00033 - (id)initWithItem:(id)fp8;
00034 - (id)initWithURL:(id)fp8;
00035 - (void)dealloc;
00036 - (void)setDelegate:(id)fp8;
00037 - (void)addObserver:(id)fp8;
00038 - (void)removeObserver:(id)fp8;
00039 - (void)cancel;
00040 - (BOOL)fetchIfNecessary;
00041 - (BOOL)loadMoreForItem:(id)fp8;
00042 - (void)invalidate;
00043 - (void)setForcedIdle:(BOOL)fp8;
00044 - (void)refresh;
00045 - (void)plistParserWillFetchPlist:(id)fp8;
00046 - (void)plistParser:(id)fp8 finishedWithPlist:(id)fp12 error:(id)fp16;
00047 - (void)plistParserWasCancelled:(id)fp8;
00048 - (id)history;
00049 - (id)representativeItem;
00050 - (void)setTitle:(id)fp8;
00051 - (id)title;
00052 - (id)url;
00053 - (unsigned int)currentSectionIndex;
00054 - (unsigned int)numberOfSections;
00055 - (int)sectionsType;
00056 - (void)setCurrentSectionIndex:(unsigned int)fp8;
00057 - (id)titleOfSectionAtIndex:(unsigned int)fp8;
00058 - (unsigned int)numberOfGroups;
00059 - (unsigned int)numberOfItemsInGroup:(unsigned int)fp8;
00060 - (id)titleOfGroupAtIndex:(unsigned int)fp8;
00061 - (unsigned int)countOfItemsWithType:(int)fp8;
00062 - (id)itemsOfType:(int)fp8;
00063 - (id)itemInGroup:(unsigned int)fp8 atIndex:(unsigned int)fp12;
00064 - (id)items;
00065 - (id)valuesOfProperty:(id)fp8 forItemsOfType:(int)fp12 caseSensitiveStrings:(BOOL)fp16;
00066 - (id)response;
00067 - (void)setArguments:(id)fp8;
00068 - (id)_titleForRootType:(int)fp8;
00069 - (id)_insertItemOfType:(int)fp8 toArray:(id)fp12 atIndex:(unsigned int)fp16;
00070 - (id)_createItemsFromPlist:(id)fp8;
00071 - (id)_createSectionsFromPlist:(id)fp8;
00072 - (id)_itemArrayFromPlist:(id)fp8;
00073 - (void)_loadMetadataFromPlist:(id)fp8;
00074 - (void)_rebuildGroupsFromItems:(id)fp8;
00075 - (void)_replaceItem:(id)fp8 withItemsFromPlist:(id)fp12;
00076 - (void)_invalidate:(BOOL)fp8;
00077
00078 @end
00079