├── .gitignore ├── .travis.yml ├── ITXAnimatedCornersView.m ├── ITXAnimatedSeperatedCornersView.m ├── ITXHelper.m ├── ITXNCGroupBackgroundConfiguration.m ├── ITXNCGroupBackgroundView.m ├── ITXNCGroupFooterView.m ├── ITXNotificationsSection.m ├── Intelix.plist ├── MTPlatterHeaderContentView.xm ├── Makefile ├── NCNotificationChronologicalList.xm ├── NCNotificationCombinedListViewController.xm ├── NCNotificationListCell.xm ├── NCNotificationListCollectionView.xm ├── NCNotificationListCollectionViewFlowLayout.xm ├── NCNotificationListSection.xm ├── NCNotificationListSectionHeaderView.xm ├── NCNotificationPriorityList.xm ├── NCNotificationShortLookViewController.xm ├── README.md ├── Tweak.xm ├── control └── headers ├── AVFoundation ├── AVFlashlight.h └── AVFoundation+Private.h ├── Acapella ├── Acapella.h └── SWAcapellaPrefs.h ├── Activator ├── Activator+Private.h ├── LAActivator.h ├── LAActivatorVersion.h ├── LAEvent.h ├── LAEventDataSource.h ├── LAListener.h ├── LASettingsViewController.h └── UIImageView+Activator.h ├── Apex └── STKGroupView.h ├── AppList ├── ALApplicationList.h └── AppList.h ├── BiometricKit ├── BiometricKit-Object.h └── BiometricKit.h ├── BulletinBoard ├── BBAttachments.h ├── BBBulletin.h ├── BBObserver.h ├── BBObserverDelegate-Protocol.h ├── BBServer.h ├── BulletinBoard-Structs.h ├── BulletinBoard.h └── XPCProxyTarget.h ├── ColorBanners2 └── CBRColoringInfo.h ├── ControlCenterUI ├── CCUIAirStuffSectionController.h ├── CCUIBrightnessContentView.h ├── CCUIBrightnessSectionController.h ├── CCUIButtonControllerDelegate-Protocol.h ├── CCUIButtonLikeSectionSplitView.h ├── CCUIButtonModule.h ├── CCUIButtonModuleDelegate-Protocol.h ├── CCUIButtonSectionController.h ├── CCUIButtonStack.h ├── CCUIButtonStackLayoutDelegate-Protocol.h ├── CCUIButtonStackPagingView.h ├── CCUIButtonStackPagingViewDelegate-Protocol.h ├── CCUIControlCenterButtonDelegate-Protocol.h ├── CCUIControlCenterButtonSectionSettings.h ├── CCUIControlCenterObserver-Protocol.h ├── CCUIControlCenterPageContainerViewController.h ├── CCUIControlCenterPageContainerViewControllerDelegate-Protocol.h ├── CCUIControlCenterPageContentProviding-Protocol.h ├── CCUIControlCenterPageContentViewControllerDelegate-Protocol.h ├── CCUIControlCenterPagePlatterView.h ├── CCUIControlCenterPagePlatterViewDelegate-Protocol.h ├── CCUIControlCenterPushButton.h ├── CCUIControlCenterPushButtonSettings.h ├── CCUIControlCenterRootView.h ├── CCUIControlCenterSectionView.h ├── CCUIControlCenterSectionViewController.h ├── CCUIControlCenterSectionViewControllerDelegate-Protocol.h ├── CCUIControlCenterSettings.h ├── CCUIControlCenterSettingsSectionSettings.h ├── CCUIControlCenterShortcutButtonSettings.h ├── CCUIControlCenterShortcutSectionSettings.h ├── CCUIControlCenterViewController.h ├── CCUIFlashlightSetting.h ├── CCUIImmediateTouchScrollView.h ├── CCUINightShiftContentView.h ├── CCUINightShiftSectionController.h ├── CCUIQuickLaunchSectionController.h ├── CCUISettingModule.h ├── CCUISettingsSectionController.h ├── CCUISystemControlsPageViewController.h ├── ControlCenterUI+Private.h └── SBControlCenterSettingButtonSettings.h ├── ControlCenterUIKit ├── CCUIControlCenterButton.h ├── CCUIControlCenterSlider.h ├── CCUIControlCenterVisualEffect.h ├── CCUIPunchOutMask.h └── ControlCenterUIKit+Private.h ├── EventKitUI ├── CalendarModel.h ├── EKCalendarDate.h ├── EKDayView.h ├── EKDayViewDataSource-Protocol.h └── EKDayViewDelegate-Protocol.h ├── FlipSwitch ├── FSSwitchDataSource.h ├── FSSwitchPanel+Private.h ├── FSSwitchPanel.h ├── FSSwitchSettingsViewController-Protocol.h ├── FSSwitchSettingsViewController.h ├── FSSwitchState.h ├── FlipSwitch+Private.h └── Flipswitch.h ├── Foundation ├── Foundation+Private.h └── __NSBundleTables.h ├── FuseUI └── MCProfileConnectionObserver-Protocol.h ├── GameCenterFoundation ├── GKAchievementDescription.h ├── GKAchievementInternal.h ├── GKGame.h ├── GKInternalRepresentation.h └── GameCenterFoundation.h ├── IBKKit └── IBKWidgetDelegate-Protocol.h ├── Intelix ├── ITXAnimatedCornersView.h ├── ITXAnimatedSeperatedCornersView.h ├── ITXHelper.h ├── ITXNCGroupBackgroundConfiguration.h ├── ITXNCGroupBackgroundView.h ├── ITXNCGroupFooterView.h ├── ITXNotificationsSection.h ├── MTPlatterHeaderContentView.h ├── NCNotificationChronologicalList.h ├── NCNotificationCombinedListViewController.h ├── NCNotificationListCell.h ├── NCNotificationListSection.h ├── NCNotificationListSectionHeaderView.h ├── NCNotificationPriorityList.h └── NCNotificationShortLookView.h ├── LocalAuthentication └── LAContext.h ├── MPUFoundation ├── MPUFoundation+Private.h ├── MPULayoutInterpolator.h ├── MPUMarqueeView.h └── MPUMarqueeViewDelegate-Protocol.h ├── MaterialKit ├── MTFontProvider.h ├── MTMaterialView.h ├── MTPlatterHeaderContentView.h ├── MTPlatterView.h └── MTTitledPlatterView.h ├── MediaPlayerUI ├── @interface MPUVolumeHUDController : NSObject { ├── MPAVBatteryLevel.h ├── MPAVController.h ├── MPAVRoute.h ├── MPAVRoutingController.h ├── MPAVRoutingControllerDelegate-Protocol.h ├── MPAVRoutingViewController.h ├── MPAVRoutingViewControllerDelegate-Protocol.h ├── MPUAVRouteHeaderLabel.h ├── MPUAVRouteHeaderView.h ├── MPUChronologicalProgressView.h ├── MPUChronologicalProgressViewDelegate-Protocol.h ├── MPUControlCenterMediaControlsView.h ├── MPUControlCenterMediaControlsViewController.h ├── MPUControlCenterMediaControlsViewDelegate-Protocol.h ├── MPUControlCenterMetadataView.h ├── MPUControlCenterTimeView.h ├── MPUEmptyNowPlayingView.h ├── MPUEmptyNowPlayingViewDelegate-Protocol.h ├── MPUMediaControlsVolumeView.h ├── MPUMediaRemoteControlsView.h ├── MPUMediaRemoteViewController.h ├── MPUNowPlayingArtworkView.h ├── MPUNowPlayingController.h ├── MPUNowPlayingDelegate-Protocol.h ├── MPUNowPlayingMetadata.h ├── MPUNowPlayingMetadataView.h ├── MPUSupportedRemoteControls.h ├── MPUTransportControlMediaRemoteController.h ├── MPUTransportControlMediaRemoteControllerDelegate-Protocol.h ├── MPUTransportControlsView.h ├── MPUTransportControlsViewDataSource-Protocol.h ├── MPUTransportControlsViewDelegate-Protocol.h ├── MPUTransportControlsViewLayoutDelegate-Protocol.h ├── MPUVolumeHUDController.h ├── MPVolumeController.h ├── MPVolumeControllerDelegate-Protocol.h ├── MPWeakTimer.h ├── MediaPlayerUI+Private.h └── untitled.mm ├── MediaRemote └── MediaRemote+Private.h ├── NSBlock.h ├── Polus ├── PLAppsController.h ├── PLContainerView.h ├── PLPrefsHelper.h └── Polus.h ├── Preferences ├── DevicePINController.h ├── DevicePINPane.h ├── PSBundleController.h ├── PSControlTableCell.h ├── PSDetailController.h ├── PSDiscreteSlider.h ├── PSEditableTableCell.h ├── PSEditingPane.h ├── PSHeaderFooterView.h ├── PSListController.h ├── PSListItemsController.h ├── PSRootController.h ├── PSSliderTableCell.h ├── PSSpecifier.h ├── PSSpecifierDataSource.h ├── PSSwitchTableCell.h ├── PSTableCell.h ├── PSViewController.h ├── Preferences+Private.h ├── Preferences.h └── PreferencesAppController.h ├── QuartzCore ├── CAAnimationDelegate-Protocol.h ├── CAFilter.h ├── CALayer+Private.h └── QuartzCore+Private.h ├── SpringBoard ├── CCUIControlCenterSystemAgent-Protocol.h ├── SBApplication.h ├── SBApplicationController.h ├── SBApplicationIcon.h ├── SBApplicationRestrictionDataSource-Protocol.h ├── SBApplicationRestrictionObserver-Protocol.h ├── SBControlCenterController.h ├── SBDarkeningImageViewDelegate-Protocol.h ├── SBDashBoardCombinedListViewController.h ├── SBDashBoardNotificationDispatcher.h ├── SBDisplayProtocol-Protocol.h ├── SBDockIconListView.h ├── SBFolder.h ├── SBFolderController.h ├── SBFolderControllerDelegate-Protocol.h ├── SBFolderIcon.h ├── SBFolderObserver-Protocol.h ├── SBFolderView.h ├── SBFolderViewDelegate-Protocol.h ├── SBIcon.h ├── SBIconAccessoryView-Protocol.h ├── SBIconBadgeView.h ├── SBIconContentView.h ├── SBIconController.h ├── SBIconImageCrossfadeView.h ├── SBIconImageView.h ├── SBIconIndexMutableList.h ├── SBIconIndexMutableListObserver-Protocol.h ├── SBIconIndexNode-Protocol.h ├── SBIconIndexNodeObserver-Protocol.h ├── SBIconListLayoutDelegate-Protocol.h ├── SBIconListModel.h ├── SBIconListModelObserver-Protocol.h ├── SBIconListPageControlDelegate-Protocol.h ├── SBIconListView.h ├── SBIconModel.h ├── SBIconModelApplicationDataSource-Protocol.h ├── SBIconModelDelegate-Protocol.h ├── SBIconModelStore-Protocol.h ├── SBIconObserver-Protocol.h ├── SBIconProgressViewDelegate-Protocol.h ├── SBIconScrollView.h ├── SBIconScrollViewDelegate-Protocol.h ├── SBIconView.h ├── SBIconViewDelegate-Protocol.h ├── SBIconViewMap.h ├── SBIconViewMapDelegate-Protocol.h ├── SBIconViewObserver-Protocol.h ├── SBInteractionPassThroughView.h ├── SBLSApplicationLifecycleObserver-Protocol.h ├── SBLeafIcon.h ├── SBLeafIconDataSource-Protocol.h ├── SBMediaController-IBK.h ├── SBMediaController.h ├── SBPlaceholderIcon.h ├── SBRootFolder.h ├── SBRootFolderController.h ├── SBRootFolderView.h ├── SBRootIconListView.h ├── SBScreenObserver-Protocol.h ├── SBSearchGestureObserver-Protocol.h ├── SBSystemLocalNotificationAlertDelegate-Protocol.h ├── SBUIBiometricEventMonitor.h ├── SBUIBiometricEventMonitorDelegate-Protocol.h ├── SBUIPasscodeLockViewBase.h ├── SBUIPasscodeLockViewDelegate-Protocol.h ├── SBUIPasscodeLockViewFactory.h ├── SBWindowContextHostManagerDelegate-Protocol.h ├── SBWindowContextManagerDelegate-Protocol.h ├── SpringBoard+Private.h ├── SpringBoard-Structs.h ├── SpringBoard.h ├── _SBUIBiometricKitInterface.h └── _UISettingsKeyObserver-Protocol.h ├── SpringBoardFoundation ├── SBFButton.h └── SpringBoardFoundation+Private.h ├── SpringBoardUI ├── SBUIAction.h ├── SBUIActionPlatterViewController.h ├── SBUIForceTouchGestureRecognizer.h ├── SBUIIconForceTouchController.h ├── SBUIIconForceTouchControllerDataSource-Protocol.h └── SpringBoardUI+Private.h ├── UIKit ├── UICollectionReusableView+Private.h ├── UICollectionView+Private.h ├── UICollectionViewCell+Private.h ├── UICollectionViewLayoutAttributes+Private.h ├── UIColor+Private.h ├── UIFont+Private.h ├── UIImage+Private.h ├── UIKit+Private.h ├── UINavigationController+Private.h ├── UITableViewCell+Private.h ├── UIView+Private.h ├── UIVisualEffect+Private.h ├── _UIBackdropView.h ├── _UIBackdropViewSettings.h ├── _UIFlowLayoutInfo.h ├── _UIFlowLayoutSection.h ├── _UIVisualEffectConfig.h ├── _UIVisualEffectLayerConfig.h ├── _UIVisualEffectTintLayerConfig.h └── _UIVisualEffectVibrantLayerConfig.h ├── UserNotificationsKit ├── NCNotificationContent.h ├── NCNotificationDispatcher.h ├── NCNotificationListViewControllerDestinationDelegate-Protocol.h ├── NCNotificationOptions.h └── NCNotificationRequest.h ├── UserNotificationsUIKit ├── NCAnimatableBlurringView.h ├── NCBlurring-Protocol.h ├── NCBulletinNotificationSource.h ├── NCNotificationChronologicalList.h ├── NCNotificationCombinedListViewController.h ├── NCNotificationListCell.h ├── NCNotificationListCollectionViewFlowLayout.h ├── NCNotificationListSection.h ├── NCNotificationListSectionHeaderView.h ├── NCNotificationPreviewInteractionManager.h ├── NCNotificationPriorityList.h ├── NCNotificationShortLookView.h ├── NCNotificationShortLookViewController.h ├── NCNotificationViewController.h ├── NCVibrantStyling.h ├── UserNotificationsUIKit+Private.h └── _NCNotificationViewControllerView.h ├── Weather ├── City.h ├── DayForecast.h ├── LocationUpdater.h ├── SynchronizedDefaultsDelegate-Protocol.h ├── TWCCityUpdater.h ├── WACurrentForecast.h ├── WAForecastModel.h ├── WATodayAutoupdatingLocationModel.h ├── WATodayModel.h ├── Weather+Private.h ├── Weather.h ├── WeatherCloudPersistenceDelegate-Protocol.h ├── WeatherCloudPreferences.h ├── WeatherIdentifierUpdater.h ├── WeatherImageLoader.h ├── WeatherLocationManager.h ├── WeatherPreferences.h └── WeatherPreferencesPersistence-Protocol.h ├── WeatherFoundation ├── WFAirQualityConditions.h ├── WFGeocodeRequest.h ├── WFLocation.h ├── WFTask.h ├── WFTaskIdentifier.h ├── WFTemperature.h ├── WFTemperatureUnitObserver-Protocol.h ├── WFWeatherConditions.h └── WeatherFoundation+Private.h ├── headers.h └── libMobileGestalt └── libMobileGestalt.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.7z 2 | *.dmg 3 | *.gz 4 | *.iso 5 | *.jar 6 | *.rar 7 | *.tar 8 | *.zip 9 | *.deb 10 | *.txt 11 | 12 | *.com 13 | *.class 14 | *.dll 15 | *.exe 16 | *.o 17 | *.so 18 | 19 | .DS_Store 20 | .DS_Store? 21 | ._* 22 | .Spotlight-V100 23 | .Trashes 24 | ehthumbs.db 25 | Thumbs.db 26 | obj/ 27 | _/ 28 | .theos/ 29 | .theos/last_package 30 | .theos/fakeroot 31 | .theos/last_package 32 | theos/ 33 | Distribution/ 34 | packages/ 35 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | os: osx 2 | language: objective-c 3 | sudo: false 4 | 5 | env: 6 | global: 7 | # $THEOS is absolutely needed for theos to even be found 8 | - THEOS=~/theos 9 | 10 | before_install: 11 | # update homebrew and install dependencies 12 | - brew update 13 | - brew install dpkg ldid 14 | 15 | # install theos 16 | - git clone --recursive git://github.com/theos/theos.git ~/theos 17 | 18 | script: 19 | # build! 20 | - make 21 | -------------------------------------------------------------------------------- /ITXAnimatedCornersView.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @implementation ITXAnimatedCornersView 5 | 6 | - (id)init { 7 | self = [super init]; 8 | return self; 9 | } 10 | - (BOOL)shouldForwardSelector:(SEL)aSelector { 11 | return [self.layer respondsToSelector:aSelector]; 12 | } 13 | 14 | - (id)forwardingTargetForSelector:(SEL)aSelector { 15 | return (![self respondsToSelector:aSelector] && [self shouldForwardSelector:aSelector]) ? self.layer : self; 16 | } 17 | 18 | - (BOOL)_shouldAnimatePropertyWithKey:(NSString *)key { 19 | //if ([key isEqual:@"_continuousCornerRadius"] || [key isEqual:@"_setContinuousCornerRadius:"]) return YES; 20 | return ([self shouldForwardSelector:NSSelectorFromString(key)] || [super _shouldAnimatePropertyWithKey:key]); 21 | } 22 | @end -------------------------------------------------------------------------------- /ITXHelper.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | static NSMutableDictionary *iconsToDict; 4 | 5 | @implementation ITXHelper 6 | + (CGFloat)seperatorHeight { 7 | return 0.5f; 8 | } 9 | + (CGFloat)standardInset { 10 | return 4.0f; 11 | } 12 | + (CGFloat)standardCornerRadius { 13 | return 13.0f; 14 | } 15 | 16 | + (UIImage *)iconForIdentifier:(NSString *)identifier { 17 | // HBLogInfo(@"Method #102"); 18 | if (!iconsToDict) return nil; 19 | else return [iconsToDict objectForKey:identifier]; 20 | } 21 | 22 | + (void)setIcon:(UIImage *)icon forIdentifier:(NSString *)identifier { 23 | // HBLogInfo(@"Method #103"); 24 | if (!iconsToDict) iconsToDict = [NSMutableDictionary new]; 25 | if (icon) { 26 | [iconsToDict setObject:icon forKey:identifier]; 27 | } 28 | } 29 | @end -------------------------------------------------------------------------------- /ITXNCGroupBackgroundConfiguration.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @implementation ITXNCGroupBackgroundConfiguration 4 | - (id)init { 5 | self = [super init]; 6 | if (self) { 7 | _topRadius = 0; 8 | _middleTopRadius = 0; 9 | _middleBottomRadius = 0; 10 | _bottomRadius = 0; 11 | 12 | _middleTopInset = 0; 13 | _middleBottomInset = 0; 14 | } 15 | return self; 16 | } 17 | 18 | + (ITXNCGroupBackgroundConfiguration *)defaultConfiguration { 19 | ITXNCGroupBackgroundConfiguration *config = [ITXNCGroupBackgroundConfiguration new]; 20 | CGFloat defaultCornerRadius = [ITXNCGroupBackgroundConfiguration defaultCornerRadiusValue]; 21 | config.topRadius = defaultCornerRadius; 22 | config.bottomRadius = defaultCornerRadius; 23 | return config; 24 | } 25 | 26 | + (CGFloat)defaultCornerRadiusValue { 27 | return 13.0f; 28 | } 29 | + (CGFloat)defaultInsetValue { 30 | return 5.0f; 31 | } 32 | @end -------------------------------------------------------------------------------- /Intelix.plist: -------------------------------------------------------------------------------- 1 | { Filter = { Bundles = ( "com.apple.springboard" ); }; } 2 | -------------------------------------------------------------------------------- /MTPlatterHeaderContentView.xm: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | %hook MTPlatterHeaderContentView 4 | %property (nonatomic, assign) BOOL isInRecentsSection; 5 | %property (nonatomic, assign) BOOL isInHistorySection; 6 | - (CGSize)sizeThatFits:(CGSize)size { 7 | if (self.isInHistorySection) return CGSizeZero; 8 | return %orig; 9 | } 10 | 11 | - (BOOL)isHidden { 12 | if (self.isInHistorySection) return YES; 13 | if (self.isInRecentsSection) return NO; 14 | return %orig; 15 | } 16 | 17 | - (void)setIsHidden:(BOOL)isHidden { 18 | %orig(self.isInHistorySection ? YES : isHidden); 19 | } 20 | 21 | - (CGFloat)alpha { 22 | if (self.isInHistorySection) return 0.0; 23 | return %orig; 24 | } 25 | 26 | - (void)setAlpha:(CGFloat)alpha { 27 | %orig(self.isInHistorySection ? 0.0 : alpha); 28 | } 29 | 30 | - (CGFloat)_headerHeightForWidth:(CGFloat)width { 31 | if (self.isInHistorySection) return 0.0; 32 | return %orig; 33 | } 34 | 35 | - (CGFloat)contentBaseline { 36 | if (self.isInHistorySection) return 0.0; 37 | return %orig; 38 | } 39 | 40 | - (void)layoutSubviews { 41 | %orig; 42 | if (self.isInHistorySection || self.isInRecentsSection) [self setHidden:[self isHidden]]; 43 | } 44 | %end -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | export ADDITIONAL_CFLAGS = -I$(THEOS_PROJECT_DIR)/headers 2 | 3 | ifeq ($(SIMULATOR),1) 4 | export TARGET = simulator:latest:7.0 5 | else 6 | export TARGET = iphone:latest:7.0 7 | endif 8 | 9 | ARCHS = arm64 10 | 11 | 12 | include $(THEOS)/makefiles/common.mk 13 | 14 | TWEAK_NAME = Intelix 15 | Intelix_CFLAGS = -I$(THEOS_PROJECT_DIR)/headers 16 | Intelix_FILES = $(wildcard *.m) $(wildcard *.xm) 17 | NCNotificationCombinedListViewController.xm_CFLAGS += -fobjc-arc 18 | ITXNCGroupBackgroundView.m_CFLAGS += -fobjc-arc 19 | NCNotificationChronologicalList.xm_CFLAGS += -fobjc-arc 20 | ITXNotificationsSection.m_CFLAGS += -fobjc-arc 21 | NCNotificationListCollectionViewFlowLayout.xm_CFLAGS += -fobjc-arc 22 | 23 | include $(THEOS_MAKE_PATH)/tweak.mk 24 | 25 | after-all:: 26 | @echo Signing Binary 27 | @ldid -S $(THEOS_OBJ_DIR)/$(TWEAK_NAME).dylib 28 | @echo Copying to Distribution Folder 29 | @mkdir -p ./Distribution 30 | @cp ./$(TWEAK_NAME).plist ./Distribution/ 31 | @cp $(THEOS_OBJ_DIR)/$(TWEAK_NAME).dylib ./Distribution/ 32 | 33 | after-install:: 34 | install.exec "killall -9 SpringBoard" 35 | -------------------------------------------------------------------------------- /NCNotificationListSection.xm: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | %hook NCNotificationListSection 4 | %property (nonatomic, retain) NSString *otherSectionIdentifier; 5 | %property (nonatomic, retain) UIImage *iconImage; 6 | - (void)whatTheHell { // Need this for a theos bug 7 | return; 8 | } 9 | %end -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Intelix 2 | Grouped Notifications on iOS 11 3 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- 1 | Package: com.ioscreatix.intelixbeta 2 | Name: Intelix (Beta) 3 | Depends: mobilesubstrate 4 | Version: 1.3.3 5 | Architecture: iphoneos-arm 6 | Description: Grouped Notifications on iOS 11 (Beta) 7 | Maintainer: iOS Creatix 8 | Author: iOS Creatix 9 | Section: Tweaks 10 | Replaces: com.ioscreatix.intelix -------------------------------------------------------------------------------- /headers/AVFoundation/AVFlashlight.h: -------------------------------------------------------------------------------- 1 | @class AVFlashlightInternal; 2 | 3 | @interface AVFlashlight : NSObject { 4 | 5 | AVFlashlightInternal* _internal; 6 | 7 | } 8 | 9 | @property (getter=isAvailable,nonatomic,readonly) BOOL available; 10 | @property (getter=isOverheated,nonatomic,readonly) BOOL overheated; 11 | @property (nonatomic,readonly) float flashlightLevel; 12 | +(void)initialize; 13 | +(BOOL)hasFlashlight; 14 | -(id)init; 15 | -(void)dealloc; 16 | -(void)_handleNotification:(id)arg1 payload:(id)arg2 ; 17 | -(float)flashlightLevel; 18 | -(void)_setupFlashlight; 19 | -(void)_teardownFlashlight; 20 | -(BOOL)isOverheated; 21 | -(BOOL)turnPowerOnWithError:(id*)arg1 ; 22 | -(void)turnPowerOff; 23 | -(BOOL)setFlashlightLevel:(float)arg1 withError:(id*)arg2 ; 24 | -(BOOL)isAvailable; 25 | @end -------------------------------------------------------------------------------- /headers/AVFoundation/AVFoundation+Private.h: -------------------------------------------------------------------------------- 1 | #import "AVFlashlight.h" -------------------------------------------------------------------------------- /headers/Acapella/Acapella.h: -------------------------------------------------------------------------------- 1 | #import "SWAcapellaPrefs.h" -------------------------------------------------------------------------------- /headers/Acapella/SWAcapellaPrefs.h: -------------------------------------------------------------------------------- 1 | @interface SWAcapellaPrefs : NSObject 2 | - (id)initWithKeyPrefix:(NSString *)prefix; 3 | - (BOOL)enabled; 4 | @end -------------------------------------------------------------------------------- /headers/Activator/Activator+Private.h: -------------------------------------------------------------------------------- 1 | #import "LAActivator.h" 2 | #import "LAActivatorVersion.h" 3 | #import "LAEvent.h" 4 | #import "LAEventDataSource.h" 5 | #import "LAListener.h" 6 | #import "LASettingsViewController.h" 7 | #import "UIImageView+Activator.h" 8 | -------------------------------------------------------------------------------- /headers/Activator/LAActivatorVersion.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | typedef enum { 4 | LAActivatorVersion_1_3 = 1030000, 5 | LAActivatorVersion_1_4 = 1040000, 6 | LAActivatorVersion_1_5 = 1050000, 7 | LAActivatorVersion_1_5_1 = 1050100, 8 | LAActivatorVersion_1_5_2 = 1050200, 9 | LAActivatorVersion_1_5_3 = 1050300, 10 | LAActivatorVersion_1_5_4 = 1050400, 11 | LAActivatorVersion_1_5_5 = 1050500, 12 | LAActivatorVersion_1_5_7 = 1050700, 13 | LAActivatorVersion_1_5_8 = 1050800, 14 | LAActivatorVersion_1_5_9 = 1050900, 15 | LAActivatorVersion_1_6 = 1060000, 16 | LAActivatorVersion_1_6_1 = 1060100, 17 | LAActivatorVersion_1_6_2 = 1060200, 18 | LAActivatorVersion_1_7 = 1070000, 19 | LAActivatorVersion_1_7_1 = 1070100, 20 | LAActivatorVersion_1_7_2 = 1070200, 21 | LAActivatorVersion_1_7_3 = 1070300, 22 | LAActivatorVersion_1_7_4 = 1070400, 23 | LAActivatorVersion_1_8_0 = 1070500, 24 | LAActivatorVersion_1_8_1 = 1080100, 25 | LAActivatorVersion_1_8_2 = 1080200, 26 | LAActivatorVersion_1_9_0 = 1090000, 27 | } LAActivatorVersion; 28 | 29 | #ifndef LA_PRIVATE_IVARS 30 | #define LA_PRIVATE_IVARS(class) 31 | #endif 32 | -------------------------------------------------------------------------------- /headers/Activator/LAEvent.h: -------------------------------------------------------------------------------- 1 | #import "LAActivatorVersion.h" 2 | 3 | // Events represent an assignable gesture that has or could occurred 4 | 5 | @interface LAEvent : NSObject LA_PRIVATE_IVARS(LAEvent) 6 | 7 | + (id)eventWithName:(NSString *)name; 8 | + (id)eventWithName:(NSString *)name mode:(NSString *)mode; 9 | - (id)initWithName:(NSString *)name; 10 | - (id)initWithName:(NSString *)name mode:(NSString *)mode; 11 | 12 | @property (nonatomic, readonly) NSString *name; 13 | @property (nonatomic, readonly) NSString *mode; 14 | @property (nonatomic, getter=isHandled) BOOL handled; 15 | @property (nonatomic, copy) NSDictionary *userInfo; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /headers/Activator/LAEventDataSource.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | // Event Data Sources represent the metadata associated with specific events 4 | // A data source is constructed automatically for each event in /Library/Activator/Events 5 | 6 | @protocol LAEventDataSource 7 | 8 | @required 9 | - (NSString *)localizedTitleForEventName:(NSString *)eventName; 10 | - (NSString *)localizedGroupForEventName:(NSString *)eventName; 11 | - (NSString *)localizedDescriptionForEventName:(NSString *)eventName; 12 | 13 | @optional 14 | - (BOOL)eventWithNameIsHidden:(NSString *)eventName; 15 | - (BOOL)eventWithNameRequiresAssignment:(NSString *)eventName; 16 | - (BOOL)eventWithName:(NSString *)eventName isCompatibleWithMode:(NSString *)eventMode; 17 | - (BOOL)eventWithNameSupportsUnlockingDeviceToSend:(NSString *)eventName; 18 | 19 | - (BOOL)eventWithNameSupportsRemoval:(NSString *)eventName; 20 | - (void)removeEventWithName:(NSString *)eventName; 21 | - (NSString *)configurationViewControllerClassNameForEventWithName:(NSString *)eventName bundle:(NSBundle **)bundle; // LAEventConfigurationViewController 22 | - (id)configurationForEventWithName:(NSString *)eventName; 23 | - (void)eventWithName:(NSString *)eventName didSaveNewConfiguration:(id)configuration; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /headers/Activator/LASettingsViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | // Settings View Controllers represent view controllers that can be displayed the Activator app, Activator's settings pane, and possibly in other Activator-integrated apps 4 | 5 | #ifndef LA_SETTINGS_CONTROLLER 6 | #define LA_SETTINGS_CONTROLLER(superclass) : superclass 7 | #endif 8 | 9 | @interface LASettingsViewController LA_SETTINGS_CONTROLLER(UIViewController) 10 | + (id)controller; 11 | - (id)init; 12 | @end 13 | 14 | @interface LARootSettingsController LA_SETTINGS_CONTROLLER(LASettingsViewController) 15 | @end 16 | 17 | @interface LAModeSettingsController LA_SETTINGS_CONTROLLER(LASettingsViewController) 18 | - (id)initWithMode:(NSString *)mode; 19 | @end 20 | 21 | @interface LAEventSettingsController LA_SETTINGS_CONTROLLER(LASettingsViewController) 22 | - (id)initWithModes:(NSArray *)modes eventName:(NSString *)eventName; 23 | @end 24 | 25 | @interface LAListenerSettingsViewController LA_SETTINGS_CONTROLLER(LASettingsViewController) 26 | @property (nonatomic, copy) NSString *listenerName; 27 | @end 28 | 29 | @interface LAEventConfigurationViewController LA_SETTINGS_CONTROLLER(LASettingsViewController) 30 | - (id)initWithEventName:(NSString *)eventName; 31 | @property (nonatomic, readonly, copy) NSString *eventName; 32 | @property (nonatomic, assign) BOOL showsSaveButton; 33 | - (BOOL)performSave; 34 | @end 35 | 36 | @interface LAListenerConfigurationViewController LA_SETTINGS_CONTROLLER(LASettingsViewController) 37 | - (id)initWithListenerName:(NSString *)listenerName; 38 | @property (nonatomic, readonly, copy) NSString *listenerName; 39 | @property (nonatomic, assign) BOOL showsSaveButton; 40 | - (BOOL)performSave; 41 | @end 42 | -------------------------------------------------------------------------------- /headers/Activator/UIImageView+Activator.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface UIImageView (Activator) 4 | @property (nonatomic, assign) BOOL activatorListenerImageIsThreaded; 5 | @property (nonatomic, copy) NSString *activatorListenerName; 6 | @end 7 | -------------------------------------------------------------------------------- /headers/Apex/STKGroupView.h: -------------------------------------------------------------------------------- 1 | @interface STKGroup : NSObject 2 | @property (nonatomic, assign) BOOL empty; 3 | @end 4 | 5 | 6 | @interface STKGroupView : UIView 7 | @property (nonatomic, assign) BOOL isOpen; 8 | @property (nonatomic, assign) BOOL isAnimating; 9 | @property (nonatomic, retain) STKGroup *group; 10 | @end -------------------------------------------------------------------------------- /headers/AppList/ALApplicationList.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | enum { 4 | ALApplicationIconSizeSmall = 29, 5 | ALApplicationIconSizeLarge = 59 6 | }; 7 | typedef NSUInteger ALApplicationIconSize; 8 | 9 | @class NSMutableDictionary, NSDictionary, NSPredicate, ALApplicationList; 10 | 11 | @interface ALApplicationList : NSObject { 12 | @private 13 | NSMutableDictionary *cachedIcons; 14 | } 15 | 16 | + (ALApplicationList *)sharedApplicationList; 17 | 18 | @property (nonatomic, readonly) NSDictionary *applications; 19 | - (NSDictionary *)applicationsFilteredUsingPredicate:(NSPredicate *)predicate; 20 | - (id)valueForKeyPath:(NSString *)keyPath forDisplayIdentifier:(NSString *)displayIdentifier; 21 | - (id)valueForKey:(NSString *)keyPath forDisplayIdentifier:(NSString *)displayIdentifier; 22 | - (CGImageRef)copyIconOfSize:(ALApplicationIconSize)iconSize forDisplayIdentifier:(NSString *)displayIdentifier; 23 | - (UIImage *)iconOfSize:(ALApplicationIconSize)iconSize forDisplayIdentifier:(NSString *)displayIdentifier; 24 | - (BOOL)hasCachedIconOfSize:(ALApplicationIconSize)iconSize forDisplayIdentifier:(NSString *)displayIdentifier; 25 | 26 | @end -------------------------------------------------------------------------------- /headers/AppList/AppList.h: -------------------------------------------------------------------------------- 1 | #import "ALApplicationList.h" -------------------------------------------------------------------------------- /headers/BiometricKit/BiometricKit-Object.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface BiometricKit : NSObject 5 | + (id)manager; 6 | @end -------------------------------------------------------------------------------- /headers/BiometricKit/BiometricKit.h: -------------------------------------------------------------------------------- 1 | #import "BiometricKit-Object.h" -------------------------------------------------------------------------------- /headers/BulletinBoard/BBAttachments.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2b. 3 | * 4 | * Source: /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 5 | */ 6 | 7 | #import "BulletinBoard-Structs.h" 8 | 9 | @class NSMutableDictionary, NSCountedSet; 10 | 11 | @interface BBAttachments : NSObject { 12 | @private 13 | int primaryType; // 4 = 0x4 14 | NSCountedSet *_additionalAttachments; // 8 = 0x8 15 | NSMutableDictionary *_clientSideComposedImageInfos; // 12 = 0xc 16 | } 17 | @property(retain, nonatomic) NSMutableDictionary *clientSideComposedImageInfos; // G=0x16021; S=0x16031; @synthesize=_clientSideComposedImageInfos 18 | @property(retain, nonatomic) NSCountedSet *additionalAttachments; // G=0x15fed; S=0x15ffd; @synthesize=_additionalAttachments 19 | @property(assign, nonatomic) int primaryType; // G=0x15fcd; S=0x15fdd; @synthesize 20 | // declared property setter: - (void)setClientSideComposedImageInfos:(id)infos; // 0x16031 21 | // declared property getter: - (id)clientSideComposedImageInfos; // 0x16021 22 | // declared property setter: - (void)setAdditionalAttachments:(id)attachments; // 0x15ffd 23 | // declared property getter: - (id)additionalAttachments; // 0x15fed 24 | // declared property setter: - (void)setPrimaryType:(int)type; // 0x15fdd 25 | // declared property getter: - (int)primaryType; // 0x15fcd 26 | - (void)encodeWithCoder:(id)coder; // 0x15f61 27 | - (id)initWithCoder:(id)coder; // 0x15ead 28 | - (id)copyWithZone:(NSZone *)zone; // 0x15dfd 29 | - (BOOL)isEqualToAttachments:(id)attachments; // 0x15d91 30 | - (unsigned)numberOfAdditionalAttachmentsOfType:(int)type; // 0x15d49 31 | - (unsigned)numberOfAdditionalAttachments; // 0x15d11 32 | - (void)addAttachmentOfType:(int)type; // 0x15c85 33 | - (void)dealloc; // 0x15c25 34 | @end 35 | -------------------------------------------------------------------------------- /headers/BulletinBoard/BBObserverDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol BBObserverDelegate 10 | 11 | @optional 12 | - (struct CGSize)observer:(id)arg1 composedAttachmentSizeForType:(int)arg2 thumbnailWidth:(float)arg3 height:(float)arg4 key:(id)arg5; 13 | - (id)observer:(id)arg1 composedAttachmentImageForType:(int)arg2 thumbnailData:(id)arg3 key:(id)arg4; 14 | - (id)observer:(id)arg1 multipleThumbnailSizeConstraintsForAttachmentType:(int)arg2; 15 | - (id)observer:(id)arg1 thumbnailSizeConstraintsForAttachmentType:(int)arg2; 16 | - (BOOL)observerShouldFetchAttachmentSizeBeforeBulletinDelivery:(id)arg1; 17 | - (BOOL)observerShouldFetchAttachmentImageBeforeBulletinDelivery:(id)arg1; 18 | - (void)observer:(id)arg1 noteAlertBehaviorOverridesChanged:(unsigned int)arg2; 19 | - (void)observer:(id)arg1 purgeReferencesToBulletinID:(id)arg2; 20 | - (void)observer:(id)arg1 noteSectionParametersChanged:(id)arg2; 21 | - (void)observer:(id)arg1 updateSectionInfo:(id)arg2; 22 | - (void)observer:(id)arg1 updateSectionOrder:(id)arg2; 23 | - (void)observer:(id)arg1 updateSectionOrderRule:(unsigned int)arg2; 24 | - (void)observer:(id)arg1 removeBulletin:(id)arg2; 25 | - (void)observer:(id)arg1 modifyBulletin:(id)arg2; 26 | - (void)observer:(id)arg1 addBulletin:(id)arg2 forFeed:(unsigned int)arg3; 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /headers/BulletinBoard/BulletinBoard-Structs.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2b. 3 | * 4 | * Source: /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 5 | */ 6 | 7 | // iOSOpenDev: wrapped with define check (since occurs in other dumped files) 8 | #ifndef __dispatch_source_s__ 9 | #define __dispatch_source_s__ 1 10 | typedef struct dispatch_source_s dispatch_source_s; 11 | #endif 12 | 13 | // iOSOpenDev: wrapped with define check (since occurs in other dumped files) 14 | #ifndef __xpc_connection_s__ 15 | #define __xpc_connection_s__ 1 16 | typedef struct _xpc_connection_s xpc_connection_s; 17 | #endif 18 | 19 | 20 | -------------------------------------------------------------------------------- /headers/BulletinBoard/BulletinBoard.h: -------------------------------------------------------------------------------- 1 | #import "BBAttachments.h" 2 | #import "BBBulletin.h" 3 | #import "BBObserver.h" 4 | #import "BBObserverDelegate-Protocol.h" 5 | #import "BBServer.h" 6 | #import "BulletinBoard-Structs.h" 7 | #import "XPCProxyTarget.h" -------------------------------------------------------------------------------- /headers/BulletinBoard/XPCProxyTarget.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2b. 3 | * 4 | * Source: /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 5 | */ 6 | 7 | 8 | #import 9 | 10 | @protocol XPCProxyTarget 11 | - (id)proxy:(id)proxy detailedSignatureForSelector:(SEL)selector; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/ColorBanners2/CBRColoringInfo.h: -------------------------------------------------------------------------------- 1 | @interface CBRColoringInfo : NSObject 2 | @property (nonatomic, retain) UIColor *gradientColor; 3 | @property (nonatomic, retain) UIColor *contrastColor; 4 | @property (nonatomic, retain) UIColor *color; 5 | @property (nonatomic, retain) UIColor *contrastColorForLookType; 6 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIAirStuffSectionController.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "CCUISystemControlsPageViewController.h" 3 | 4 | @interface CCUIAirStuffSectionController : CCUIControlCenterSectionViewController 5 | @property (nonatomic, retain) CCUIButtonLikeSectionSplitView *view; 6 | @property (assign, nonatomic) CCUISystemControlsPageViewController *delegate; 7 | -(void)_updateForAirDropStateChange; 8 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIBrightnessContentView.h: -------------------------------------------------------------------------------- 1 | #import "CCUIControlCenterSectionView.h" 2 | 3 | @interface CCUIBrightnessContentView : CCUIControlCenterSectionView { 4 | 5 | BOOL _usesCompactHeight; 6 | 7 | } 8 | 9 | @property (assign,nonatomic) BOOL usesCompactHeight; //@synthesize usesCompactHeight=_usesCompactHeight - In the implementation block 10 | -(UIEdgeInsets)layoutMargins; 11 | -(CGSize)intrinsicContentSize; 12 | -(void)setUsesCompactHeight:(BOOL)arg1 ; 13 | -(BOOL)usesCompactHeight; 14 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIBrightnessSectionController.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "CCUIControlCenterSectionViewController.h" 3 | #import "CCUIBrightnessContentView.h" 4 | 5 | @interface CCUIBrightnessSectionController : CCUIControlCenterSectionViewController { 6 | 7 | CCUIControlCenterSlider* _slider; 8 | BOOL _usesCompactHeight; 9 | 10 | } 11 | @property (assign,nonatomic) BOOL usesCompactHeight; //@synthesize usesCompactHeight=_usesCompactHeight - In the implementation block 12 | @property (nonatomic, retain) CCUIBrightnessContentView *view; 13 | +(Class)viewClass; 14 | -(BOOL)enabled; 15 | -(void)_setBacklightLevel:(CGFloat)arg1 ; 16 | -(float)_backlightLevel; 17 | -(void)viewWillAppear:(BOOL)arg1 ; 18 | -(void)viewDidDisappear:(BOOL)arg1 ; 19 | -(void)viewDidLayoutSubviews; 20 | -(void)viewDidLoad; 21 | -(void)_sliderValueDidChange:(id)arg1 ; 22 | -(id)sectionIdentifier; 23 | -(void)setUsesCompactHeight:(BOOL)arg1 ; 24 | -(BOOL)usesCompactHeight; 25 | -(id)_brightnessContentView; 26 | -(void)_sliderDidBeginTracking:(id)arg1 ; 27 | -(void)_sliderDidEndTracking:(id)arg1 ; 28 | -(void)_noteScreenBrightnessDidChange:(id)arg1 ; 29 | -(CGFloat)_yOffsetFromCenterForSlider; 30 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIButtonControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol CCUIButtonControllerDelegate 2 | @required 3 | -(BOOL)buttonControllerShouldUseSmallButtons:(id)arg1; 4 | -(void)buttonController:(id)arg1 publishStatusUpdate:(id)arg2; 5 | -(id)controlCenterSystemAgent; 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIButtonLikeSectionSplitView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:54:21 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/ControlCenterUI.framework/ControlCenterUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import "CCUIControlCenterSectionView.h" 10 | #import 11 | 12 | @interface CCUIButtonLikeSectionSplitView : CCUIControlCenterSectionView { 13 | 14 | CGFloat _separatorWidth; 15 | NSUInteger _mode; 16 | CCUIControlCenterPushButton* _leftSection; 17 | CCUIControlCenterPushButton* _rightSection; 18 | 19 | } 20 | 21 | @property (assign,nonatomic) NSUInteger mode; //@synthesize mode=_mode - In the implementation block 22 | @property (nonatomic,retain) CCUIControlCenterPushButton * leftSection; //@synthesize leftSection=_leftSection - In the implementation block 23 | @property (nonatomic,retain) CCUIControlCenterPushButton * rightSection; //@synthesize rightSection=_rightSection - In the implementation block 24 | @property (nonatomic,retain) CCUIControlCenterPushButton * middleSection; 25 | -(id)initWithFrame:(CGRect)arg1 ; 26 | -(void)layoutSubviews; 27 | -(void)dealloc; 28 | -(CGSize)intrinsicContentSize; 29 | -(void)setMode:(NSUInteger)arg1 ; 30 | -(NSUInteger)mode; 31 | -(void)setLeftSection:(CCUIControlCenterPushButton *)arg1 ; 32 | -(void)setRightSection:(CCUIControlCenterPushButton *)arg1 ; 33 | -(CCUIControlCenterPushButton *)leftSection; 34 | -(CCUIControlCenterPushButton *)rightSection; 35 | -(void)_updateLabelParameters; 36 | -(void)_updateButtonsCorners; 37 | -(void)_relayout; 38 | -(UIEdgeInsets)_landscapeInsetsForSection; 39 | -(CGRect)_frameForSectionSlot:(int)arg1 ; 40 | -(CCUIControlCenterPushButton *)_viewForSectionSlot:(int)arg1 ; 41 | - (void)test3Buttons; 42 | @end 43 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIButtonModuleDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol CCUIButtonModuleDelegate 2 | @required 3 | -(void)buttonModule:(id)arg1 willExecuteSecondaryActionWithCompletionHandler:(/*^block*/id)arg2; 4 | -(void)buttonModuleStateDidChange:(id)arg1; 5 | -(void)buttonModulePropertiesDidChange:(id)arg1; 6 | -(id)controlCenterSystemAgent; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIButtonStack.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface CCUIButtonStack : CCUIControlCenterSectionView 5 | { 6 | NSMutableArray *_buttons; 7 | UIStackView *_stackView; 8 | NSLayoutConstraint *_topMargin; 9 | NSLayoutConstraint *_bottomMargin; 10 | NSLayoutConstraint *_leadingMargin; 11 | NSLayoutConstraint *_trailingMargin; 12 | NSUInteger _buttonStretchThreshold; 13 | id _layoutDelegate; 14 | } 15 | 16 | @property(nonatomic) id layoutDelegate; // @synthesize layoutDelegate=_layoutDelegate; 17 | @property(nonatomic) NSUInteger buttonStretchThreshold; // @synthesize buttonStretchThreshold=_buttonStretchThreshold; 18 | - (void)resortButtons; 19 | @property(copy, nonatomic) NSArray *buttons; 20 | - (void)removeButton:(id)arg1; 21 | - (void)addButton:(id)arg1; 22 | @property(nonatomic) UIEdgeInsets marginInsets; // @dynamic marginInsets; 23 | - (void)_updateStretching; 24 | @property(nonatomic) NSInteger axis; // @dynamic axis; 25 | @property(nonatomic) CGFloat interButtonPadding; // @dynamic interButtonPadding; 26 | - (void)layoutSubviews; 27 | - (id)initWithFrame:(CGRect)arg1; 28 | 29 | @end 30 | 31 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIButtonStackLayoutDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | #import 8 | @class CCUIButtonStack; 9 | 10 | @protocol CCUIButtonStackLayoutDelegate 11 | - (void)buttonStack:(CCUIButtonStack *)arg1 didLayoutWithSpacing:(CGFloat)arg2; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIButtonStackPagingViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol CCUIButtonStackPagingViewDelegate 2 | @required 3 | -(void)beginSuppressingPunchOutMaskCachingForReason:(id)arg1; 4 | -(void)endSuppressingPunchOutMaskCachingForReason:(id)arg1; 5 | - (BOOL)isKindOfClass:(Class)arg1; 6 | @end 7 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterButtonDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | @class CCUIControlCenterButton; 8 | #import 9 | 10 | @protocol CCUIControlCenterButtonDelegate 11 | - (id )controlCenterSystemAgent; 12 | - (BOOL)isInternal; 13 | - (void)buttonTapped:(CCUIControlCenterButton *)arg1; 14 | 15 | @optional 16 | - (void)button:(CCUIControlCenterButton *)arg1 didChangeState:(NSInteger)arg2; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterButtonSectionSettings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | 8 | @interface CCUIControlCenterButtonSectionSettings : NSObject 9 | { 10 | } 11 | 12 | + (id)supportedButtonModuleClasses; 13 | + (id)buttonModuleClasses; 14 | + (id)settingsControllerModule; 15 | - (id)buttonSortKeyForIdentifier:(id)arg1; 16 | - (BOOL)buttonEnabledForIdentifier:(id)arg1; 17 | - (void)setDefaultValues; 18 | - (Class)buttonSettingsClass; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | 8 | @protocol CCUIControlCenterObserver 9 | - (void)controlCenterDidFinishTransition; 10 | - (void)controlCenterWillBeginTransition; 11 | - (void)controlCenterDidDismiss; 12 | - (void)controlCenterWillPresent; 13 | 14 | @optional 15 | - (void)controlCenterWillFinishTransitionOpen:(BOOL)arg1 withDuration:(CGFloat)arg2; 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterPageContainerViewControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol CCUIControlCenterPageContainerViewControllerDelegate 2 | @required 3 | -(NSInteger)layoutStyle; 4 | -(void)containerViewControllerWantsDismissal:(id)arg1; 5 | -(void)containerViewController:(id)arg1 backdropViewDidUpdate:(id)arg2; 6 | -(void)visibilityPreferenceChangedForContainerViewController:(id)arg1; 7 | -(id)controlCenterSystemAgent; 8 | // - (CGFloat)contentHeightForContainerView:(CCUIConterPageContainerViewController) 9 | - (CGFloat)_scrollviewContentMaxHeight; 10 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterPageContentProviding-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | #import 8 | #import 9 | 10 | @protocol CCUIControlCenterPageContentViewControllerDelegate; 11 | 12 | @protocol CCUIControlCenterPageContentProviding 13 | @property(nonatomic) id delegate; 14 | 15 | @optional 16 | @property(readonly, nonatomic) BOOL wantsVisible; 17 | @property(readonly, nonatomic) UIEdgeInsets contentInsets; 18 | - (void)controlCenterDidScrollToThisPage:(BOOL)arg1; 19 | - (BOOL)dismissModalFullScreenIfNeeded; 20 | - (CGFloat)requestedPageHeightForHeight:(CGFloat)height; 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterPageContentViewControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | #import 8 | #import 9 | 10 | @protocol CCUIControlCenterPageContentProviding; 11 | 12 | @protocol CCUIControlCenterPageContentViewControllerDelegate 13 | - (void)endSuppressingPunchOutMaskCachingForReason:(NSString *)arg1; 14 | - (void)beginSuppressingPunchOutMaskCachingForReason:(NSString *)arg1; 15 | - (void)visibilityPreferenceChangedForContentViewController:(UIViewController *)arg1; 16 | - (NSInteger)layoutStyle; 17 | - (id )controlCenterSystemAgent; 18 | - (void)contentViewControllerWantsDismissal:(UIViewController *)arg1; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterPagePlatterView.h: -------------------------------------------------------------------------------- 1 | #import "CCUIControlCenterPagePlatterViewDelegate-Protocol.h" 2 | 3 | @class NCMaterialView, CCUIControlCenterPageContainerViewController; 4 | 5 | @interface CCUIControlCenterPagePlatterView : UIView { 6 | 7 | NCMaterialView* _baseMaterialView; 8 | UIImageView* _whiteLayerView; 9 | UIView* _contentView; 10 | NSSet* _renderedPunchOutMasks; 11 | NSLayoutConstraint* _topMargin; 12 | NSLayoutConstraint* _bottomMargin; 13 | NSLayoutConstraint* _leadingMargin; 14 | NSLayoutConstraint* _trailingMargin; 15 | 16 | } 17 | 18 | @property (nonatomic,retain) UIView * contentView; //@synthesize contentView=_contentView - In the implementation block 19 | @property (assign,nonatomic) UIEdgeInsets marginInsets; 20 | @property (nonatomic, retain) CCUIControlCenterPageContainerViewController *delegate; 21 | -(void)setContentView:(UIView *)arg1 ; 22 | -(void)layoutSubviews; 23 | -(UIView *)contentView; 24 | -(void)dealloc; 25 | -(id)initWithDelegate:(id)arg1 ; 26 | -(UIEdgeInsets)marginInsets; 27 | -(void)setMarginInsets:(UIEdgeInsets)arg1 ; 28 | -(void)_reduceTransparencyStatusDidChange; 29 | -(void)_rerenderPunchThroughMaskIfNecessary; 30 | -(void)_recursivelyVisitSubviewsOfView:(id)arg1 forPunchedThroughView:(id)arg2 collectingMasksIn:(id)arg3 ; 31 | -(BOOL)_searchForUpdatedMask; 32 | -(BOOL)_shouldSuppressCachingPunchOutMaskImage; 33 | -(id)_renderAlphaOnlyPunchThroughMaskForPlatterSize:(CGSize)arg1 ; 34 | -(id)_systemAgent; 35 | // -(id)ccuiPunchOutMaskedContainer; 36 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterPagePlatterViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol CCUIControlCenterPagePlatterViewDelegate 2 | @property (nonatomic,readonly) BOOL shouldSuppressPunchOutMaskCaching; 3 | @required 4 | -(BOOL)shouldSuppressPunchOutMaskCaching; 5 | -(id)controlCenterSystemAgent; 6 | 7 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterPushButton.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface CCUIControlCenterPushButton : CCUIControlCenterButton 4 | { 5 | NSString *_identifier; 6 | NSNumber *_sortKey; 7 | } 8 | 9 | @property(copy, nonatomic) NSNumber *sortKey; // @synthesize sortKey=_sortKey; 10 | @property(copy, nonatomic) NSString *identifier; // @synthesize identifier=_identifier; 11 | - (id)initWithFrame:(CGRect)arg1; 12 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterPushButtonSettings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | @interface CCUIControlCenterPushButtonSettings : NSObject 8 | { 9 | BOOL _enabled; 10 | NSString *_displayName; 11 | NSString *_identifier; 12 | } 13 | 14 | + (id)createWithSettingClass:(Class)arg1; 15 | + (id)settingsControllerModule; 16 | @property(retain, nonatomic) NSString *identifier; // @synthesize identifier=_identifier; 17 | @property(retain, nonatomic) NSString *displayName; // @synthesize displayName=_displayName; 18 | @property(nonatomic) BOOL enabled; // @synthesize enabled=_enabled; 19 | - (void)setDefaultValues; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterRootView.h: -------------------------------------------------------------------------------- 1 | @interface CCUIControlCenterRootView : UIView { 2 | 3 | UIView* _backgroundView; 4 | 5 | } 6 | 7 | @property (nonatomic,retain) UIView * backgroundView; //@synthesize backgroundView=_backgroundView - In the implementation block 8 | -(void)layoutSubviews; 9 | -(void)setBackgroundView:(UIView *)arg1 ; 10 | -(UIView *)backgroundView; 11 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterSectionView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:54:21 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/ControlCenterUI.framework/ControlCenterUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import 10 | 11 | @interface CCUIControlCenterSectionView : UIView { 12 | 13 | NSInteger _layoutStyle; 14 | 15 | } 16 | 17 | @property (assign,nonatomic) NSInteger layoutStyle; //@synthesize layoutStyle=_layoutStyle - In the implementation block 18 | -(BOOL)_shouldAnimatePropertyWithKey:(id)arg1 ; 19 | -(NSInteger)layoutStyle; 20 | -(void)setLayoutStyle:(NSInteger)arg1 ; 21 | @end 22 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterSectionViewController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:54:21 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/ControlCenterUI.framework/ControlCenterUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import 10 | #import 11 | #import 12 | 13 | @interface CCUIControlCenterSectionViewController : UIViewController { 14 | 15 | id _delegate; 16 | 17 | } 18 | 19 | @property (assign,nonatomic) id delegate; //@synthesize delegate=_delegate - In the implementation block 20 | @property (nonatomic,copy,readonly) NSString * sectionIdentifier; 21 | @property (readonly) NSUInteger hash; 22 | @property (readonly) Class superclass; 23 | @property (copy,readonly) NSString * description; 24 | @property (copy,readonly) NSString * debugDescription; 25 | +(Class)viewClass; 26 | -(BOOL)enabled; 27 | -(void)setDelegate:(id)arg1 ; 28 | -(id)delegate; 29 | -(id)view; 30 | -(void)loadView; 31 | -(void)viewWillAppear:(BOOL)arg1 ; 32 | -(void)viewDidLoad; 33 | -(NSString *)sectionIdentifier; 34 | -(id)controlCenterSystemAgent; 35 | -(BOOL)dismissModalFullScreenIfNeeded; 36 | -(void)controlCenterWillPresent; 37 | -(void)controlCenterDidDismiss; 38 | -(void)controlCenterWillBeginTransition; 39 | -(void)controlCenterDidFinishTransition; 40 | @end 41 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterSectionViewControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:54:20 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/ControlCenterUI.framework/ControlCenterUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import "CCUIControlCenterPageContentViewControllerDelegate-Protocol.h" 10 | @protocol CCUIControlCenterSectionViewControllerDelegate 11 | @required 12 | -(NSInteger)layoutStyle; 13 | -(void)noteSectionEnabledStateDidChange:(id)arg1; 14 | -(void)section:(id)arg1 publishStatusUpdate:(id)arg2; 15 | -(void)sectionWantsControlCenterDismissal:(id)arg1; 16 | -(id)controlCenterSystemAgent; 17 | -(void)beginSuppressingPunchOutMaskCachingForReason:(id)arg1; 18 | -(void)endSuppressingPunchOutMaskCachingForReason:(id)arg1; 19 | - (id)delegate; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterSettingsSectionSettings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | #import 8 | 9 | @interface CCUIControlCenterSettingsSectionSettings : CCUIControlCenterButtonSectionSettings 10 | { 11 | } 12 | 13 | + (id)supportedButtonModuleClasses; 14 | + (id)buttonModuleClasses; 15 | - (Class)buttonSettingsClass; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterShortcutButtonSettings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | #import 8 | 9 | @interface CCUIControlCenterShortcutButtonSettings : CCUIControlCenterPushButtonSettings 10 | { 11 | } 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterShortcutSectionSettings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | #import 8 | 9 | @interface CCUIControlCenterShortcutSectionSettings : CCUIControlCenterButtonSectionSettings 10 | { 11 | } 12 | 13 | + (id)supportedButtonModuleClasses; 14 | + (id)buttonModuleClasses; 15 | - (Class)buttonSettingsClass; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIControlCenterViewController.h: -------------------------------------------------------------------------------- 1 | #import "CCUIControlCenterPageContentProviding-Protocol.h" 2 | #import "CCUIControlCenterPageContainerViewController.h" 3 | @interface CCUIControlCenterViewController : UIViewController { 4 | UIPanGestureRecognizer* _panGesture; 5 | } 6 | @property (assign,nonatomic) CGFloat revealPercentage; 7 | -(void)_addContentViewController:(id)arg1; 8 | -(void)_addOrRemovePagesBasedOnVisibility; 9 | -(void)_removePageViewController:(id)arg1; 10 | -(void)_addPageViewController:(id)arg1; 11 | -(void)_loadPages; 12 | -(void)_removeContentViewController:(id)arg1; 13 | -(id)_selectedContentViewController; 14 | -(CCUIControlCenterPageContainerViewController *)_selectedViewController; 15 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIFlashlightSetting.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface CCUIFlashlightSetting : CCUISettingModule { 4 | 5 | 6 | BOOL _stayWarm; 7 | float _flashlightLevel; 8 | BOOL _flashlightOn; 9 | 10 | } 11 | 12 | @property (assign,getter=isFlashlightOn,nonatomic) BOOL flashlightOn; //@synthesize flashlightOn=_flashlightOn - In the implementation block 13 | +(id)identifier; 14 | +(id)displayName; 15 | +(BOOL)isSupported:(int)arg1 ; 16 | -(void)dealloc; 17 | -(void)deactivate; 18 | -(void)_updateState; 19 | -(void)activate; 20 | -(void)observeValueForKeyPath:(id)arg1 ofObject:(id)arg2 change:(id)arg3 context:(void*)arg4 ; 21 | -(id)displayName; 22 | -(void)_setTorchLevel:(float)arg1 ; 23 | -(void)_tearDown; 24 | -(id)aggdKey; 25 | -(BOOL)_toggleState; 26 | -(id)glyphImageForState:(int)arg1 section:(int)arg2 ; 27 | -(id)unavailableText; 28 | -(int)orbBehavior; 29 | -(id)statusUpdate; 30 | -(id)buttonActions; 31 | -(void)_deviceBlockStateDidChangeNotification:(id)arg1 ; 32 | -(void)_featureLockStateDidChangeNotification:(id)arg1 ; 33 | -(void)_updateFlashlightPowerState; 34 | -(BOOL)_enableTorch:(BOOL)arg1 ; 35 | -(void)setFlashlightOn:(BOOL)arg1 ; 36 | -(BOOL)isFlashlightOn; 37 | -(id)_settingImageNameForState:(int)arg1 ; 38 | -(id)_shortcutImageNameForState:(int)arg1 ; 39 | -(id)_imageNameForState:(int)arg1 section:(int)arg2 ; 40 | -(void)warmup; 41 | -(void)cooldown; 42 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIImmediateTouchScrollView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:54:20 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/ControlCenterUI.framework/ControlCenterUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import 10 | 11 | @interface CCUIImmediateTouchScrollView : UIScrollView { 12 | 13 | BOOL _hitTestToContentArea; 14 | 15 | } 16 | 17 | @property (assign,nonatomic) BOOL hitTestToContentArea; //@synthesize hitTestToContentArea=_hitTestToContentArea - In the implementation block 18 | -(BOOL)pointInside:(CGPoint)arg1 withEvent:(id)arg2 ; 19 | -(BOOL)gestureRecognizerShouldBegin:(id)arg1 ; 20 | -(void)setHitTestToContentArea:(BOOL)arg1 ; 21 | -(BOOL)hitTestToContentArea; 22 | @end 23 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUINightShiftContentView.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface CCUINightShiftContentView : CCUIControlCenterSectionView { 5 | 6 | CCUIControlCenterPushButton* _button; 7 | 8 | } 9 | 10 | @property (nonatomic,readonly) CCUIControlCenterPushButton * button; //@synthesize button=_button - In the implementation block 11 | -(id)initWithFrame:(CGRect)arg1 ; 12 | -(CCUIControlCenterPushButton *)button; 13 | -(CGSize)intrinsicContentSize; 14 | -(UIColor *)_selectedStateColor; 15 | -(void)addMediaControlsView; 16 | @end 17 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUINightShiftSectionController.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface CCUINightShiftSectionController : CCUIControlCenterSectionViewController 5 | @property(nonatomic, retain) CCUINightShiftContentView *view; 6 | -(void)viewWillAppear:(BOOL)arg1; 7 | -(void)viewDidLoad; 8 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUIQuickLaunchSectionController.h: -------------------------------------------------------------------------------- 1 | #import "CCUIButtonSectionController.h" 2 | #import "CCUIButtonStackPagingView.h" 3 | 4 | @interface CCUIQuickLaunchSectionController : CCUIButtonSectionController 5 | +(Class)buttonControllerClass; 6 | @property (nonatomic, retain) CCUIButtonStackPagingView *view; 7 | -(id)settings; 8 | -(void)viewWillAppear:(BOOL)arg1 ; 9 | -(id)sectionIdentifier; 10 | -(void)_presentButtonActionPlatterWithCompletion:(/*^block*/id)arg1 ; 11 | -(void)_dismissButtonActionPlatterWithCompletion:(/*^block*/id)arg1 ; 12 | @end 13 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUISettingModule.h: -------------------------------------------------------------------------------- 1 | #import "CCUIButtonModule.h" 2 | 3 | @interface CCUISettingModule : CCUIButtonModule { 4 | 5 | BOOL _needsStateUpdateOnNextPresentation; 6 | 7 | } 8 | 9 | @property (assign,nonatomic) BOOL needsStateUpdateOnNextPresentation; //@synthesize needsStateUpdateOnNextPresentation=_needsStateUpdateOnNextPresentation - In the implementation block 10 | @property (nonatomic,readonly) UIColor * selectedStateColor; 11 | +(id)statusOnString; 12 | +(id)statusOffString; 13 | -(BOOL)_isStateOverridden; 14 | -(UIColor *)selectedStateColor; 15 | -(id)unavailableText; 16 | -(id)statusUpdate; 17 | -(void)setNeedsStateUpdateOnNextPresentation:(BOOL)arg1 ; 18 | -(BOOL)needsStateUpdateOnNextPresentation; 19 | -(void)warmup; 20 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUISettingsSectionController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:54:20 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/ControlCenterUI.framework/ControlCenterUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import 10 | #import 11 | 12 | @interface CCUISettingsSectionController : CCUIButtonSectionController 13 | @property (nonatomic, retain) CCUIButtonStackPagingView *view; 14 | @property (nonatomic,readonly) BOOL usesCompactHeight; 15 | +(Class)buttonControllerClass; 16 | -(id)settings; 17 | -(void)viewWillAppear:(BOOL)arg1 ; 18 | -(id)sectionIdentifier; 19 | -(BOOL)usesCompactHeight; 20 | -(BOOL)buttonControllerShouldUseSmallButtons:(id)arg1 ; 21 | @end 22 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/CCUISystemControlsPageViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "CCUIControlCenterPageContentProviding-Protocol.h" 3 | #import "CCUIControlCenterPageContainerViewController.h" 4 | @interface CCUISystemControlsPageViewController : UIViewController 5 | 6 | - (void)_updateColumns; 7 | - (void)_updateSectionVisibility:(id)arg1 animated:(BOOL)arg2; 8 | - (void)_updateAllSectionVisibilityAnimated:(BOOL)arg1; 9 | - (void)_presentAirDropWithCompletion:(/*^block*/id)arg1; 10 | -(void)controlCenterDidScrollToThisPage:(BOOL)arg1 ; 11 | -(void)controlCenterWillPresent; 12 | -(void)controlCenterDidDismiss; 13 | -(void)controlCenterWillBeginTransition; 14 | -(void)controlCenterDidFinishTransition; 15 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUI/ControlCenterUI+Private.h: -------------------------------------------------------------------------------- 1 | #import "CCUIButtonControllerDelegate-Protocol.h" 2 | #import "CCUIButtonLikeSectionSplitView.h" 3 | #import "CCUIButtonSectionController.h" 4 | #import "CCUIButtonStack.h" 5 | #import "CCUIButtonStackLayoutDelegate-Protocol.h" 6 | #import "CCUIButtonStackPagingView.h" 7 | #import "CCUIButtonStackPagingViewDelegate-Protocol.h" 8 | #import "CCUIControlCenterButtonDelegate-Protocol.h" 9 | #import "CCUIControlCenterButtonSectionSettings.h" 10 | #import "CCUIControlCenterObserver-Protocol.h" 11 | #import "CCUIControlCenterPageContentProviding-Protocol.h" 12 | #import "CCUIControlCenterPageContentViewControllerDelegate-Protocol.h" 13 | #import "CCUIControlCenterPushButton.h" 14 | #import "CCUIControlCenterPushButtonSettings.h" 15 | #import "CCUIControlCenterSectionView.h" 16 | #import "CCUIControlCenterSectionViewController.h" 17 | #import "CCUIControlCenterSectionViewControllerDelegate-Protocol.h" 18 | #import "CCUIControlCenterSettings.h" 19 | #import "CCUIControlCenterSettingsSectionSettings.h" 20 | #import "CCUIControlCenterShortcutButtonSettings.h" 21 | #import "CCUIControlCenterShortcutSectionSettings.h" 22 | #import "CCUIImmediateTouchScrollView.h" 23 | #import "CCUISettingsSectionController.h" 24 | #import "SBControlCenterSettingButtonSettings.h" 25 | #import "CCUINightShiftContentView.h" 26 | #import "CCUIButtonModule.h" 27 | #import "CCUIButtonModuleDelegate-Protocol.h" 28 | #import "CCUIAirStuffSectionController.h" 29 | #import "CCUINightShiftSectionController.h" 30 | #import "CCUISystemControlsPageViewController.h" 31 | #import "CCUIControlCenterPageContainerViewController.h" 32 | #import "CCUIControlCenterViewController.h" 33 | #import "CCUIBrightnessSectionController.h" 34 | #import "CCUIQuickLaunchSectionController.h" 35 | #import "CCUIBrightnessContentView.h" 36 | #import "CCUIControlCenterPagePlatterView.h" 37 | #import "CCUIControlCenterRootView.h" 38 | #import "CCUISettingModule.h" 39 | #import "CCUIFlashlightSetting.h" 40 | -------------------------------------------------------------------------------- /headers/ControlCenterUI/SBControlCenterSettingButtonSettings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | #import 8 | 9 | @interface SBControlCenterSettingButtonSettings : CCUIControlCenterPushButtonSettings 10 | { 11 | } 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /headers/ControlCenterUIKit/CCUIControlCenterSlider.h: -------------------------------------------------------------------------------- 1 | @interface CCUIControlCenterSlider : UISlider { 2 | 3 | UIImageView* _minValueHighlightedImageView; 4 | UIImageView* _maxValueHighlightedImageView; 5 | BOOL _adjusting; 6 | 7 | } 8 | 9 | @property (assign,getter=isAdjusting,nonatomic) BOOL adjusting; //@synthesize adjusting=_adjusting - In the implementation block 10 | +(id)_trackImage; 11 | +(id)_knobImage; 12 | +(UIEdgeInsets)_edgeInsetsForSliderKnob; 13 | +(id)_resizableTrackImage; 14 | -(id)initWithFrame:(CGRect)arg1 ; 15 | -(void)layoutSubviews; 16 | -(void)cancelTrackingWithEvent:(id)arg1 ; 17 | -(BOOL)beginTrackingWithTouch:(id)arg1 withEvent:(id)arg2 ; 18 | -(void)endTrackingWithTouch:(id)arg1 withEvent:(id)arg2 ; 19 | -(CGRect)trackRectForBounds:(CGRect)arg1 ; 20 | -(CGRect)thumbRectForBounds:(CGRect)arg1 trackRect:(CGRect)arg2 value:(float)arg3 ; 21 | -(CGRect)minimumValueImageRectForBounds:(CGRect)arg1 ; 22 | -(CGRect)maximumValueImageRectForBounds:(CGRect)arg1 ; 23 | -(void)setMinimumValueImage:(id)arg1 ; 24 | -(void)setMaximumValueImage:(id)arg1 ; 25 | -(void)_updateEffects; 26 | -(BOOL)ccuiSupportsDelayedTouchesByContainingScrollViewForGesture:(id)arg1 ; 27 | -(void)_setTrackImage:(id)arg1 ; 28 | -(void)setAdjusting:(BOOL)arg1 ; 29 | -(void)setMinimumValueImage:(id)arg1 cacheKey:(id)arg2 ; 30 | -(void)setMaximumValueImage:(id)arg1 cacheKey:(id)arg2 ; 31 | -(double)leftValueImageOriginForBounds:(CGRect)arg1 andSize:(CGSize)arg2 ; 32 | -(double)rightValueImageOriginForBounds:(CGRect)arg1 andSize:(CGSize)arg2 ; 33 | -(void)_configureHighlightedValueImagesLikeRegularValueImages; 34 | -(BOOL)isAdjusting; 35 | -(void)setTracking:(BOOL)arg1; 36 | -(void)_setValue:(float)arg1 andSendAction:(BOOL)arg2; 37 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUIKit/CCUIControlCenterVisualEffect.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface CCUIControlCenterVisualEffect : UIVisualEffect { 4 | 5 | NSInteger _style; 6 | 7 | } 8 | +(instancetype)effectWithStyle:(NSInteger)arg1 ; 9 | +(instancetype)_glyphOrTextOnPlatterOrBackgroundEffect; 10 | +(instancetype)_primaryHighlightedTextOnPlatterEffect; 11 | +(instancetype)_grayEffect; 12 | +(instancetype)_primaryRegularTextOnPlatterEffect; 13 | +(instancetype)_secondaryHighlightedTextOnPlatterEffect; 14 | +(instancetype)_secondaryRegularTextOnPlatterEffect; 15 | +(instancetype)_blackEffect; 16 | +(instancetype)_whiteEffect; 17 | +(instancetype)effectWithControlState:(NSUInteger)arg1 inContext:(NSInteger)arg2 ; 18 | -(NSInteger)_style; 19 | -(instancetype)initWithPrivateStyle:(NSInteger)arg1 ; 20 | -(id)contentsMultiplyColor; 21 | -(_UIVisualEffectConfig *)effectConfig; 22 | @end -------------------------------------------------------------------------------- /headers/ControlCenterUIKit/CCUIPunchOutMask.h: -------------------------------------------------------------------------------- 1 | @interface CCUIPunchOutMask : NSObject { 2 | 3 | NSInteger _style; 4 | CGFloat _cornerRadius; 5 | NSUInteger _roundedCorners; 6 | CGRect _frame; 7 | 8 | } 9 | 10 | @property (nonatomic,readonly) CGRect frame; //@synthesize frame=_frame - In the implementation block 11 | @property (nonatomic,readonly) NSInteger style; //@synthesize style=_style - In the implementation block 12 | @property (nonatomic,readonly) CGFloat cornerRadius; //@synthesize cornerRadius=_cornerRadius - In the implementation block 13 | @property (nonatomic,readonly) NSUInteger roundedCorners; //@synthesize roundedCorners=_roundedCorners - In the implementation block 14 | -(CGFloat)cornerRadius; 15 | -(CGRect)frame; 16 | -(BOOL)isEqual:(id)arg1 ; 17 | -(NSUInteger)hash; 18 | -(id)description; 19 | -(NSInteger)style; 20 | -(NSUInteger)roundedCorners; 21 | -(id)textualRepresentation; 22 | -(id)initWithFrame:(CGRect)arg1 style:(NSInteger)arg2 radius:(CGFloat)arg3 roundedCorners:(NSUInteger)arg4 ; 23 | @end 24 | -------------------------------------------------------------------------------- /headers/ControlCenterUIKit/ControlCenterUIKit+Private.h: -------------------------------------------------------------------------------- 1 | #import "CCUIControlCenterButton.h" 2 | #import "CCUIControlCenterSlider.h" 3 | #import "CCUIControlCenterVisualEffect.h" 4 | #import "CCUIPunchOutMask.h" 5 | -------------------------------------------------------------------------------- /headers/EventKitUI/CalendarModel.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | #import "EKCalendarDate.h" 9 | 10 | 11 | @class CalendarEventLoader, EKCalendarDate, EKEvent, EKEventStore, NSArray, NSCalendar, NSLock, NSSet, NSString, _EKNotificationMonitor; 12 | 13 | @interface CalendarModel : NSObject 14 | 15 | @property (nonatomic,retain) NSSet * selectedCalendars; 16 | 17 | - (id)occurrencesForDay:(id)arg1 waitForLoad:(BOOL)arg2; 18 | - (void)addOccurrenceAwaitingDeletion:(id)arg1; 19 | - (id)occurrencesForStartDate:(id)arg1 endDate:(id)arg2 preSorted:(BOOL)arg3 waitForLoad:(BOOL)arg4; 20 | - (id)occurrencesForStartDay:(id)arg1 endDay:(id)arg2 preSorted:(BOOL)arg3 waitForLoad:(BOOL)arg4; 21 | - (void)setMaxCachedDays:(unsigned)arg1; 22 | 23 | @property(readonly, nonatomic) EKCalendarDate *selectedDay; 24 | - (id)init; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /headers/EventKitUI/EKDayViewDataSource-Protocol.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @protocol EKDayViewDataSource 4 | @required 5 | -(id)dayView:(id)arg1 eventsForStartDate:(id)arg2 endDate:(id)arg3; 6 | 7 | @end -------------------------------------------------------------------------------- /headers/EventKitUI/EKDayViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @protocol EKDayViewDelegate 5 | @optional 6 | -(void)dayViewDidFinishScrollingToOccurrence:(id)arg1; 7 | -(void)dayView:(id)arg1 firstVisibleSecondChanged:(unsigned long long)arg2; 8 | -(void)dayView:(id)arg1 didSelectEvent:(id)arg2; 9 | -(void)dayView:(id)arg1 didCreateOccurrenceViews:(id)arg2; 10 | -(void)dayViewDidTapEmptySpace:(id)arg1; 11 | 12 | @end -------------------------------------------------------------------------------- /headers/FlipSwitch/FSSwitchPanel+Private.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface FSSwitchPanel (Private) 5 | - (NSString *)descriptionOfState:(FSSwitchState)state forSwitchIdentifier:(NSString *)switchIdentifier; 6 | - (Class )settingsViewControllerClassForSwitchIdentifier:(NSString *)switchIdentifier; 7 | - (UIViewController *)settingsViewControllerForSwitchIdentifier:(NSString *)switchIdentifier; 8 | - (NSArray *)sortedSwitchIdentifiers; 9 | - (UIColor *)primaryColorForSwitchIdentifier:(NSString *)switchIdentifier; 10 | @end -------------------------------------------------------------------------------- /headers/FlipSwitch/FSSwitchSettingsViewController-Protocol.h: -------------------------------------------------------------------------------- 1 | // @protocol FSSwitchSettingsViewController 2 | // @optional 3 | // - (id)initWithSwitchIdentifier:(NSString *)switchIdentifier; 4 | // @end -------------------------------------------------------------------------------- /headers/FlipSwitch/FSSwitchSettingsViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @protocol FSSwitchSettingsViewController // Must be a UIViewController subclass 4 | @optional 5 | - (id)initWithSwitchIdentifier:(NSString *)switchIdentifier; 6 | @end 7 | -------------------------------------------------------------------------------- /headers/FlipSwitch/FSSwitchState.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | typedef enum { 4 | FSSwitchStateOff = 0, 5 | FSSwitchStateOn = 1, 6 | FSSwitchStateIndeterminate = -1 7 | } FSSwitchState; 8 | 9 | extern NSString *NSStringFromFSSwitchState(FSSwitchState state); 10 | extern FSSwitchState FSSwitchStateFromNSString(NSString *stateString); 11 | -------------------------------------------------------------------------------- /headers/FlipSwitch/FlipSwitch+Private.h: -------------------------------------------------------------------------------- 1 | #import "FSSwitchPanel+Private.h" 2 | #import "FSSwitchSettingsViewController-Protocol.h" -------------------------------------------------------------------------------- /headers/FlipSwitch/Flipswitch.h: -------------------------------------------------------------------------------- 1 | #import "FSSwitchPanel.h" 2 | #import "FSSwitchDataSource.h" 3 | #import "FSSwitchState.h" 4 | #import "FSSwitchSettingsViewController.h" 5 | -------------------------------------------------------------------------------- /headers/Foundation/Foundation+Private.h: -------------------------------------------------------------------------------- 1 | #import "__NSBundleTables.h" -------------------------------------------------------------------------------- /headers/Foundation/__NSBundleTables.h: -------------------------------------------------------------------------------- 1 | @interface __NSBundleTables : NSObject { 2 | 3 | NSLock* _lock; 4 | NSMutableSet* _staticFrameworks; 5 | NSMutableSet* _loadedBundles; 6 | NSMutableSet* _loadedFrameworks; 7 | NSMutableDictionary* _resolvedPathToBundles; 8 | CFDictionaryRef _bundleForClassMap; 9 | 10 | } 11 | +(id)bundleTables; 12 | -(void)removeBundle:(id)arg1 forPath:(id)arg2 type:(unsigned long long)arg3 ; 13 | -(void)setBundle:(id)arg1 forClass:(Class)arg2 ; 14 | -(id)loadedBundles; 15 | -(id)allBundles; 16 | -(void)addStaticFrameworkBundles:(id)arg1 ; 17 | -(id)allFrameworks; 18 | -(id)bundleForPath:(id)arg1 ; 19 | -(void)addBundle:(id)arg1 type:(unsigned long long)arg2 ; 20 | -(id)addBundle:(id)arg1 forPath:(id)arg2 ; 21 | -(id)init; 22 | -(void)dealloc; 23 | -(id)bundleForClass:(Class)arg1 ; 24 | @end -------------------------------------------------------------------------------- /headers/FuseUI/MCProfileConnectionObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol MCProfileConnectionObserver 10 | 11 | @optional 12 | - (void)profileConnectionDidReceiveAppWhitelistChangedNotification:(id)arg1 userInfo:(id)arg2; 13 | - (void)profileConnectionDidReceiveDefaultsChangedNotification:(id)arg1 userInfo:(id)arg2; 14 | - (void)profileConnectionDidReceiveEffectiveSettingsChangedNotification:(id)arg1 userInfo:(id)arg2; 15 | - (void)profileConnectionDidReceiveProfileListChangedNotification:(id)arg1 userInfo:(id)arg2; 16 | - (void)profileConnectionDidReceivePasscodePolicyChangedNotification:(id)arg1 userInfo:(id)arg2; 17 | - (void)profileConnectionDidReceivePasscodeChangedNotification:(id)arg1 userInfo:(id)arg2; 18 | - (void)profileConnectionDidReceiveRestrictionChangedNotification:(id)arg1 userInfo:(id)arg2; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /headers/GameCenterFoundation/GKAchievementDescription.h: -------------------------------------------------------------------------------- 1 | /* Generated by RuntimeBrowser 2 | Image: /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation 3 | */ 4 | 5 | @class GKAchievementInternal, NSString, UIImage; 6 | 7 | @interface GKAchievementDescription : NSObject { 8 | UIImage *_image; 9 | GKAchievementInternal *_internal; 10 | } 11 | 12 | @property(copy,readonly) NSString * achievedDescription; 13 | @property(retain,readonly) NSString * groupIdentifier; 14 | @property(getter=isHidden,readonly) bool hidden; 15 | @property(copy,readonly) NSString * identifier; 16 | @property(retain) UIImage * image; 17 | @property(retain) GKAchievementInternal * internal; 18 | @property(readonly) long long maximumPoints; 19 | @property(getter=isReplayable,readonly) bool replayable; 20 | @property(copy,readonly) NSString * title; 21 | @property(copy,readonly) NSString * unachievedDescription; 22 | 23 | + (id)incompleteAchievementImage; 24 | + (id)instanceMethodSignatureForSelector:(SEL)arg1; 25 | + (bool)instancesRespondToSelector:(SEL)arg1; 26 | + (void)loadAchievementDescriptionsForGame:(id)arg1 withCompletionHandler:(id)arg2; 27 | + (void)loadAchievementDescriptionsWithCompletionHandler:(id)arg1; 28 | + (id)placeholderCompletedAchievementImage; 29 | + (bool)supportsSecureCoding; 30 | 31 | - (void)dealloc; 32 | - (id)description; 33 | - (void)encodeWithCoder:(id)arg1; 34 | - (id)forwardingTargetForSelector:(SEL)arg1; 35 | - (unsigned long long)hash; 36 | - (UIImage *)image; 37 | - (id)imageURL; 38 | - (id)init; 39 | - (id)initWithCoder:(id)arg1; 40 | - (id)initWithInternalRepresentation:(id)arg1; 41 | - (GKAchievementInternal *)internal; 42 | - (bool)isEqual:(id)arg1; 43 | - (void)loadImageWithCompletionHandler:(id)arg1; 44 | - (id)methodSignatureForSelector:(SEL)arg1; 45 | - (bool)respondsToSelector:(SEL)arg1; 46 | - (void)setImage:(UIImage *)arg1; 47 | - (void)setInternal:(GKAchievementInternal *)arg1; 48 | - (void)setValue:(id)arg1 forUndefinedKey:(id)arg2; 49 | - (void)showBanner; 50 | - (id)valueForUndefinedKey:(id)arg1; 51 | 52 | @end 53 | -------------------------------------------------------------------------------- /headers/GameCenterFoundation/GKInternalRepresentation.h: -------------------------------------------------------------------------------- 1 | /* Generated by RuntimeBrowser 2 | Image: /System/Library/PrivateFrameworks/GameCenterFoundation.framework/GameCenterFoundation 3 | */ 4 | 5 | @interface GKInternalRepresentation : NSObject { 6 | } 7 | 8 | + (id)codedPropertyKeys; 9 | + (id)internalRepresentation; 10 | + (id)secureCodedPropertyKeys; 11 | + (bool)supportsSecureCoding; 12 | 13 | - (id)copyWithZone:(struct _NSZone)arg1; 14 | - (id)description; 15 | - (void)encodeWithCoder:(id)arg1; 16 | - (id)initWithCoder:(id)arg1; 17 | - (void)mergePropertiesFrom:(id)arg1; 18 | - (id)serverRepresentation; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /headers/GameCenterFoundation/GameCenterFoundation.h: -------------------------------------------------------------------------------- 1 | #import "GKAchievementDescription.h" 2 | #import "GKAchievementInternal.h" 3 | #import "GKGame.h" 4 | #import "GKInternalRepresentation.h" -------------------------------------------------------------------------------- /headers/IBKKit/IBKWidgetDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // IBKWidget.h 3 | // curago 4 | // 5 | // Created by Matt Clarke on 10/06/2014. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @protocol IBKWidgetDelegate 12 | 13 | @required 14 | // These methods will be called in this order 15 | -(UIView*)viewWithFrame:(CGRect)frame isIpad:(BOOL)isIpad; 16 | -(BOOL)hasButtonArea; 17 | -(BOOL)hasAlternativeIconView; 18 | 19 | @optional 20 | -(UIView*)buttonAreaViewWithFrame:(CGRect)frame; 21 | -(UIView*)alternativeIconViewWithFrame:(CGRect)frame; 22 | -(void)willRotateToInterfaceOrientation:(int)arg1; 23 | -(void)didRotateToInterfaceOrientation:(int)arg1; 24 | -(NSString*)customHexColor; 25 | -(BOOL)wantsGradientBackground; 26 | -(NSArray*)gradientBackgroundColors; 27 | -(NSArray*)gradientBackgroundColorsUIColor; 28 | -(BOOL)wantsNoContentViewFadeWithButtons; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /headers/Intelix/ITXAnimatedCornersView.h: -------------------------------------------------------------------------------- 1 | @interface ITXAnimatedCornersView : UIView 2 | - (BOOL)shouldForwardSelector:(SEL)aSelector; 3 | - (id)forwardingTargetForSelector:(SEL)aSelector; 4 | - (BOOL)_shouldAnimatePropertyWithKey:(NSString *)key; 5 | @end -------------------------------------------------------------------------------- /headers/Intelix/ITXAnimatedSeperatedCornersView.h: -------------------------------------------------------------------------------- 1 | #import "ITXAnimatedCornersView.h" 2 | 3 | @interface ITXAnimatedSeperatedCornersView : UIView 4 | @property (nonatomic, assign, readwrite) CGFloat topInset; 5 | @property (nonatomic, assign, readwrite) CGFloat bottomInset; 6 | @property (nonatomic, assign, readwrite) CGFloat topCornerRadius; 7 | @property (nonatomic, assign, readwrite) CGFloat bottomCornerRadius; 8 | @property (nonatomic, retain, readwrite) ITXAnimatedCornersView *topMaskView; 9 | @property (nonatomic, retain, readwrite) ITXAnimatedCornersView *bottomMaskView; 10 | @property (nonatomic, retain, readwrite) UIView *topView; 11 | @property (nonatomic, retain, readwrite) UIView *bottomView; 12 | @property (nonatomic, retain, readwrite) UIView *containerView; 13 | @end -------------------------------------------------------------------------------- /headers/Intelix/ITXHelper.h: -------------------------------------------------------------------------------- 1 | @interface ITXHelper : NSObject 2 | + (CGFloat)seperatorHeight; 3 | + (CGFloat)standardInset; 4 | + (CGFloat)standardCornerRadius; 5 | + (UIImage *)iconForIdentifier:(NSString *)identifier; 6 | + (void)setIcon:(UIImage *)icon forIdentifier:(NSString *)identifier; 7 | @end -------------------------------------------------------------------------------- /headers/Intelix/ITXNCGroupBackgroundConfiguration.h: -------------------------------------------------------------------------------- 1 | @interface ITXNCGroupBackgroundConfiguration : NSObject 2 | @property (nonatomic, assign, readwrite) CGFloat topRadius; 3 | @property (nonatomic, assign, readwrite) CGFloat middleTopRadius; 4 | @property (nonatomic, assign, readwrite) CGFloat middleBottomRadius; 5 | @property (nonatomic, assign, readwrite) CGFloat bottomRadius; 6 | @property (nonatomic, assign, readwrite) CGFloat middleTopInset; 7 | @property (nonatomic, assign, readwrite) CGFloat middleBottomInset; 8 | + (ITXNCGroupBackgroundConfiguration *)defaultConfiguration; 9 | + (CGFloat)defaultCornerRadiusValue; 10 | + (CGFloat)defaultInsetValue; 11 | @end -------------------------------------------------------------------------------- /headers/Intelix/ITXNCGroupBackgroundView.h: -------------------------------------------------------------------------------- 1 | #import "ITXAnimatedSeperatedCornersView.h" 2 | #import "ITXNCGroupBackgroundConfiguration.h" 3 | #import 4 | 5 | @interface ITXNCGroupBackgroundView : UICollectionReusableView { 6 | CGRect _previousFrame; 7 | CGRect _previousMiddleFrame; 8 | id _coloringInfo; 9 | } 10 | @property (nonatomic, assign, readwrite) CGRect middleFrame; 11 | @property (nonatomic, assign, readwrite) CGRect forcedFrame; 12 | @property (nonatomic, retain, readwrite) ITXAnimatedSeperatedCornersView *topView; 13 | @property (nonatomic, retain, readwrite) ITXAnimatedSeperatedCornersView *bottomView; 14 | @property (nonatomic, retain, readwrite) MTMaterialView *backdropView; 15 | @property (nonatomic, retain, readwrite) UIView *containerView; 16 | @property (nonatomic, retain, readwrite) ITXNCGroupBackgroundConfiguration *configuration; 17 | @property (nonatomic, assign, readwrite) BOOL isSectionBackground; 18 | @property (nonatomic, assign, readwrite) BOOL isTopSection; 19 | + (NSString *)elementKind; 20 | 21 | // Notification Animation Stuff :/ 22 | 23 | @property (assign, nonatomic, readwrite) BOOL shouldOverrideForReveal; //@synthesize shouldOverrideForReveal=_shouldOverrideForReveal - In the implementation block 24 | @property (assign, nonatomic, readwrite) CGFloat overrideAlpha; //@synthesize overrideAlpha=_overrideAlpha - In the implementation block 25 | @property (assign, nonatomic, readwrite) CGPoint overrideCenter; 26 | - (void)_resetRevealOverrides; 27 | 28 | - (void)doConfigUpdate; 29 | 30 | - (void)cbr_setColoringInfo:(id)info; 31 | - (id)cbr_coloringInfo; 32 | @end -------------------------------------------------------------------------------- /headers/Intelix/ITXNCGroupFooterView.h: -------------------------------------------------------------------------------- 1 | @class NCNotificationCombinedListViewController; 2 | 3 | @interface ITXNCGroupFooterView : UICollectionReusableView 4 | @property (nonatomic, retain, readwrite) UIView *separatorView; 5 | @property (nonatomic, retain, readwrite) UILabel *middleLabel; 6 | @property (nonatomic, assign, readwrite) NSInteger numberToShow; 7 | @property (nonatomic, retain, readwrite) NCNotificationCombinedListViewController *cellDelegate; 8 | @property (nonatomic, retain, readwrite) UITapGestureRecognizer *tapRecognizer; 9 | @property (nonatomic, retain, readwrite) NSString *sectionIdentifier; 10 | @property (nonatomic, assign, readwrite) BOOL isExpanded; 11 | - (void)setLabelText:(NSString *)text; 12 | - (void)setupMiddleLabel; 13 | - (void)toggleShowAllNotifications; 14 | 15 | // Notification Animation Stuff 16 | @property (assign, nonatomic, readwrite) BOOL shouldOverrideForReveal; //@synthesize shouldOverrideForReveal=_shouldOverrideForReveal - In the implementation block 17 | @property (assign, nonatomic, readwrite) CGFloat overrideAlpha; //@synthesize overrideAlpha=_overrideAlpha - In the implementation block 18 | @property (assign, nonatomic, readwrite) CGPoint overrideCenter; 19 | - (void)_resetRevealOverrides; 20 | 21 | // ColorBanners 22 | - (void)setTextColor:(UIColor *)color; 23 | @end -------------------------------------------------------------------------------- /headers/Intelix/ITXNotificationsSection.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface ITXNotificationsSection : NSObject 4 | @property (nonatomic, retain, readwrite) NSMutableArray *notifications; 5 | @property (nonatomic, retain, readwrite) NSString *identifier; 6 | @property (nonatomic, retain, readwrite) UIImage *icon; 7 | @property (nonatomic, retain, readwrite) NSString *title; 8 | @property (nonatomic, retain, readwrite) NSDate *recentNotificationDate; 9 | @property (nonatomic, assign, readwrite) BOOL isCollapsed; 10 | 11 | - (id)init; 12 | - (void)insertNotificationRequest:(NCNotificationRequest *)notification; 13 | - (void)removeNotificationRequest:(NCNotificationRequest *)notification; 14 | - (void)modifyNotificationRequest:(NCNotificationRequest *)notification; 15 | - (NSUInteger)indexOfNotification:(NCNotificationRequest *)notification; 16 | - (NSUInteger)count; 17 | - (void)recomputeMostRecentDate; 18 | - (NCNotificationRequest *)requestAtIndex:(NSUInteger)index; 19 | - (NCNotificationRequest *)notificationAtIndex:(NSUInteger)index; 20 | @end -------------------------------------------------------------------------------- /headers/Intelix/MTPlatterHeaderContentView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface MTPlatterHeaderContentView (Intelix) 4 | @property (nonatomic, assign) BOOL isInRecentsSection; 5 | @property (nonatomic, assign) BOOL isInHistorySection; 6 | @end 7 | 8 | @interface MTPlatterHeaderContentView (ColorBanners2) 9 | - (void)cbr_setColoringInfo:(id)info; 10 | - (id)cbr_coloringInfo; 11 | - (void)cbr_colorize:(id)info; 12 | @end -------------------------------------------------------------------------------- /headers/Intelix/NCNotificationChronologicalList.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NCNotificationChronologicalList (Intelix) 4 | @property (nonatomic, retain) NSMutableArray *collapsedSectionIdentifiers; 5 | @property (nonatomic, retain) NSMutableArray *expandedSectionIdentifiers; 6 | - (BOOL)sectionIsCollapsed:(NSUInteger)section; 7 | - (BOOL)sectionIsExpanded:(NSUInteger)sectionIndex; 8 | - (NSUInteger)actualNumberOfNotificationsInSection:(NSUInteger)section; 9 | - (NSString *)otherSectionIdentifierForSectionIndex:(NSUInteger)section; 10 | - (void)toggleExpansionForSectionIdentifier:(NSString *)sectionIdentifier; 11 | - (BOOL)sectionHasFooter:(NSUInteger)sectionIndex; 12 | - (NSUInteger)sectionIndexForOtherSectionIdentifier:(NSString *)otherSectionIdentifier; 13 | 14 | // Clear All 15 | - (void)clearNotificationsInSection:(NSUInteger)section; 16 | @end -------------------------------------------------------------------------------- /headers/Intelix/NCNotificationCombinedListViewController.h: -------------------------------------------------------------------------------- 1 | #import "NCNotificationChronologicalList.h" 2 | #import 3 | #import "ITXNCGroupFooterView.h" 4 | #import 5 | #import 6 | 7 | @interface NCNotificationCombinedListViewController (Intelix) 8 | - (NCNotificationChronologicalList *)notificationSectionList; 9 | - (void)sectionFooterView:(ITXNCGroupFooterView *)footerView didReceiveToggleExpansionActionForSectionIdentifier:(NSString *)sectionIdentifier; 10 | - (void)notificationSectionList:(NCNotificationChronologicalList *)sectionList didInsertNotificationRequests:(NSArray *)requests atIndexPaths:(NSArray *)paths reloadIndexPaths:(NSArray *)reloadPaths; 11 | - (void)notificationSectionList:(NCNotificationChronologicalList *)sectionList didRemoveNotificationRequests:(NSArray *)requests atIndexPaths:(NSArray *)paths reloadIndexPaths:(NSArray *)reloadPaths; 12 | 13 | // Clear All 14 | - (void)clearNotificationRequests:(NSArray *)requests; 15 | - (void)clearNotificationsInSection:(NSUInteger)section; 16 | 17 | // Check if Actually supposed to be on LS 18 | - (BOOL)shouldBelongOnLockscreen:(NCNotificationRequest *)request; 19 | + (NCNotificationCombinedListViewController *)sharedController; 20 | 21 | // Notification Source 22 | - (NCNotificationDispatcher *)notificationDispatcher; 23 | @end -------------------------------------------------------------------------------- /headers/Intelix/NCNotificationListCell.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface NCNotificationListCell (Intelix) 5 | @property (nonatomic, retain) NCNotificationViewController *contentViewController; 6 | @property (nonatomic, retain) ITXNCGroupBackgroundView *itxBackgroundView; 7 | @property (nonatomic, retain) UIView *cellOver; 8 | @property (nonatomic, retain) UIView *cellUnder; 9 | @property (nonatomic, assign) BOOL _isLastInSection; 10 | @property (nonatomic, assign) BOOL isLastInSection; 11 | @property (nonatomic, assign) BOOL _isFirstInSection; 12 | @property (nonatomic, assign) BOOL hasFooterUnder; 13 | @property (nonatomic, retain) UIView *separatorView; 14 | - (ITXNCGroupBackgroundView *)sectionBackgroundView; 15 | - (void)doITXStuff; 16 | @end -------------------------------------------------------------------------------- /headers/Intelix/NCNotificationListSection.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NCNotificationListSection (Intelix) 4 | @property (nonatomic, retain) NSString *otherSectionIdentifier; 5 | @property (nonatomic, retain) UIImage *iconImage; 6 | - (NSInteger)count; 7 | @end -------------------------------------------------------------------------------- /headers/Intelix/NCNotificationListSectionHeaderView.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "MTPlatterHeaderContentView.h" 3 | #import "ITXNCGroupBackgroundView.h" 4 | #import "ITXNCGroupFooterView.h" 5 | 6 | @interface NCNotificationListSectionHeaderView (Intelix) 7 | @property (nonatomic, retain) MTPlatterHeaderContentView *headerContainerView; 8 | @property (nonatomic, retain) UIView *separatorView; 9 | @property (nonatomic, retain) NSString *appIdentifier; 10 | 11 | // Animation Stuffs 12 | @property (nonatomic, retain) ITXNCGroupBackgroundView *sectionBackground; 13 | @property (nonatomic, retain) ITXNCGroupFooterView *footerView; 14 | 15 | @property (nonatomic, retain) id delegate; 16 | @property (nonatomic, assign) BOOL isTopSection; 17 | 18 | - (ITXNCGroupBackgroundView *)sectionBackgroundView; 19 | - (ITXNCGroupFooterView *)sectionFooterView; 20 | 21 | // Clear All Stuff 22 | 23 | @property (nonatomic, retain) NSIndexPath *indexPath; 24 | 25 | // ColorBanners2 Support 26 | - (void)cbr_setColoringInfo:(id)info; 27 | @end -------------------------------------------------------------------------------- /headers/Intelix/NCNotificationPriorityList.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "NCNotificationChronologicalList.h" 3 | #import 4 | #import "ITXNotificationsSection.h" 5 | #import "NCNotificationCombinedListViewController.h" 6 | 7 | @interface NCNotificationPriorityList (Intelix) 8 | @property (nonatomic, retain) NSMutableArray *sections; 9 | @property (nonatomic, retain) NCNotificationCombinedListViewController *controller; 10 | - (NSUInteger)sectionCount; 11 | - (NSUInteger)rowCountForSectionIndex:(NSUInteger)section; 12 | - (NSUInteger)actualCountInSection:(NSUInteger)section; 13 | - (NCNotificationRequest *)notificationRequestAtIndexPath:(NSIndexPath *)indexPath; 14 | - (NSIndexPath *)indexPathForNotificationRequest:(NCNotificationRequest *)request; 15 | - (ITXNotificationsSection *)existingSectionForRequest:(NCNotificationRequest *)request; 16 | - (ITXNotificationsSection *)newSectionForRequest:(NCNotificationRequest *)request; 17 | - (NSUInteger)countOfNotificationsInSectionsBeforeSection:(NSUInteger)section; 18 | 19 | - (NSIndexPath *)itx_insertNotificationRequest:(NCNotificationRequest *)request; 20 | - (NSIndexPath *)itx_modifyNotificationRequest:(NCNotificationRequest *)request; 21 | - (NSIndexPath *)itx_removeNotificationRequest:(NCNotificationRequest *)request; 22 | 23 | - (BOOL)containsNotificationRequest:(NCNotificationRequest *)request; 24 | 25 | - (NSString *)titleForSectionIndex:(NSUInteger)section; 26 | - (NSString *)identifierForSectionIndex:(NSUInteger)section; 27 | 28 | - (void)recomputeCount; 29 | 30 | // Clear All 31 | - (void)clearNotificationsInSection:(NSUInteger)section; 32 | @end -------------------------------------------------------------------------------- /headers/Intelix/NCNotificationShortLookView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NCNotificationShortLookView (ColorBanners2) 4 | - (id)cbr_coloringInfo; 5 | @end 6 | 7 | @interface NCNotificationShortLookView (PicoBanners2) 8 | - (void)setIsFromBanner:(BOOL)isBanner; 9 | - (void)setIsFromBannerWasSet:(BOOL)wasSet; 10 | - (BOOL)isBanner; 11 | - (BOOL)isFromBanner; 12 | - (BOOL)isFromBannerWasSet; 13 | @end -------------------------------------------------------------------------------- /headers/MPUFoundation/MPUFoundation+Private.h: -------------------------------------------------------------------------------- 1 | #import "MPULayoutInterpolator.h" 2 | #import "MPUMarqueeView.h" 3 | #import "MPUMarqueeViewDelegate-Protocol.h" 4 | -------------------------------------------------------------------------------- /headers/MPUFoundation/MPULayoutInterpolator.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:56:09 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/MPUFoundation.framework/MPUFoundation 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | @interface MPULayoutInterpolator : NSObject { 10 | 11 | BOOL _hasEntryWithSpecificSecondaryReferenceMetric; 12 | 13 | } 14 | // -(id)description; 15 | -(id)copyWithZone:(NSZone*)arg1 ; 16 | -(void)addValue:(CGFloat)arg1 forReferenceMetric:(CGFloat)arg2 ; 17 | -(void)addValue:(CGFloat)arg1 forReferenceMetric:(CGFloat)arg2 secondaryReferenceMetric:(CGFloat)arg3 ; 18 | -(CGFloat)valueForReferenceMetric:(CGFloat)arg1 secondaryReferenceMetric:(CGFloat)arg2 ; 19 | -(CGFloat)valueForReferenceMetric:(CGFloat)arg1 ; 20 | @end 21 | -------------------------------------------------------------------------------- /headers/MPUFoundation/MPUMarqueeViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUMarqueeViewDelegate 2 | @end -------------------------------------------------------------------------------- /headers/MaterialKit/MTFontProvider.h: -------------------------------------------------------------------------------- 1 | @interface MTFontProvider 2 | + (instancetype)defaultFontProvider; 3 | + (instancetype)preferredFontProvider; 4 | - (UIFont *)preferredFontForTextStyle:(id)textStyle hiFontStyle:(NSInteger)fontStyle; 5 | @end 6 | -------------------------------------------------------------------------------- /headers/MaterialKit/MTMaterialView.h: -------------------------------------------------------------------------------- 1 | #import "../UIKit/_UIBackdropView.h" 2 | 3 | @interface MTMaterialView : UIView { 4 | _UIBackdropView *_backdropView; 5 | } 6 | @property (nonatomic,copy) NSString *groupName; 7 | @property (assign,nonatomic) BOOL allowsInPlaceFiltering; 8 | 9 | +(MTMaterialView *)materialViewWithRecipe:(NSInteger)recipe options:(NSUInteger)options; 10 | 11 | - (void)cbr_colorize:(id)colorInfo; 12 | @end -------------------------------------------------------------------------------- /headers/MaterialKit/MTPlatterHeaderContentView.h: -------------------------------------------------------------------------------- 1 | @interface MTPlatterHeaderContentView : UIView 2 | - (id)init; 3 | @property (nonatomic, retain) UIImage *icon; 4 | @property (nonatomic, retain) NSString *title; 5 | @property (nonatomic, retain) UIButton *utilityButton; 6 | - (CGSize)sizeThatFits; 7 | @end -------------------------------------------------------------------------------- /headers/MaterialKit/MTPlatterView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface MTPlatterView : UIView { 4 | MTMaterialView* _mainOverlayView; 5 | } 6 | 7 | @property (nonatomic,readonly) MTMaterialView *backgroundMaterialView; 8 | @property (assign,nonatomic) BOOL usesBackgroundView; 9 | @property (nonatomic,retain) UIView *backgroundView; 10 | - (MTPlatterView *)initWithRecipe:(NSInteger)recipe options:(NSUInteger)options; 11 | 12 | // For Notifications: recipe: 1 options: 2 13 | @end -------------------------------------------------------------------------------- /headers/MaterialKit/MTTitledPlatterView.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface MTTitledPlatterView : MTPlatterView 5 | -(MTPlatterHeaderContentView *)_headerContentView; 6 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/@interface MPUVolumeHUDController : NSObject {: -------------------------------------------------------------------------------- 1 | @interface MPUVolumeHUDController : NSObject { 2 | 3 | NSMutableDictionary* _categoriesToEnabledStates; 4 | 5 | } 6 | 7 | @property (nonatomic,readonly) NSDictionary * categoriesToEnabledStates; 8 | -(id)init; 9 | -(void)dealloc; 10 | -(NSDictionary *)categoriesToEnabledStates; 11 | -(BOOL)volumeHUDEnabledForCategory:(id)arg1 ; 12 | -(void)setVolumeHUDEnabled:(BOOL)arg1 forCategory:(id)arg2 ; 13 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPAVBatteryLevel.h: -------------------------------------------------------------------------------- 1 | @interface MPAVBatteryLevel : NSObject { 2 | 3 | NSNumber* _leftPercentage; 4 | NSNumber* _rightPercentage; 5 | NSNumber* _singlePercentage; 6 | NSNumber* _casePercentage; 7 | 8 | } 9 | 10 | @property (nonatomic,readonly) NSNumber * leftPercentage; //@synthesize leftPercentage=_leftPercentage - In the implementation block 11 | @property (nonatomic,readonly) NSNumber * rightPercentage; //@synthesize rightPercentage=_rightPercentage - In the implementation block 12 | @property (nonatomic,readonly) NSNumber * singlePercentage; //@synthesize singlePercentage=_singlePercentage - In the implementation block 13 | @property (nonatomic,readonly) NSNumber * casePercentage; //@synthesize casePercentage=_casePercentage - In the implementation block 14 | -(NSNumber *)leftPercentage; 15 | -(NSNumber *)rightPercentage; 16 | -(NSNumber *)singlePercentage; 17 | -(NSNumber *)casePercentage; 18 | -(id)initWithRouteDescription:(id)arg1 ; 19 | @end 20 | -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPAVController.h: -------------------------------------------------------------------------------- 1 | @interface MPAVController : NSObject 2 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPAVRoutingControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 24 2016 13:14:34). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard. 5 | // 6 | 7 | 8 | @class MPAVRoute, MPAVRoutingController, NSError; 9 | 10 | @protocol MPAVRoutingControllerDelegate 11 | 12 | @optional 13 | - (void)routingControllerDidPauseFromActiveRouteChange:(MPAVRoutingController *)arg1; 14 | - (void)routingController:(MPAVRoutingController *)arg1 didFailToPickRouteWithError:(NSError *)arg2; 15 | - (void)routingControllerExternalScreenTypeDidChange:(MPAVRoutingController *)arg1; 16 | - (void)routingController:(MPAVRoutingController *)arg1 pickedRouteDidChange:(MPAVRoute *)arg2; 17 | - (void)routingControllerAvailableRoutesDidChange:(MPAVRoutingController *)arg1; 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPAVRoutingViewController.h: -------------------------------------------------------------------------------- 1 | @interface MPAVRoutingViewController : UIViewController 2 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPAVRoutingViewControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPAVRoutingViewControllerDelegate 2 | @optional 3 | -(void)routingViewController:(id)arg1 didPickRoute:(id)arg2; 4 | -(void)routingViewControllerDidUpdateContents:(id)arg1; 5 | -(void)routingViewControllerDidShowAirPlayDebugScreen:(id)arg1; 6 | 7 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUAVRouteHeaderView.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @interface MPUAVRouteHeaderView : UIControl { 6 | 7 | CAShapeLayer* _topSeparatorLayer; 8 | CAShapeLayer* _bottomSeparatorLayer; 9 | UIImageView* _iconImageView; 10 | UIImageView* _disclosureIndicatorImageView; 11 | BOOL _activated; 12 | MPAVRoute* _route; 13 | UIVisualEffect* _primaryVisualEffect; 14 | UIVisualEffect* _secondaryVisualEffect; 15 | MPUAVRouteHeaderLabel* _textLabel; 16 | 17 | } 18 | 19 | @property (nonatomic,retain) MPAVRoute * route; //@synthesize route=_route - In the implementation block 20 | @property (nonatomic,retain) UIVisualEffect * primaryVisualEffect; //@synthesize primaryVisualEffect=_primaryVisualEffect - In the implementation block 21 | @property (nonatomic,retain) UIVisualEffect * secondaryVisualEffect; //@synthesize secondaryVisualEffect=_secondaryVisualEffect - In the implementation block 22 | @property (assign,getter=isActivated,nonatomic) BOOL activated; //@synthesize activated=_activated - In the implementation block 23 | @property (nonatomic,readonly) MPUAVRouteHeaderLabel * textLabel; //@synthesize textLabel=_textLabel - In the implementation block 24 | -(id)initWithFrame:(CGRect)arg1 ; 25 | -(void)layoutSubviews; 26 | -(id)initWithCoder:(id)arg1 ; 27 | -(void)_init; 28 | -(void)setHighlighted:(BOOL)arg1 ; 29 | -(MPUAVRouteHeaderLabel *)textLabel; 30 | -(void)setActivated:(BOOL)arg1 ; 31 | -(MPAVRoute *)route; 32 | -(void)setRoute:(MPAVRoute *)arg1 ; 33 | -(UIVisualEffect *)primaryVisualEffect; 34 | -(UIVisualEffect *)secondaryVisualEffect; 35 | -(void)setPrimaryVisualEffect:(UIVisualEffect *)arg1 ; 36 | -(void)setSecondaryVisualEffect:(UIVisualEffect *)arg1 ; 37 | -(BOOL)isActivated; 38 | -(void)setActivated:(BOOL)arg1 animated:(BOOL)arg2 ; 39 | -(id)_disclosureIconImageForCurrentState; 40 | -(void)_updateBottomClippingForAnimatedTransition; 41 | @end 42 | -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUChronologicalProgressView.h: -------------------------------------------------------------------------------- 1 | @interface MPUChronologicalProgressView : UIView 2 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUChronologicalProgressViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUChronologicalProgressViewDelegate 2 | @optional 3 | -(void)progressViewDidBeginScrubbing:(id)arg1; 4 | -(void)progressViewDidEndScrubbing:(id)arg1; 5 | -(void)progressView:(id)arg1 didScrubToCurrentTime:(CGFloat)arg2; 6 | 7 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUControlCenterMediaControlsViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUControlCenterMediaControlsViewDelegate 2 | @optional 3 | -(void)mediaControlsView:(id)arg1 willTransitionToCompactView:(BOOL)arg2; 4 | -(void)mediaControlsViewPrimaryActionTriggered:(id)arg1; 5 | 6 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUControlCenterMetadataView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface MPUControlCenterMetadataView : MPUNowPlayingMetadataView 4 | +(Class)labelClass; 5 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUControlCenterTimeView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface MPUControlCenterTimeView : MPUChronologicalProgressView 4 | +(Class)timeLabelsClass; 5 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUEmptyNowPlayingView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:56:16 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/MediaPlayerUI.framework/MediaPlayerUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import 10 | #import 11 | 12 | @interface MPUEmptyNowPlayingView : UIButton { 13 | 14 | UIImageView* _appIconImageView; 15 | UILabel* _appDisplayNameLabel; 16 | UILabel* _continueListeningLabel; 17 | BOOL _shouldShowActionText; 18 | id _delegate; 19 | NSString* _appBundleIdentifier; 20 | 21 | } 22 | 23 | @property (assign,nonatomic) id delegate; //@synthesize delegate=_delegate - In the implementation block 24 | @property (nonatomic,copy) NSString * appBundleIdentifier; //@synthesize appBundleIdentifier=_appBundleIdentifier - In the implementation block 25 | @property (assign,nonatomic) BOOL shouldShowActionText; //@synthesize shouldShowActionText=_shouldShowActionText - In the implementation block 26 | -(id)initWithFrame:(CGRect)arg1 ; 27 | -(void)layoutSubviews; 28 | -(void)setDelegate:(id)arg1 ; 29 | -(id)delegate; 30 | -(void)setHighlighted:(BOOL)arg1 ; 31 | -(NSString *)appBundleIdentifier; 32 | -(void)setAppBundleIdentifier:(NSString *)arg1 ; 33 | -(void)setShouldShowActionText:(BOOL)arg1 ; 34 | -(id)_desaturatedImageWithImage:(id)arg1 ; 35 | -(BOOL)shouldShowActionText; 36 | @end 37 | -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUEmptyNowPlayingViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUEmptyNowPlayingViewDelegate 2 | @optional 3 | -(void)emptyNowPlayingView:(id)arg1 couldNotLoadApplication:(id)arg2; 4 | 5 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUNowPlayingArtworkView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:56:17 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/MediaPlayerUI.framework/MediaPlayerUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import 10 | 11 | @interface MPUNowPlayingArtworkView : UIView { 12 | 13 | UIView* _artworkContainerView; 14 | UIImageView* _artworkImageView; 15 | UIView* _artworkHighlightOverlay; 16 | UIImage* _placeholderImage; 17 | UIButton* _button; 18 | BOOL _activated; 19 | 20 | } 21 | 22 | @property (nonatomic,retain) UIImage * artworkImage; 23 | @property (assign,nonatomic) BOOL activated; //@synthesize activated=_activated - In the implementation block 24 | -(id)initWithFrame:(CGRect)arg1 ; 25 | -(void)layoutSubviews; 26 | -(void)addTarget:(id)arg1 action:(SEL)arg2 forControlEvents:(NSUInteger)arg3 ; 27 | -(id)initWithCoder:(id)arg1 ; 28 | -(void)_init; 29 | -(void)removeTarget:(id)arg1 action:(SEL)arg2 forControlEvents:(NSUInteger)arg3 ; 30 | -(BOOL)activated; 31 | -(void)setActivated:(BOOL)arg1 ; 32 | -(UIImage *)artworkImage; 33 | -(void)setActivated:(BOOL)arg1 animated:(BOOL)arg2 ; 34 | -(void)_touchControlActivate:(id)arg1 ; 35 | -(void)_touchControlDeactivate:(id)arg1 ; 36 | -(void)setArtworkImage:(UIImage *)arg1 ; 37 | @end 38 | -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUNowPlayingDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUNowPlayingDelegate 2 | @optional 3 | -(void)nowPlayingController:(id)arg1 nowPlayingInfoDidChange:(id)arg2; 4 | -(void)nowPlayingController:(id)arg1 playbackStateDidChange:(BOOL)arg2; 5 | -(void)nowPlayingController:(id)arg1 nowPlayingApplicationDidChange:(id)arg2; 6 | -(void)nowPlayingControllerDidBeginListeningForNotifications:(id)arg1; 7 | -(void)nowPlayingControllerDidStopListeningForNotifications:(id)arg1; 8 | -(void)nowPlayingController:(id)arg1 elapsedTimeDidChange:(CGFloat)arg2; 9 | 10 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUNowPlayingMetadata.h: -------------------------------------------------------------------------------- 1 | @interface MPUNowPlayingMetadata : NSObject { 2 | 3 | NSDictionary* _nowPlayingInfo; 4 | 5 | } 6 | 7 | @property (nonatomic,readonly) NSDictionary * nowPlayingInfo; //@synthesize nowPlayingInfo=_nowPlayingInfo - In the implementation block 8 | @property (nonatomic,readonly) NSString * title; 9 | @property (nonatomic,readonly) NSString * artist; 10 | @property (nonatomic,readonly) NSString * album; 11 | @property (nonatomic,readonly) CGFloat elapsedTime; 12 | @property (nonatomic,readonly) CGFloat duration; 13 | @property (nonatomic,readonly) CGFloat playbackRate; 14 | @property (nonatomic,readonly) NSUInteger persistentID; 15 | @property (nonatomic,readonly) NSString * radioStationIdentifier; 16 | @property (getter=isMusicApp,nonatomic,readonly) BOOL musicApp; 17 | @property (getter=isAlwaysLive,nonatomic,readonly) BOOL alwaysLive; 18 | @property (getter=isExplicitContent,nonatomic,readonly) BOOL explicitContent; 19 | -(CGFloat)duration; 20 | -(NSString *)title; 21 | -(CGFloat)elapsedTime; 22 | -(CGFloat)playbackRate; 23 | -(NSString *)artist; 24 | -(BOOL)isExplicitContent; 25 | -(NSDictionary *)nowPlayingInfo; 26 | -(BOOL)isAlwaysLive; 27 | -(NSString *)album; 28 | -(NSUInteger)persistentID; 29 | -(id)initWithMediaRemoteNowPlayingInfo:(id)arg1 ; 30 | -(NSString *)radioStationIdentifier; 31 | -(BOOL)isMusicApp; 32 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUNowPlayingMetadataView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This header is generated by classdump-dyld 1.0 3 | * on Tuesday, December 27, 2016 at 4:56:16 PM Japan Standard Time 4 | * Operating System: Version 10.1.1 (Build 14B150) 5 | * Image Source: /System/Library/PrivateFrameworks/MediaPlayerUI.framework/MediaPlayerUI 6 | * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos. 7 | */ 8 | 9 | #import 10 | #import 11 | 12 | @interface MPUNowPlayingMetadataView : UIView { 13 | 14 | MPUMarqueeView* _marqueeView; 15 | UILabel* _label; 16 | UIButton* _button; 17 | BOOL _marqueeEnabled; 18 | NSAttributedString* _attributedText; 19 | NSUInteger _numberOfLines; 20 | 21 | } 22 | 23 | @property (nonatomic,copy) NSAttributedString * attributedText; //@synthesize attributedText=_attributedText - In the implementation block 24 | @property (assign,nonatomic) NSUInteger numberOfLines; //@synthesize numberOfLines=_numberOfLines - In the implementation block 25 | @property (assign,nonatomic) BOOL marqueeEnabled; //@synthesize marqueeEnabled=_marqueeEnabled - In the implementation block 26 | @property (nonatomic,readonly) CGFloat firstBaselineOffsetFromTop; 27 | @property (nonatomic,readonly) CGFloat baselineOffsetFromBottom; 28 | +(Class)labelClass; 29 | -(id)initWithFrame:(CGRect)arg1 ; 30 | -(void)layoutSubviews; 31 | -(void)addTarget:(id)arg1 action:(SEL)arg2 forControlEvents:(NSUInteger)arg3 ; 32 | -(CGSize)sizeThatFits:(CGSize)arg1 ; 33 | -(void)setNumberOfLines:(NSUInteger)arg1 ; 34 | -(void)setAttributedText:(NSAttributedString *)arg1 ; 35 | -(NSAttributedString *)attributedText; 36 | -(void)removeTarget:(id)arg1 action:(SEL)arg2 forControlEvents:(NSUInteger)arg3 ; 37 | -(UILabel *)label; 38 | -(NSUInteger)numberOfLines; 39 | -(void)setMarqueeEnabled:(BOOL)arg1 ; 40 | -(BOOL)marqueeEnabled; 41 | -(CGFloat)baselineOffsetFromBottom; 42 | -(void)_touchControlActivate:(id)arg1 ; 43 | -(void)_touchControlDeactivate:(id)arg1 ; 44 | -(CGFloat)firstBaselineOffsetFromTop; 45 | @end 46 | -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUSupportedRemoteControls.h: -------------------------------------------------------------------------------- 1 | @interface MPUSupportedRemoteControls : NSObject { 2 | 3 | NSArray* _commandInfoObjects; 4 | 5 | } 6 | 7 | @property (nonatomic,readonly) NSArray * commandInfoObjects; //@synthesize commandInfoObjects=_commandInfoObjects - In the implementation block 8 | @property (nonatomic,readonly) BOOL interactiveScrubbingSupported; 9 | -(id)init; 10 | -(BOOL)commandIsActivated:(unsigned)arg1 ; 11 | -(BOOL)commandIsSupportedAndEnabled:(unsigned)arg1 ; 12 | -(BOOL)interactiveScrubbingSupported; 13 | -(id)initWithMediaRemoteCommands:(id)arg1 ; 14 | -(BOOL)_commandIsSupported:(unsigned)arg1 andEnabled:(BOOL*)arg2 activated:(BOOL*)arg3 ; 15 | -(NSArray *)commandInfoObjects; 16 | @end 17 | -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUTransportControlMediaRemoteControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUTransportControlMediaRemoteControllerDelegate 2 | @optional 3 | -(id)transportControlMediaRemoteController:(id)arg1 alternateKeyForMediaRemoteNowPlayingInfoKey:(id)arg2; 4 | 5 | @required 6 | -(id)presentingViewControllerForLikeBanActionSheetForTransportControlMediaRemoteController:(id)arg1; 7 | -(void)transportControlMediaRemoteController:(id)arg1 requestsPushingMediaRemoteCommand:(NSInteger)arg2 withOptions:(id)arg3 shouldLaunchApplication:(BOOL)arg4; 8 | 9 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUTransportControlsViewDataSource-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUTransportControlsViewDataSource 2 | @required 3 | -(id)transportControlsView:(id)arg1 buttonForControlType:(NSInteger)arg2; 4 | 5 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUTransportControlsViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUTransportControlsViewDelegate 2 | @optional 3 | -(void)transportControlsView:(id)arg1 tapOnControlType:(NSInteger)arg2; 4 | -(void)transportControlsView:(id)arg1 longPressBeginOnControlType:(NSInteger)arg2; 5 | -(void)transportControlsView:(id)arg1 longPressEndOnControlType:(NSInteger)arg2; 6 | -(CGFloat)transportControlsView:(id)arg1 transportButtonUnhighlightAnimationDurationForControlType:(NSInteger)arg2; 7 | 8 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUTransportControlsViewLayoutDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPUTransportControlsViewLayoutDelegate 2 | @optional 3 | -(CGFloat)transportControlsView:(id)arg1 adjustedMaximumLayoutWidthOfTransportButtonWithControlType:(NSInteger)arg2; 4 | -(void)transportControlsViewDidLayoutSubviews:(id)arg1; 5 | -(CGRect*)transportControlsView:(id)arg1 adjustedFrameOfTransportButtonWithControlType:(NSInteger)arg2 proposedFrame:(CGRect)arg3; 6 | -(CGSize*)transportControlsView:(id)arg1 defaultTransportButtonSizeWithProposedSize:(CGSize)arg2; 7 | 8 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPUVolumeHUDController.h: -------------------------------------------------------------------------------- 1 | @interface MPUVolumeHUDController : NSObject { 2 | 3 | NSMutableDictionary* _categoriesToEnabledStates; 4 | 5 | } 6 | 7 | @property (nonatomic,readonly) NSDictionary * categoriesToEnabledStates; 8 | -(id)init; 9 | // -(void)dealloc; 10 | -(NSDictionary *)categoriesToEnabledStates; 11 | -(BOOL)volumeHUDEnabledForCategory:(id)arg1 ; 12 | -(void)setVolumeHUDEnabled:(BOOL)arg1 forCategory:(id)arg2 ; 13 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPVolumeControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol MPVolumeControllerDelegate 2 | @optional 3 | -(void)volumeController:(id)arg1 volumeValueDidChange:(CGFloat)arg2; 4 | -(void)volumeController:(id)arg1 volumeWarningStateDidChange:(NSInteger)arg2; 5 | -(void)volumeController:(id)arg1 mutedStateDidChange:(BOOL)arg2; 6 | -(void)volumeController:(id)arg1 EUVolumeLimitDidChange:(CGFloat)arg2; 7 | -(void)volumeController:(id)arg1 EUVolumeLimitEnforcedDidChange:(BOOL)arg2; 8 | 9 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MPWeakTimer.h: -------------------------------------------------------------------------------- 1 | @interface MPWeakTimer : NSObject 2 | +(id)timerWithInterval:(CGFloat)arg1 repeats:(BOOL)arg2 block:(/*^block*/id)arg3 ; 3 | +(id)timerWithInterval:(CGFloat)arg1 repeats:(BOOL)arg2 queue:(id)arg3 block:(/*^block*/id)arg4 ; 4 | +(id)timerWithInterval:(CGFloat)arg1 block:(/*^block*/id)arg2 ; 5 | +(id)timerWithInterval:(CGFloat)arg1 queue:(id)arg2 block:(/*^block*/id)arg3 ; 6 | -(void)dealloc; 7 | -(void)invalidate; 8 | -(id)initWithInterval:(CGFloat)arg1 queue:(id)arg2 block:(/*^block*/id)arg3 ; 9 | -(id)initWithInterval:(CGFloat)arg1 repeats:(BOOL)arg2 queue:(id)arg3 block:(/*^block*/id)arg4 ; 10 | @end -------------------------------------------------------------------------------- /headers/MediaPlayerUI/MediaPlayerUI+Private.h: -------------------------------------------------------------------------------- 1 | #import "MPAVBatteryLevel.h" 2 | #import "MPAVRoute.h" 3 | #import "MPAVRoutingController.h" 4 | #import "MPAVRoutingControllerDelegate-Protocol.h" 5 | #import "MPAVRoutingViewControllerDelegate-Protocol.h" 6 | #import "MPUAVRouteHeaderLabel.h" 7 | #import "MPUAVRouteHeaderView.h" 8 | #import "MPUChronologicalProgressView.h" 9 | #import "MPUChronologicalProgressViewDelegate-Protocol.h" 10 | #import "MPUControlCenterMediaControlsView.h" 11 | #import "MPUControlCenterMediaControlsViewController.h" 12 | #import "MPUControlCenterMediaControlsViewDelegate-Protocol.h" 13 | #import "MPUControlCenterMetadataView.h" 14 | #import "MPUControlCenterTimeView.h" 15 | #import "MPUEmptyNowPlayingView.h" 16 | #import "MPUEmptyNowPlayingViewDelegate-Protocol.h" 17 | #import "MPUMediaControlsVolumeView.h" 18 | #import "MPUMediaRemoteControlsView.h" 19 | #import "MPUMediaRemoteViewController.h" 20 | #import "MPUNowPlayingArtworkView.h" 21 | #import "MPUNowPlayingController.h" 22 | #import "MPUNowPlayingDelegate-Protocol.h" 23 | #import "MPUNowPlayingMetadata.h" 24 | #import "MPUNowPlayingMetadataView.h" 25 | #import "MPUSupportedRemoteControls.h" 26 | #import "MPUTransportControlMediaRemoteController.h" 27 | #import "MPUTransportControlMediaRemoteControllerDelegate-Protocol.h" 28 | #import "MPUTransportControlsView.h" 29 | #import "MPUTransportControlsViewDataSource-Protocol.h" 30 | #import "MPUTransportControlsViewDelegate-Protocol.h" 31 | #import "MPUTransportControlsViewLayoutDelegate-Protocol.h" 32 | #import "MPUVolumeHUDController.h" 33 | #import "MPVolumeController.h" 34 | #import "MPVolumeControllerDelegate-Protocol.h" 35 | -------------------------------------------------------------------------------- /headers/NSBlock.h: -------------------------------------------------------------------------------- 1 | @interface NSBlock : NSObject 2 | - (void)performAfterDelay:(CGFloat)arg1; 3 | - (NSBlock *)copy; 4 | - (void)invoke; 5 | @end -------------------------------------------------------------------------------- /headers/Polus/PLContainerView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface PLContainerView : CCUIButtonStackPagingView 4 | @end -------------------------------------------------------------------------------- /headers/Polus/PLPrefsHelper.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @interface PLPrefsHelper : NSObject { 6 | @private 7 | NSBundle *_ownBundle; 8 | NSMutableDictionary *_prefsDict; 9 | BOOL _iPad; 10 | } 11 | 12 | + (instancetype)sharedInstance; 13 | 14 | - (NSMutableDictionary *)prefsDict; 15 | 16 | - (NSMutableDictionary *)topShelfPrefs; 17 | - (NSMutableDictionary *)bottomShelfPrefs; 18 | 19 | - (void)verifyButtonsInShelfDict:(NSMutableDictionary *)shelfDict; 20 | 21 | - (void)reloadPrefs; 22 | - (void)savePrefs; 23 | 24 | - (UIImage *)ownImageNamed:(NSString *)name; 25 | - (NSString *)ownStringForKey:(NSString *)key; 26 | - (NSBundle *)ownBundle; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /headers/Polus/Polus.h: -------------------------------------------------------------------------------- 1 | #import "PLAppsController.h" 2 | #import "PLPrefsHelper.h" 3 | #import "PLContainerView.h" -------------------------------------------------------------------------------- /headers/Preferences/PSBundleController.h: -------------------------------------------------------------------------------- 1 | @class PSListController, PSSpecifier; 2 | 3 | @interface PSBundleController : NSObject 4 | 5 | - (instancetype)initWithParentListController:(PSListController *)listController; 6 | - (instancetype)initWithParentListController:(PSListController *)listController properties:(NSDictionary *)properties; 7 | 8 | - (NSArray *)specifiersWithSpecifier:(PSSpecifier *)specifier; 9 | 10 | - (void)load; 11 | - (void)unload; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /headers/Preferences/PSControlTableCell.h: -------------------------------------------------------------------------------- 1 | #import "PSTableCell.h" 2 | 3 | @interface PSControlTableCell : PSTableCell 4 | 5 | - (void)controlChanged:(UIControl *)control; 6 | 7 | @property (nonatomic, retain) UIControl *control; 8 | @property (nonatomic, retain) id value; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /headers/Preferences/PSDetailController.h: -------------------------------------------------------------------------------- 1 | #import "PSViewController.h" 2 | 3 | @class PSEditingPane; 4 | 5 | @interface PSDetailController : PSViewController { 6 | PSEditingPane *_pane; 7 | } 8 | 9 | @property (nonatomic) PSEditingPane *pane; 10 | 11 | - (void)didRotateFromInterfaceOrientation:(int)arg1; 12 | - (void)loadPane; 13 | - (void)loadView; 14 | - (PSEditingPane *)pane; 15 | - (struct CGRect)paneFrame; 16 | - (void)saveChanges; 17 | - (void)setPane:(PSEditingPane *)arg1; 18 | - (void)statusBarWillAnimateByHeight:(float)arg1; 19 | - (void)suspend; 20 | - (id)title; 21 | - (void)viewDidAppear:(BOOL)arg1; 22 | - (void)viewDidLayoutSubviews; 23 | - (void)viewDidUnload; 24 | - (void)viewWillAppear:(BOOL)arg1; 25 | - (void)viewWillDisappear:(BOOL)arg1; 26 | - (void)willAnimateRotationToInterfaceOrientation:(int)arg1 duration:(double)arg2; 27 | - (void)willRotateToInterfaceOrientation:(int)arg1 duration:(double)arg2; 28 | 29 | @end -------------------------------------------------------------------------------- /headers/Preferences/PSDiscreteSlider.h: -------------------------------------------------------------------------------- 1 | @interface PSDiscreteSlider : UISlider 2 | 3 | @property (nonatomic, retain) UIColor *trackMarkersColor; 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /headers/Preferences/PSEditableTableCell.h: -------------------------------------------------------------------------------- 1 | #import "PSTableCell.h" 2 | 3 | @interface PSEditableTableCell : PSTableCell { 4 | id _userInfo; 5 | SEL _targetSetter; 6 | id _realTarget; 7 | } 8 | 9 | - (void)controlChanged:(id)changed; 10 | - (void)setValueChangedOnReturn; 11 | - (void)setValueChangedTarget:(id)target action:(SEL)action userInfo:(id)info; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /headers/Preferences/PSEditingPane.h: -------------------------------------------------------------------------------- 1 | #import "PSSpecifier.h" 2 | 3 | @interface PSEditingPane : UIView { 4 | id _delegate; 5 | unsigned int _requiresKeyboard; 6 | PSSpecifier *_specifier; 7 | UIViewController *_viewController; 8 | } 9 | 10 | @property (nonatomic) UIViewController *viewController; 11 | 12 | + (id)defaultBackgroundColor; 13 | + (float)preferredHeight; 14 | 15 | - (void)addNewValue; 16 | - (BOOL)changed; 17 | - (id)childViewControllerForHostingViewController; 18 | - (struct CGRect)contentRect; 19 | - (void)didRotateFromInterfaceOrientation:(int)arg1; 20 | - (void)doneEditing; 21 | - (void)editMode; 22 | - (BOOL)handlesDoneButton; 23 | - (id)initWithFrame:(struct CGRect)arg1; 24 | - (void)insetContent; 25 | - (void)layoutInsetContent:(struct CGRect)arg1; 26 | - (id)preferenceSpecifier; 27 | - (id)preferenceValue; 28 | - (BOOL)requiresKeyboard; 29 | - (id)scrollViewToBeInsetted; 30 | - (void)setDelegate:(id)arg1; 31 | - (void)setPreferenceSpecifier:(id)arg1; 32 | - (void)setPreferenceValue:(id)arg1; 33 | - (void)setViewController:(UIViewController *)arg1; 34 | - (BOOL)shouldInsetContent; 35 | - (id)specifierLabel; 36 | - (UIViewController *)viewController; 37 | - (void)viewDidBecomeVisible; 38 | - (BOOL)wantsNewButton; 39 | - (void)willAnimateRotationToInterfaceOrientation:(int)arg1 duration:(double)arg2; 40 | - (void)willRotateToInterfaceOrientation:(int)arg1 duration:(double)arg2; 41 | 42 | @end -------------------------------------------------------------------------------- /headers/Preferences/PSHeaderFooterView.h: -------------------------------------------------------------------------------- 1 | @class PSSpecifier, UITableView; 2 | 3 | @protocol PSHeaderFooterView 4 | 5 | @required 6 | - (UIView *)initWithSpecifier:(PSSpecifier *)specifier; 7 | 8 | @optional 9 | - (CGFloat)preferredHeightForWidth:(CGFloat)width inTableView:(UITableView *)tableView; 10 | - (CGFloat)preferredHeightForWidth:(CGFloat)width; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /headers/Preferences/PSListItemsController.h: -------------------------------------------------------------------------------- 1 | #import "PSListController.h" 2 | 3 | @interface PSListItemsController : PSListController 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /headers/Preferences/PSRootController.h: -------------------------------------------------------------------------------- 1 | @class PSListController; 2 | 3 | @interface PSRootController : UINavigationController 4 | 5 | - (instancetype)initWithTitle:(NSString *)title identifier:(NSString *)identifier; 6 | 7 | - (void)pushController:(PSListController *)controller; // < 3.2 8 | - (void)pushController:(id)arg1 animate:(bool)arg2; 9 | - (void)pushViewController:(id)arg1 animated:(BOOL)animated; 10 | - (id)popViewControllerAnimated:(bool)arg1; 11 | - (void)suspend; 12 | 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /headers/Preferences/PSSliderTableCell.h: -------------------------------------------------------------------------------- 1 | #import "PSControlTableCell.h" 2 | 3 | @interface PSSliderTableCell : PSControlTableCell 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /headers/Preferences/PSSpecifierDataSource.h: -------------------------------------------------------------------------------- 1 | @protocol PSSpecifierDataSource 2 | @required 3 | +(id)sharedInstance; 4 | -(void)addObserver:(id)arg1; 5 | -(void)removeObserver:(id)arg1; 6 | -(id)specifiersForSpecifier:(id)arg1 observer:(id)arg2; 7 | 8 | @end 9 | 10 | @interface PSSpecifierDataSource : NSObject { 11 | 12 | NSMutableSet* _observerRefs; 13 | BOOL _specifiersLoaded; 14 | NSMutableArray* _specifiers; 15 | 16 | } 17 | 18 | @property (nonatomic,readonly) NSMutableArray * specifiers; //@synthesize specifiers=_specifiers - In the implementation block 19 | +(id)sharedInstance; 20 | +(id)loadSpecifiersFromPlist:(id)arg1 inBundle:(id)arg2 target:(id)arg3 stringsTable:(id)arg4 ; 21 | -(id)init; 22 | -(void)addObserver:(id)arg1 ; 23 | -(void)removeObserver:(id)arg1 ; 24 | -(id)observers; 25 | -(void)reloadSpecifiers; 26 | -(id)specifiersForSpecifier:(id)arg1 observer:(id)arg2 ; 27 | -(id)specifierForID:(id)arg1 ; 28 | -(void)setPreferenceValue:(id)arg1 specifier:(id)arg2 ; 29 | -(id)readPreferenceValue:(id)arg1 ; 30 | -(id)observersOfClass:(Class)arg1 ; 31 | -(void)enumerateObserversOfClass:(Class)arg1 usingBlock:(/*^block*/id)arg2 ; 32 | -(BOOL)areSpecifiersLoaded; 33 | -(void)loadSpecifiers; 34 | -(void)_clearAllSpecifiers; 35 | -(void)_invalidateSpecifiersForObservers; 36 | -(void)performUpdates:(id)arg1 ; 37 | -(void)performUpdatesAnimated:(BOOL)arg1 usingBlock:(/*^block*/id)arg2 ; 38 | -(NSMutableArray *)specifiers; 39 | -(void)enumerateObserversUsingBlock:(/*^block*/id)arg1 ; 40 | @end 41 | -------------------------------------------------------------------------------- /headers/Preferences/PSSwitchTableCell.h: -------------------------------------------------------------------------------- 1 | #import "PSControlTableCell.h" 2 | 3 | @class UIActivityIndicatorView; 4 | 5 | @interface PSSwitchTableCell : PSControlTableCell { 6 | UIActivityIndicatorView *_activityIndicator; 7 | } 8 | 9 | @property BOOL loading; 10 | 11 | - (BOOL)loading; 12 | - (void)setLoading:(BOOL)loading; 13 | - (id)controlValue; 14 | - (id)newControl; 15 | - (void)setCellEnabled:(BOOL)enabled; 16 | - (void)refreshCellContentsWithSpecifier:(id)specifier; 17 | - (id)initWithStyle:(int)style reuseIdentifier:(id)identifier specifier:(id)specifier; 18 | - (void)reloadWithSpecifier:(id)specifier animated:(BOOL)animated; 19 | - (BOOL)canReload; 20 | - (void)prepareForReuse; 21 | - (void)layoutSubviews; 22 | - (void)setValue:(id)value; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /headers/Preferences/PSTableCell.h: -------------------------------------------------------------------------------- 1 | @class PSSpecifier; 2 | 3 | typedef NS_ENUM(NSInteger, PSCellType) { 4 | PSGroupCell, 5 | PSLinkCell, 6 | PSLinkListCell, 7 | PSListItemCell, 8 | PSTitleValueCell, 9 | PSSliderCell, 10 | PSSwitchCell, 11 | PSStaticTextCell, 12 | PSEditTextCell, 13 | PSSegmentCell, 14 | PSGiantIconCell, 15 | PSGiantCell, 16 | PSSecureEditTextCell, 17 | PSButtonCell, 18 | PSEditTextViewCell 19 | }; 20 | 21 | @interface PSTableCell : UITableViewCell 22 | 23 | + (PSCellType)cellTypeFromString:(NSString *)cellType; 24 | 25 | - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier specifier:(PSSpecifier *)specifier; 26 | 27 | - (void)refreshCellContentsWithSpecifier:(PSSpecifier *)specifier; 28 | 29 | - (void)setSeparatorStyle:(UITableViewCellSeparatorStyle)style; 30 | 31 | @property (nonatomic, retain) PSSpecifier *specifier; 32 | @property (nonatomic) PSCellType type; 33 | @property (nonatomic, retain) id target; 34 | @property (nonatomic) SEL action; 35 | 36 | @property (nonatomic, retain) id cellTarget; 37 | @property (nonatomic) SEL cellAction; 38 | 39 | @property (nonatomic) BOOL cellEnabled; 40 | 41 | @property (nonatomic, retain) UIImage *icon; 42 | 43 | - (UIImage *)getLazyIcon; 44 | 45 | @property (nonatomic, retain, readonly) UIImage *blankIcon; 46 | @property (nonatomic, retain, readonly) NSString *lazyIconAppID; 47 | 48 | @property (nonatomic, retain, readonly) UILabel *titleLabel; 49 | 50 | @end 51 | -------------------------------------------------------------------------------- /headers/Preferences/PSViewController.h: -------------------------------------------------------------------------------- 1 | @class PSSpecifier; 2 | 3 | @interface PSViewController : UIViewController 4 | 5 | - (instancetype)initForContentSize:(CGSize)contentSize; 6 | 7 | - (void)pushController:(PSViewController *)controller; 8 | - (void)pushController:(PSViewController *)controller animate:(BOOL)animated; 9 | 10 | - (void)showController:(PSViewController *)controller; 11 | - (void)showController:(PSViewController *)controller animate:(BOOL)animated; 12 | 13 | - (id)readPreferenceValue:(PSSpecifier *)specifier; 14 | - (void)setPreferenceValue:(id)value specifier:(PSSpecifier *)specifier; 15 | 16 | @property (nonatomic, retain) PSSpecifier *specifier; 17 | @property (nonatomic, retain) PSViewController *parentController; 18 | @property (nonatomic, retain) PSViewController *rootController; 19 | 20 | - (void)suspend; 21 | 22 | - (void)willBecomeActive; 23 | - (void)willResignActive; 24 | - (void)willUnlock; 25 | 26 | - (void)didLock; 27 | - (void)didUnlock; 28 | - (void)didWake; 29 | 30 | - (void)formSheetViewDidDisappear; 31 | - (void)formSheetViewWillDisappear; 32 | 33 | - (void)popupViewDidDisappear; 34 | - (void)popupViewWillDisappear; 35 | 36 | - (void)handleURL:(NSURL *)url; 37 | - (void)statusBarWillAnimateByHeight:(float)arg1; 38 | 39 | - (BOOL)canBeShownFromSuspendedState; 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /headers/Preferences/Preferences+Private.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | 5 | @interface PSListController (libprefs) 6 | - (NSArray *)specifiersFromEntry:(NSDictionary *)entry sourcePreferenceLoaderBundlePath:(NSString *)sourceBundlePath title:(NSString *)title; 7 | @end 8 | 9 | extern NSString *const PLFilterKey; 10 | 11 | @interface PSSpecifier (libprefs) 12 | + (BOOL)environmentPassesPreferenceLoaderFilter:(NSDictionary *)filter; 13 | @property (nonatomic, retain, readonly) NSBundle *preferenceLoaderBundle; 14 | @end 15 | 16 | @interface PLCustomListController: PSListController { } 17 | @end 18 | 19 | @interface PLLocalizedListController: PLCustomListController { } 20 | @end 21 | 22 | #import "PSSpecifierDataSource.h" -------------------------------------------------------------------------------- /headers/Preferences/Preferences.h: -------------------------------------------------------------------------------- 1 | #import "DevicePINController.h" 2 | #import "DevicePINPane.h" 3 | #import "PreferencesAppController.h" 4 | #import "PSBundleController.h" 5 | #import "PSDetailController.h" 6 | #import "PSControlTableCell.h" 7 | #import "PSDiscreteSlider.h" 8 | #import "PSEditableTableCell.h" 9 | #import "PSEditingPane.h" 10 | #import "PSHeaderFooterView.h" 11 | #import "PSListController.h" 12 | #import "PSListItemsController.h" 13 | #import "PSRootController.h" 14 | #import "PSSliderTableCell.h" 15 | #import "PSSpecifier.h" 16 | #import "PSSwitchTableCell.h" 17 | #import "PSTableCell.h" 18 | #import "PSViewController.h" -------------------------------------------------------------------------------- /headers/Preferences/PreferencesAppController.h: -------------------------------------------------------------------------------- 1 | @class PSUIPrefsRootController; 2 | 3 | @interface PreferencesAppController : UIApplication/*this is from Preferences.app, not framework*/ 4 | 5 | @property (nonatomic, retain) PSUIPrefsRootController *rootController; 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /headers/QuartzCore/CAAnimationDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // @protocol CAAnimationDelegate 2 | // @optional 3 | // -(void)animationDidStop:(id)arg1 finished:(BOOL)arg2; 4 | // -(void)animationDidStart:(id)arg1; 5 | 6 | // @end -------------------------------------------------------------------------------- /headers/QuartzCore/CAFilter.h: -------------------------------------------------------------------------------- 1 | @interface CAFilter : NSObject 2 | @property (readonly) NSString * type; 3 | @property (copy) NSString * name; 4 | @property (getter=isEnabled) BOOL enabled; 5 | @property (assign) BOOL cachesInputImage; 6 | +(void)CAMLParserStartElement:(id)arg1; 7 | +(instancetype)filterWithName:(id)arg1; 8 | +(instancetype)filterWithType:(id)arg1; 9 | +(BOOL)automaticallyNotifiesObserversForKey:(id)arg1; 10 | +(id)filterTypes; 11 | -(void)CAMLParser:(id)arg1 setValue:(id)arg2 forKey:(id)arg3; 12 | -(void)encodeWithCAMLWriter:(id)arg1; 13 | -(id)CAMLTypeForKey:(id)arg1; 14 | -(BOOL)cachesInputImage; 15 | -(BOOL)enabled; 16 | -(id)valueForKey:(id)arg1; 17 | -(void)setValue:(id)arg1 forKey:(id)arg2; 18 | -(id)initWithCoder:(id)arg1; 19 | -(void)encodeWithCoder:(id)arg1; 20 | -(void)setName:(NSString *)arg1; 21 | -(NSString *)name; 22 | -(NSString *)type; 23 | -(void)setEnabled:(BOOL)arg1; 24 | -(BOOL)isEnabled; 25 | -(id)copyWithZone:(NSZone*)arg1; 26 | -(id)initWithType:(id)arg1; 27 | -(void)setCachesInputImage:(BOOL)arg1; 28 | -(id)mutableCopyWithZone:(NSZone*)arg1; 29 | -(id)initWithName:(id)arg1; 30 | -(void)setDefaults; 31 | @end -------------------------------------------------------------------------------- /headers/QuartzCore/CALayer+Private.h: -------------------------------------------------------------------------------- 1 | @interface CALayer (Private) 2 | @property (assign) CGColorRef contentsMultiplyColor; 3 | - (void)setAllowsGroupBlending:(BOOL)allowed; 4 | 5 | @end -------------------------------------------------------------------------------- /headers/QuartzCore/QuartzCore+Private.h: -------------------------------------------------------------------------------- 1 | #import "CAAnimationDelegate-Protocol.h" 2 | #import "CAFilter.h" 3 | #import "CALayer+Private.h" 4 | -------------------------------------------------------------------------------- /headers/SpringBoard/CCUIControlCenterSystemAgent-Protocol.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @protocol CCUIControlCenterSystemAgent 4 | - (NSString *)frontmostApplicationDisplayID; 5 | - (NSArray *)getFGSceneIdentifiers; 6 | - (BOOL)wifiIsPowered; 7 | - (BOOL)wifiDevicePresent; 8 | - (void)setWifiPowered:(BOOL)arg1; 9 | - (void)updateWifiDevicePresence; 10 | - (BOOL)isInAirplaneMode; 11 | - (BOOL)isOrientationLocked; 12 | - (void)unlockOrientation; 13 | - (void)lockOrientation; 14 | - (BOOL)wirelessDisplayRouteIsPicked; 15 | - (NSString *)nameOfPickedRoute; 16 | - (BOOL)handsetRouteIsSelected; 17 | - (void)setRingerMuted:(BOOL)arg1; 18 | - (BOOL)isRingerMuted; 19 | - (void)activateAppWithDisplayID:(NSString *)arg1 url:(NSURL *)arg2; 20 | - (void)dismissAnimated:(BOOL)arg1 completion:(void (^)(void))arg2; 21 | - (CCUIControlCenterSettings *)prototypeSettings; 22 | 23 | @optional 24 | - (BOOL)isUILocked; 25 | - (UIView *)materialBackgroundView; 26 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBApplicationIcon.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import "SBLeafIcon.h" 8 | 9 | @class NSString; 10 | 11 | @interface SBApplicationIcon : SBLeafIcon 12 | { 13 | NSString *_displayIdentifier; 14 | } 15 | 16 | - (id)applicationBundleID; 17 | - (id)folderFallbackTitle; 18 | - (id)folderTitleOptions; 19 | - (void)setBadge:(id)arg1; 20 | - (id)automationID; 21 | - (id)tags; 22 | - (id)getUnmaskedIconImage:(int)arg1; 23 | - (id)generateIconImage:(int)arg1; 24 | - (BOOL)canGenerateImageInBackgroundForFormat:(int)arg1; 25 | - (void)generateIconImageInBackground:(id)arg1; 26 | - (id)blockForGeneratingIconImageInBackgroundWithFormat:(SEL)arg1; 27 | - (id)_blockForGeneratingIconImageInBackgroundWithFormat:(SEL)arg1 complete:(int)arg2; 28 | - (id)__loadIconImageForDataSource:(id)arg1 format:(int)arg2; 29 | - (id)application; 30 | - (void)dealloc; 31 | - (id)copyWithZone:(struct _NSZone *)arg1; 32 | - (id)initWithApplication:(id)arg1; 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBApplicationRestrictionDataSource-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBApplicationRestrictionDataSource 10 | - (id)allApplications; 11 | - (id)applicationWithDisplayIdentifier:(id)arg1; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBApplicationRestrictionObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBApplicationRestrictionObserver 10 | - (void)applicationRestrictionController:(id)arg1 didUpdateVisibleTags:(id)arg2 hiddenTags:(id)arg3; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBControlCenterController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface SBControlCenterController : NSObject 4 | + (instancetype)sharedInstance; 5 | + (id)sharedInstanceIfExists; 6 | - (CCUIControlCenterViewController *)_controlCenterViewController; 7 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBDarkeningImageViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBDarkeningImageViewDelegate 10 | - (id)darkeningImageView:(id)arg1 settableImageForImage:(id)arg2; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBDashBoardCombinedListViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface SBDashBoardCombinedListViewController : UIViewController 5 | @property (assign,nonatomic) SBDashBoardNotificationDispatcher *dispatcher; 6 | -(void)notificationListViewController:(id)arg1 requestsClearingNotificationRequestsFromDate:(id)arg2 toDate:(id)arg3 inSections:(id)arg4; 7 | -(void)notificationListViewController:(id)arg1 requestsClearingNotificationRequestsInSections:(id)arg2; 8 | -(void)notificationListViewController:(id)arg1 requestsClearingNotificationRequests:(NSSet *)requests; 9 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBDashBoardNotificationDispatcher.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface SBDashBoardNotificationDispatcher : NSObject { 4 | NCNotificationDispatcher *_notificationDestinationDelegate; 5 | } 6 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBDisplayProtocol-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBDisplayProtocol 10 | - (id)deactivationValue:(unsigned int)arg1; 11 | - (BOOL)deactivationFlag:(unsigned int)arg1; 12 | - (void)setDeactivationSetting:(unsigned int)arg1 value:(id)arg2; 13 | - (void)setDeactivationSetting:(unsigned int)arg1 flag:(BOOL)arg2; 14 | - (void)clearDeactivationSettings; 15 | - (id)activationValue:(unsigned int)arg1; 16 | - (BOOL)activationFlag:(unsigned int)arg1; 17 | - (void)setActivationSetting:(unsigned int)arg1 value:(id)arg2; 18 | - (void)setActivationSetting:(unsigned int)arg1 flag:(BOOL)arg2; 19 | - (void)clearActivationSettings; 20 | - (id)displayValue:(unsigned int)arg1; 21 | - (BOOL)displayFlag:(unsigned int)arg1; 22 | - (void)setDisplaySetting:(unsigned int)arg1 value:(id)arg2; 23 | - (void)setDisplaySetting:(unsigned int)arg1 flag:(BOOL)arg2; 24 | - (void)clearDisplaySettings; 25 | - (BOOL)expectsFaceContactInLandscape; 26 | - (BOOL)expectsFaceContact; 27 | - (void)setExpectsFaceContact:(BOOL)arg1 inLandscape:(BOOL)arg2; 28 | - (void)setExpectsFaceContact:(BOOL)arg1; 29 | - (void)deactivate; 30 | - (void)activate; 31 | - (double)autoLockTime; 32 | - (double)autoDimTime; 33 | - (BOOL)suppressesControlCenter; 34 | - (BOOL)suppressesNotificationCenter; 35 | - (BOOL)suppressesBanners; 36 | - (double)accelerometerSampleInterval; 37 | - (void)setAccelerometerSampleInterval:(double)arg1; 38 | - (BOOL)orientationChangedEventsEnabled; 39 | - (void)setOrientationChangedEventsEnabled:(BOOL)arg1; 40 | - (BOOL)allowsEventOnlySuspension; 41 | - (id)effectiveStatusBarStyleRequest; 42 | - (id)statusBarStyleRequest; 43 | - (int)starkStatusBarStyle; 44 | - (int)statusBarStyle; 45 | @end 46 | 47 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBDockIconListView.h: -------------------------------------------------------------------------------- 1 | #import "SBRootIconListView.h" 2 | 3 | @interface SBDockIconListView : SBRootIconListView 4 | + (CGFloat)defaultHeight; 5 | - (CGFloat)topIconInset; 6 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBFolderControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBFolderControllerDelegate 10 | - (void)folderControllerDidEndScrolling:(id)arg1; 11 | - (void)folderControllerShouldBeginEditing:(id)arg1; 12 | - (void)folderControllerShouldClose:(id)arg1; 13 | - (void)folderController:(id)arg1 draggedIconShouldDropFromListView:(id)arg2; 14 | - (BOOL)folderController:(id)arg1 draggedIconMightDropFromListView:(id)arg2; 15 | - (BOOL)folderController:(id)arg1 draggedIconDidMoveFromListView:(id)arg2 toListView:(id)arg3; 16 | - (BOOL)folderController:(id)arg1 draggedIconDidPauseAtLocation:(struct CGPoint)arg2 inListView:(id)arg3; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBFolderObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBFolderObserver 10 | - (void)folder:(id)arg1 didRemoveLists:(id)arg2 atIndexes:(id)arg3; 11 | - (void)folder:(id)arg1 didAddList:(id)arg2; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBFolderViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBFolderViewDelegate 10 | - (void)folderViewShouldBeginEditing:(id)arg1; 11 | - (void)folderViewShouldClose:(id)arg1; 12 | - (void)folderViewDidEndScrolling:(id)arg1; 13 | - (void)folderViewWillBeginScrolling:(id)arg1; 14 | - (void)folderView:(id)arg1 currentPageIndexDidChange:(int)arg2; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconAccessoryView-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconAccessoryView 10 | + (id)checkoutAccessoryImagesForIcon:(id)arg1 location:(int)arg2; 11 | - (void)prepareForReuse; 12 | - (void)setAccessoryBrightness:(float)arg1; 13 | - (BOOL)displayingAccessory; 14 | - (struct CGPoint)accessoryOriginForIconBounds:(struct CGRect)arg1; 15 | - (void)configureForIcon:(id)arg1 location:(int)arg2 highlighted:(BOOL)arg3; 16 | - (void)configureAnimatedForIcon:(id)arg1 location:(int)arg2 highlighted:(BOOL)arg3 withPreparation:(id)arg4 animation:(void)arg5 completion:(id)arg6; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconBadgeView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | #import "SBDarkeningImageViewDelegate-Protocol.h" 10 | #import "SBIconAccessoryView-Protocol.h" 11 | 12 | @class NSString, SBDarkeningImageView, SBIconAccessoryImage; 13 | 14 | @interface SBIconBadgeView : UIView 15 | { 16 | NSString *_text; 17 | SBDarkeningImageView *_incomingTextView; 18 | BOOL _animating; 19 | id _queuedAnimation; 20 | BOOL _displayingAccessory; 21 | SBIconAccessoryImage *_backgroundImage; 22 | SBDarkeningImageView *_backgroundView; 23 | SBIconAccessoryImage *_textImage; 24 | SBDarkeningImageView *_textView; 25 | } 26 | 27 | + (id)_createImageForText:(id)arg1 highlighted:(BOOL)arg2; 28 | + (id)_checkoutImageForText:(id)arg1 highlighted:(BOOL)arg2; 29 | + (id)_checkoutBackgroundImage; 30 | + (id)checkoutAccessoryImagesForIcon:(id)arg1 location:(int)arg2; 31 | - (void)_resizeForTextImage:(id)arg1; 32 | - (void)_clearText; 33 | - (void)_zoomOutWithPreparation:(id)arg1 animation:(void)arg2 completion:(id)arg3; 34 | - (void)_zoomInWithTextImage:(id)arg1 preparation:(id)arg2 animation:(void)arg3 completion:(id)arg4; 35 | - (void)_crossfadeToTextImage:(id)arg1 withPreparation:(id)arg2 animation:(void)arg3 completion:(id)arg4; 36 | - (void)_configureAnimatedForText:(id)arg1 highlighted:(BOOL)arg2 withPreparation:(id)arg3 animation:(void)arg4 completion:(id)arg5; 37 | - (id)darkeningImageView:(id)arg1 settableImageForImage:(id)arg2; 38 | - (void)setAccessoryBrightness:(float)arg1; 39 | - (struct CGPoint)accessoryOriginForIconBounds:(struct CGRect)arg1; 40 | - (void)prepareForReuse; 41 | - (BOOL)displayingAccessory; 42 | - (void)configureForIcon:(id)arg1 location:(int)arg2 highlighted:(BOOL)arg3; 43 | - (void)configureAnimatedForIcon:(id)arg1 location:(int)arg2 highlighted:(BOOL)arg3 withPreparation:(id)arg4 animation:(void)arg5 completion:(id)arg6; 44 | - (void)layoutSubviews; 45 | - (void)dealloc; 46 | - (id)init; 47 | 48 | @end 49 | 50 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconContentView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface SBIconContentView : UIView 4 | @property(assign, nonatomic) int orientation; 5 | -(void)layoutSubviews; 6 | -(void)didAddSubview:(id)subview; 7 | -(void)clearAllFolderContentViews; 8 | -(void)popFolderContentView:(id)view; 9 | -(void)pushFolderContentView:(id)view; 10 | -(void)updateLayoutWithDuration:(double)duration; 11 | -(id)initWithOrientation:(int)orientation; 12 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconImageCrossfadeView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import "SBInteractionPassThroughView.h" 8 | 9 | @class SBIconImageView, UIView, _SBAnimatableCorneredView; 10 | 11 | @interface SBIconImageCrossfadeView : SBInteractionPassThroughView 12 | { 13 | _SBAnimatableCorneredView *_containerView; 14 | SBIconImageView *_imageView; 15 | UIView *_crossfadeView; 16 | float _crossfadeFraction; 17 | float _containerScaleX; 18 | float _containerScaleY; 19 | BOOL _masksCorners; 20 | BOOL _performsTrueCrossfade; 21 | struct CGPoint _stretchAnchorPoint; 22 | } 23 | 24 | @property(nonatomic) struct CGPoint stretchAnchorPoint; // @synthesize stretchAnchorPoint=_stretchAnchorPoint; 25 | @property(nonatomic) BOOL performsTrueCrossfade; // @synthesize performsTrueCrossfade=_performsTrueCrossfade; 26 | @property(nonatomic) BOOL masksCorners; // @synthesize masksCorners=_masksCorners; 27 | - (void)_updateCornerMask; 28 | - (void)cleanup; 29 | - (void)setMorphFraction:(float)arg1; 30 | - (void)setFadeFraction:(float)arg1; 31 | - (void)layoutSubviews; 32 | - (void)prepareGeometry; 33 | - (void)dealloc; 34 | - (id)initWithImageView:(id)arg1 crossfadeView:(id)arg2; 35 | 36 | @end 37 | 38 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconIndexMutableList.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | #import "SBIconIndexNodeObserver-Protocol.h" 10 | #import "SBIconIndexMutableListObserver-Protocol.h" 11 | 12 | @class NSMapTable, NSMutableArray, SBIconListView; 13 | 14 | @interface SBIconIndexMutableList : NSObject 15 | { 16 | NSMutableArray *_nodes; 17 | NSMapTable *_index; 18 | id _observer; 19 | } 20 | 21 | @property(nonatomic) id observer; // @synthesize observer=_observer; 22 | - (id)indexDescriptionWithPrefix:(id)arg1; 23 | - (unsigned int)countByEnumeratingWithState:(id *)arg1 objects:(id *)arg2 count:(unsigned int)arg3; 24 | - (void)node:(id)arg1 didRemoveContainedNodeIdentifiers:(id)arg2; 25 | - (void)node:(id)arg1 didAddContainedNodeIdentifiers:(id)arg2; 26 | - (void)removeAllNodes; 27 | - (void)removeNodeAtIndex:(unsigned int)arg1; 28 | - (void)removeNode:(id)arg1; 29 | - (void)replaceNodeAtIndex:(unsigned int)arg1 withNode:(id)arg2; 30 | - (void)addNode:(id)arg1; 31 | - (void)insertNode:(id)arg1 atIndex:(unsigned int)arg2; 32 | - (id)nodeAtIndex:(unsigned int)arg1; 33 | - (BOOL)containsNode:(id)arg1; 34 | - (unsigned int)indexOfNode:(id)arg1; 35 | //- (unsigned int)count; 36 | - (id)nodes; 37 | - (id)nodesAlongIndexPath:(id)arg1 consumedIndexes:(unsigned int)arg2; 38 | - (id)indexPathsForContainedNodeIdentifier:(id)arg1 prefixPath:(id)arg2; 39 | - (id)containedNodeIdentifiers; 40 | - (BOOL)containsNodeIdentifier:(id)arg1; 41 | - (void)dealloc; 42 | - (id)init; 43 | 44 | // Curago 45 | 46 | @property (nonatomic) SBIconListView *listView; 47 | @property (nonatomic) BOOL processing; 48 | @property (nonatomic) BOOL needsProcessing; 49 | @property (nonatomic, retain) NSIndexPath *listViewIndexPath; 50 | @property (nonatomic, retain) SBIconListView *nextPage; 51 | @property (nonatomic, retain) NSMutableArray *nextPageIcons; 52 | - (void)moveToNextPage:(id)icon; 53 | 54 | @end 55 | 56 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconIndexMutableListObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconIndexMutableListObserver 10 | - (void)list:(id)arg1 didRemoveContainedNodeIdentifiers:(id)arg2; 11 | - (void)list:(id)arg1 didAddContainedNodeIdentifiers:(id)arg2; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconIndexNode-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconIndexNode 10 | - (id)nodeDescriptionWithPrefix:(id)arg1; 11 | - (void)removeNodeObserver:(id)arg1; 12 | - (void)addNodeObserver:(id)arg1; 13 | - (id)nodesAlongIndexPath:(id)arg1 consumedIndexes:(unsigned int)arg2; 14 | - (id)indexPathsForContainedNodeIdentifier:(id)arg1 prefixPath:(id)arg2; 15 | - (id)containedNodeIdentifiers; 16 | - (BOOL)containsNodeIdentifier:(id)arg1; 17 | - (id)nodeIdentifier; 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconIndexNodeObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconIndexNodeObserver 10 | - (void)node:(id)arg1 didRemoveContainedNodeIdentifiers:(id)arg2; 11 | - (void)node:(id)arg1 didAddContainedNodeIdentifiers:(id)arg2; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconListLayoutDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconListLayoutDelegate 10 | 11 | @optional 12 | - (void)iconListViewLayoutInvalidated:(id)arg1; 13 | - (void)iconListView:(id)arg1 wouldHaveMovedIcon:(id)arg2; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconListModelObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconListModelObserver 10 | - (void)iconList:(id)arg1 didRemoveIcon:(id)arg2; 11 | - (void)iconList:(id)arg1 didReplaceIcon:(id)arg2 withIcon:(id)arg3; 12 | - (void)iconList:(id)arg1 didAddIcon:(id)arg2; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconListPageControlDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconListPageControlDelegate 10 | - (void)pageControl:(id)arg1 didRecieveTouchInDirection:(int)arg2; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconModelApplicationDataSource-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconModelApplicationDataSource 10 | - (id)firstPageLeafIdentifiers; 11 | - (BOOL)isNewsstandEnabled; 12 | - (id)defaultIconState; 13 | - (int)appVisibilityOverrideForBundleIdentifier:(id)arg1; 14 | - (BOOL)updateAppIconVisibilityOverridesShowing:(id *)arg1 hiding:(id *)arg2; 15 | - (id)allApplications; 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconModelDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconModelDelegate 10 | 11 | @optional 12 | - (void)didDeleteIconState:(id)arg1; 13 | - (void)didSaveIconState:(id)arg1; 14 | - (BOOL)canSaveIconState:(id)arg1; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconModelStore-Protocol.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @protocol SBIconModelStore 4 | @required 5 | -(id)loadDesiredIconState:(id*)arg1; 6 | -(id)loadCurrentIconState:(id*)arg1; 7 | -(BOOL)deleteDesiredIconState:(id*)arg1; 8 | -(BOOL)deleteCurrentIconState:(id*)arg1; 9 | -(BOOL)saveDesiredIconState:(id)arg1 error:(id*)arg2; 10 | -(BOOL)saveCurrentIconState:(id)arg1 error:(id*)arg2; 11 | 12 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2b. 3 | * 4 | * Source: (null) 5 | */ 6 | 7 | @protocol SBIconObserver 8 | @optional 9 | - (void)iconImageDidUpdate:(id)iconImage; 10 | - (void)iconAccessoriesDidUpdate:(id)iconAccessories; 11 | - (void)iconLaunchEnabledDidChange:(id)iconLaunchEnabled; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconProgressViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconProgressViewDelegate 10 | - (void)progressViewCanBeRemoved:(id)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconScrollView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | #import 9 | 10 | #import "SBIconScrollViewDelegate-Protocol.h" 11 | 12 | @interface SBIconScrollView : UIScrollView 13 | { 14 | } 15 | 16 | - (void)setContentOffset:(CGPoint)arg1; 17 | - (BOOL)_scrollsToMakeFirstResponderVisible; 18 | - (BOOL)cancelTouchTracking; 19 | 20 | // Remaining properties 21 | @property(assign,nonatomic) id delegate; 22 | 23 | // iOS Blocks 24 | 25 | -(void)handlePinchGesture:(UIPinchGestureRecognizer*)pinch; 26 | 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconScrollViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconScrollViewDelegate 10 | - (void)iconScrollView:(id)arg1 willSetContentOffset:(inout struct CGPoint *)arg2; 11 | - (void)iconScrollViewDidCancelTouchTracking:(id)arg1; 12 | - (void)iconScrollViewWillCancelTouchTracking:(id)arg1; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconViewDelegate 10 | 11 | @optional 12 | - (float)iconLabelWidth; 13 | - (BOOL)iconViewDisplaysCloseBox:(id)arg1; 14 | - (BOOL)iconViewDisplaysBadges:(id)arg1; 15 | - (void)iconCloseBoxTapped:(id)arg1; 16 | - (void)icon:(id)arg1 openFolder:(id)arg2 animated:(BOOL)arg3; 17 | - (BOOL)icon:(id)arg1 canReceiveGrabbedIcon:(id)arg2; 18 | - (void)iconTapped:(id)arg1; 19 | - (BOOL)iconShouldAllowTap:(id)arg1; 20 | - (void)icon:(id)arg1 touchEnded:(BOOL)arg2; 21 | - (void)icon:(id)arg1 touchMoved:(id)arg2; 22 | - (void)iconTouchBegan:(id)arg1; 23 | - (void)iconHandleLongPress:(id)arg1; 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconViewMapDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconViewMapDelegate 10 | - (int)viewMap:(id)arg1 locationForIcon:(id)arg2; 11 | - (unsigned int)viewMap:(id)arg1 maxRecycledIconViewsOfClass:(Class)arg2; 12 | 13 | @optional 14 | - (unsigned int)viewMap:(id)arg1 numberOfViewsToPrepareOfClass:(Class)arg2; 15 | - (id)viewMapShouldPrepareViewsOfClasses:(id)arg1; 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBIconViewObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBIconViewObserver 10 | - (void)iconViewDidChangeLocation:(id)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBInteractionPassThroughView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @interface SBInteractionPassThroughView : UIView 10 | { 11 | } 12 | 13 | - (id)hitTest:(struct CGPoint)arg1 withEvent:(id)arg2; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBLSApplicationLifecycleObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBLSApplicationLifecycleObserver 10 | - (void)applicationsInstalled:(id)arg1; 11 | - (void)applicationsUninstalled:(id)arg1; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBLeafIcon.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import "SBIcon.h" 8 | #import "SBLeafIconDataSource-Protocol.h" 9 | 10 | @class NSMutableSet, NSString; 11 | 12 | @interface SBLeafIcon : SBIcon 13 | { 14 | NSString *_leafIdentifier; 15 | NSString *_applicationBundleID; 16 | NSMutableSet *_dataSources; 17 | id _activeDataSource; 18 | id _dataSourceAtUninstallation; 19 | } 20 | 21 | - (id)nodeIdentifier; 22 | - (void)launchFromLocation:(int)arg1; 23 | - (BOOL)launchEnabled; 24 | - (void)completeUninstall; 25 | - (void)setUninstalled; 26 | - (BOOL)allowsUninstall; 27 | - (BOOL)isRecentlyUpdated; 28 | - (int)accessoryTypeForLocation:(int)arg1; 29 | - (id)accessoryTextForLocation:(int)arg1; 30 | - (id)badgeNumberOrString; 31 | - (BOOL)progressIsPaused; 32 | - (float)progressPercent; 33 | - (int)progressState; 34 | - (BOOL)iconAppearsInNewsstand; 35 | - (BOOL)canEllipsizeLabel; 36 | - (id)displayName; 37 | - (id)getGenericIconImage:(int)arg1; 38 | - (id)generateIconImage:(int)arg1; 39 | - (void)_noteDataSourceDidInvalidateNotification:(id)arg1; 40 | - (void)_noteActiveDataSourceDidGenerateImageNotification:(id)arg1; 41 | - (void)_noteActiveDataSourceDidChangeNotification:(id)arg1; 42 | - (void)_noteActiveDataSourceDidGenerateIconFormat:(int)arg1; 43 | - (void)_noteActiveDataSourceDidChangeAndReloadIcon:(BOOL)arg1; 44 | - (id)activeDataSource; 45 | - (void)removeIconDataSourcesOfClass:(Class)arg1; 46 | - (void)removeIconDataSource:(id)arg1; 47 | - (void)addIconDataSource:(id)arg1; 48 | - (void)_updateActiveDataSource; 49 | - (BOOL)matchesRepresentation:(id)arg1; 50 | - (id)representation; 51 | - (id)applicationBundleID; 52 | - (id)leafIdentifier; 53 | - (id)copyWithZone:(struct _NSZone *)arg1; 54 | - (unsigned int)hash; 55 | - (BOOL)isEqual:(id)arg1; 56 | - (id)description; 57 | - (void)dealloc; 58 | - (id)initWithLeafIdentifier:(id)arg1 applicationBundleID:(id)arg2; 59 | - (id)init; 60 | 61 | @end 62 | 63 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBLeafIconDataSource-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBLeafIconDataSource 10 | - (BOOL)icon:(id)arg1 launchFromLocation:(int)arg2; 11 | - (BOOL)iconAllowsLaunch:(id)arg1; 12 | - (BOOL)iconCompleteUninstall:(id)arg1; 13 | - (BOOL)iconAllowsUninstall:(id)arg1; 14 | - (BOOL)iconIsRecentlyUpdated:(id)arg1; 15 | - (int)iconAccessoryType:(id)arg1; 16 | - (id)iconFormattedAccessoryString:(id)arg1; 17 | - (id)iconBadgeNumberOrString:(id)arg1; 18 | - (BOOL)iconProgressIsPaused:(id)arg1; 19 | - (float)iconProgressPercent:(id)arg1; 20 | - (int)iconProgressState:(id)arg1; 21 | - (BOOL)iconAppearsInNewsstand:(id)arg1; 22 | - (BOOL)iconCanEllipsizeLabel:(id)arg1; 23 | - (id)iconDisplayName:(id)arg1; 24 | - (id)icon:(id)arg1 defaultImageWithFormat:(int)arg2; 25 | - (id)icon:(id)arg1 imageWithFormat:(int)arg2; 26 | - (unsigned int)iconPriority:(id)arg1; 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBPlaceholderIcon.h: -------------------------------------------------------------------------------- 1 | #import "SBIcon.h" 2 | 3 | @interface SBPlaceholderIcon : SBIcon 4 | + (id)emptyPlaceholder; 5 | + (id)grabbedIconPlaceholder; 6 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBRootFolder.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import "SBFolder.h" 8 | 9 | #import "SBIconIndexNodeObserver-Protocol.h" 10 | 11 | @class SBDockIconListModel; 12 | 13 | @interface SBRootFolder : SBFolder 14 | { 15 | SBDockIconListModel *_dock; 16 | } 17 | 18 | - (void)node:(id)arg1 didRemoveContainedNodeIdentifiers:(id)arg2; 19 | - (void)node:(id)arg1 didAddContainedNodeIdentifiers:(id)arg2; 20 | - (void)list:(id)arg1 didRemoveContainedNodeIdentifiers:(id)arg2; 21 | - (void)list:(id)arg1 didAddContainedNodeIdentifiers:(id)arg2; 22 | - (void)_notifyIndexChange:(int)arg1 identifiers:(id)arg2 withValidationBlock:(id)arg3; 23 | - (id)nodeDescriptionWithPrefix:(id)arg1; 24 | - (id)nodesAlongIndexPath:(id)arg1 consumedIndexes:(unsigned int)arg2; 25 | - (id)indexPathsForContainedNodeIdentifier:(id)arg1 prefixPath:(id)arg2; 26 | - (id)containedNodeIdentifiers; 27 | - (BOOL)containsNodeIdentifier:(id)arg1; 28 | - (id)nodeIdentifier; 29 | - (void)placeIconsOnFirstPage:(id)arg1; 30 | - (id)representation; 31 | - (BOOL)resetWithRepresentation:(id)arg1 model:(id)arg2 leafIdentifiersAdded:(id)arg3; 32 | - (id)_listsForCompaction; 33 | - (BOOL)canEditDisplayName; 34 | - (BOOL)canRemoveIcons; 35 | - (id)folderType; 36 | - (id)iconsOfClass:(Class)arg1; 37 | - (void)markIconStateClean; 38 | - (BOOL)isIconStateDirty; 39 | - (void)removeEmptyList:(id)arg1; 40 | - (id)listContainingLeafIconWithIdentifier:(id)arg1; 41 | - (id)listContainingIcon:(id)arg1; 42 | - (unsigned int)indexOfList:(id)arg1; 43 | - (id)listAtIndex:(unsigned int)arg1; 44 | - (id)dockModel; 45 | - (void)dealloc; 46 | - (id)init; 47 | - (Class)controllerClass; 48 | - (Class)listViewClass; 49 | - (Class)listModelClass; 50 | 51 | @end 52 | 53 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBRootFolderController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import "SBFolderController.h" 8 | #import "SBRootFolderView.h" 9 | 10 | @class SBRootFolder, SBRootFolderView; 11 | 12 | @interface SBRootFolderController : SBFolderController 13 | { 14 | } 15 | 16 | - (void)didRotateFromInterfaceOrientation:(int)arg1; 17 | - (void)willAnimateRotationToInterfaceOrientation:(int)arg1; 18 | - (void)willRotateToInterfaceOrientation:(int)arg1; 19 | - (BOOL)_listIndexIsVisible:(unsigned int)arg1; 20 | - (void)setDockVerticalStretch:(float)arg1; 21 | - (void)setDockOffscreenFraction:(float)arg1; 22 | - (id)dockListView; 23 | - (BOOL)hasDock; 24 | - (BOOL)isDisplayingIcon:(id)arg1; 25 | - (void)setIdleText:(id)arg1; 26 | - (BOOL)setCurrentPageIndex:(int)arg1 animated:(BOOL)arg2; 27 | - (id)folderControllers; 28 | - (unsigned int)_depth; 29 | - (Class)_contentViewClass; 30 | - (void)dealloc; 31 | - (id)initWithFolder:(id)arg1 orientation:(int)arg2; 32 | 33 | // Remaining properties 34 | @property(readonly, nonatomic) SBRootFolderView *contentView; 35 | @property(retain, nonatomic) SBRootFolder *folder; 36 | @property (assign,nonatomic) NSUInteger dockEdge; 37 | @end 38 | 39 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBRootIconListView.h: -------------------------------------------------------------------------------- 1 | #import "SBIconListView.h" 2 | 3 | @interface SBRootIconListView : SBIconListView 4 | -(CGFloat)sideIconInset; 5 | -(CGFloat)bottomIconInset; 6 | -(CGFloat)topIconInset; 7 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBScreenObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBScreenObserver 10 | - (void)screenManager:(id)arg1 didReconnectScreen:(id)arg2; 11 | - (void)screenManager:(id)arg1 didDisconnectScreen:(id)arg2; 12 | - (void)screenManager:(id)arg1 didChangeSuppressionOfScreen:(id)arg2; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBSearchGestureObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBSearchGestureObserver 10 | - (void)searchGesture:(id)arg1 changedPercentComplete:(float)arg2; 11 | 12 | @optional 13 | - (void)searchGesture:(id)arg1 completedShowing:(BOOL)arg2; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBSystemLocalNotificationAlertDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2b. 3 | * 4 | * Source: (null) 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBSystemLocalNotificationAlertDelegate 10 | - (void)systemLocalNotificationAlertShouldLaunch:(id)systemLocalNotificationAlert forApplication:(id)application; 11 | @optional 12 | - (void)systemLocalNotificationAlertShouldSnooze:(id)systemLocalNotificationAlert forApplication:(id)application; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBUIBiometricEventMonitor.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface SBUIBiometricEventMonitor : NSObject 5 | - (void)addObserver:(id)arg1; 6 | - (void)removeObserver:(id)arg1; 7 | - (void)_startMatching; 8 | - (void)_setMatchingEnabled:(BOOL)arg1; 9 | - (BOOL)isMatchingEnabled; 10 | - (BOOL)hasEnrolledIdentities; 11 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBUIBiometricEventMonitorDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @protocol SBUIBiometricEventMonitorDelegate 5 | @required 6 | -(void)biometricEventMonitor:(id)monitor handleBiometricEvent:(unsigned)event; 7 | @end 8 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBUIPasscodeLockViewBase.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | #import "SBUIPasscodeLockViewDelegate-Protocol.h" 5 | 6 | @interface SBUIPasscodeLockViewBase : UIView 7 | @property id delegate; 8 | @property bool shouldResetForFailedPasscodeAttempt; 9 | @property bool showsEmergencyCallButton; 10 | @property(readonly) NSString * passcode; 11 | @property(retain, nonatomic) UIColor *customBackgroundColor; 12 | @property double backgroundAlpha; 13 | - (void)resetForFailedPasscode; 14 | - (void)setBiometricMatchMode:(unsigned long long)arg1; 15 | - (void)_resetForFailedMesaAttempt; 16 | - (void)autofillForSuccessfulMesaAttemptWithCompletion:(id)arg1; 17 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBUIPasscodeLockViewDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @protocol SBUIPasscodeLockViewDelegate 5 | @optional 6 | -(void)passcodeLockViewEmergencyCallButtonPressed:(id)pressed; 7 | -(void)passcodeLockViewCancelButtonPressed:(id)pressed; 8 | -(void)passcodeLockViewPasscodeEntered:(id)entered; 9 | -(void)passcodeLockViewPasscodeDidChange:(id)passcodeLockViewPasscode; 10 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBUIPasscodeLockViewFactory.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | #import "SBUIPasscodeLockViewBase.h" 5 | 6 | @interface SBUIPasscodeLockViewFactory : NSObject 7 | +(SBUIPasscodeLockViewBase*)_passcodeLockViewForStyle:(int)arg1 withLightStyle:(bool)arg2; 8 | +(SBUIPasscodeLockViewBase*)passcodeLockViewForStyle:(int)arg1; 9 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/SBWindowContextHostManagerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBWindowContextHostManagerDelegate 10 | 11 | @optional 12 | - (BOOL)windowContextHostManager:(id)arg1 shouldEnableContextHostingForRequester:(id)arg2 priority:(int)arg3; 13 | - (id)windowContextHostManager:(id)arg1 overrideRequester:(id)arg2; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /headers/SpringBoard/SBWindowContextManagerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol SBWindowContextManagerDelegate 10 | - (void)windowContextManager:(id)arg1 didStopTrackingContextsForScreen:(id)arg2; 11 | - (void)windowContextManager:(id)arg1 willStartTrackingContextsForScreen:(id)arg2; 12 | - (BOOL)windowContextManager:(id)arg1 shouldAddContext:(id)arg2; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /headers/SpringBoard/SpringBoard+Private.h: -------------------------------------------------------------------------------- 1 | #import "CCUIControlCenterSystemAgent-Protocol.h" 2 | #import "SBControlCenterController.h" 3 | -------------------------------------------------------------------------------- /headers/SpringBoard/SpringBoard-Structs.h: -------------------------------------------------------------------------------- 1 | typedef struct SBIconCoordinate { 2 | NSUInteger row; 3 | NSUInteger col; 4 | } SBIconCoordinate; 5 | 6 | typedef struct _MISProfile MISProfile; 7 | 8 | typedef MISProfile * MISProfileRef; -------------------------------------------------------------------------------- /headers/SpringBoard/_SBUIBiometricKitInterface.h: -------------------------------------------------------------------------------- 1 | @protocol _SBUIBiometricKitInterfaceDelegate 2 | @required 3 | - (void)biometricKitInterface:(id)interface handleEvent:(unsigned long long)event; 4 | @end 5 | 6 | @interface _SBUIBiometricKitInterface : NSObject 7 | @property (assign,nonatomic) id<_SBUIBiometricKitInterfaceDelegate> delegate; 8 | - (void)cancel; 9 | - (void)setDelegate:(id<_SBUIBiometricKitInterfaceDelegate>)arg1; 10 | - (int)detectFingerWithOptions:(id)arg1 ; 11 | - (int)matchWithMode:(unsigned long long)arg1 andCredentialSet:(id)arg2; 12 | @end -------------------------------------------------------------------------------- /headers/SpringBoard/_UISettingsKeyObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @protocol _UISettingsKeyObserver 10 | - (void)settings:(id)arg1 changedValueForKey:(id)arg2; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /headers/SpringBoardFoundation/SBFButton.h: -------------------------------------------------------------------------------- 1 | @interface SBFButton : UIButton 2 | 3 | - (BOOL)_drawingAsSelected; 4 | - (void)_touchUpInside; 5 | - (void)_updateForStateChange; 6 | - (void)_updateSelected:(BOOL)arg1 highlighted:(BOOL)arg2; 7 | - (id)initWithFrame:(CGRect)arg1; 8 | - (void)setHighlighted:(BOOL)arg1; 9 | - (void)setSelected:(BOOL)arg1; 10 | 11 | @end -------------------------------------------------------------------------------- /headers/SpringBoardFoundation/SpringBoardFoundation+Private.h: -------------------------------------------------------------------------------- 1 | #import "SBFButton.h" 2 | -------------------------------------------------------------------------------- /headers/SpringBoardUI/SBUIAction.h: -------------------------------------------------------------------------------- 1 | @interface SBUIAction : NSObject { 2 | 3 | NSString* _title; 4 | NSString* _subtitle; 5 | UIImage* _image; 6 | UIView* _badgeView; 7 | /*^block*/id _handler; 8 | 9 | } 10 | 11 | @property (nonatomic,copy,readonly) NSString * title; //@synthesize title=_title - In the implementation block 12 | @property (nonatomic,copy,readonly) NSString * subtitle; //@synthesize subtitle=_subtitle - In the implementation block 13 | @property (nonatomic,readonly) UIImage * image; //@synthesize image=_image - In the implementation block 14 | @property (nonatomic,readonly) UIView * badgeView; //@synthesize badgeView=_badgeView - In the implementation block 15 | @property (nonatomic,copy,readonly) id handler; //@synthesize handler=_handler - In the implementation block 16 | -(id)init; 17 | -(NSString *)title; 18 | -(UIImage *)image; 19 | -(UIView *)badgeView; 20 | -(NSString *)subtitle; 21 | -(id)handler; 22 | -(id)initWithTitle:(id)arg1 subtitle:(id)arg2 image:(id)arg3 badgeView:(id)arg4 handler:(/*^block*/id)arg5 ; 23 | -(id)initWithTitle:(id)arg1 subtitle:(id)arg2 image:(id)arg3 handler:(/*^block*/id)arg4 ; 24 | -(id)initWithTitle:(id)arg1 subtitle:(id)arg2 handler:(/*^block*/id)arg3 ; 25 | -(id)initWithTitle:(id)arg1 handler:(/*^block*/id)arg2 ; 26 | @end -------------------------------------------------------------------------------- /headers/SpringBoardUI/SBUIActionPlatterViewController.h: -------------------------------------------------------------------------------- 1 | @interface SBUIActionPlatterViewController : UIViewController 2 | -(id)initWithActions:(id)arg1 gestureRecognizer:(id)arg2 ; 3 | @end -------------------------------------------------------------------------------- /headers/SpringBoardUI/SBUIForceTouchGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | @interface SBUIForceTouchGestureRecognizer : UILongPressGestureRecognizer 2 | - (id)initWithTarget:(id)arg1 action:(SEL)arg2; 3 | @end -------------------------------------------------------------------------------- /headers/SpringBoardUI/SBUIIconForceTouchController.h: -------------------------------------------------------------------------------- 1 | @interface SBUIIconForceTouchController : NSObject 2 | + (void)_addIconForceTouchController:(id)arg1; 3 | - (id)init; 4 | - (void)setDataSource:(id)arg1; 5 | - (void)setDelegate:(id)arg1; 6 | - (void)startHandlingGestureRecognizer:(id)arg1; 7 | + (void)_dismissAnimated:(BOOL)arg1 withCompletionHandler:(/*^block*/id)arg2 ; 8 | + (BOOL)_isPeekingOrShowing; 9 | @property (nonatomic,readonly) NSInteger state; 10 | - (void)_setupWithGestureRecognizer:(id)arg1 ; 11 | - (void)_peekAnimated:(BOOL)arg1 withRelativeTouchForce:(CGFloat)arg2 allowSmoothing:(BOOL)arg3 ; 12 | - (void)_presentAnimated:(BOOL)arg1 withCompletionHandler:(/*^block*/id)arg2 ; 13 | -(void)_dismissAnimated:(BOOL)arg1 withCompletionHandler:(/*^block*/id)arg2 ; 14 | @end -------------------------------------------------------------------------------- /headers/SpringBoardUI/SBUIIconForceTouchControllerDataSource-Protocol.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @protocol SBUIIconForceTouchControllerDataSource 5 | @required 6 | - (CGRect)iconForceTouchController:(SBUIIconForceTouchController *)arg1 iconViewFrameForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 7 | - (NSInteger)iconForceTouchController:(SBUIIconForceTouchController *)arg1 layoutStyleForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 8 | - (UIView *)iconForceTouchController:(SBUIIconForceTouchController *)arg1 newIconViewCopyForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 9 | - (UIViewController *)iconForceTouchController:(SBUIIconForceTouchController *)arg1 primaryViewControllerForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 10 | - (UIViewController *)iconForceTouchController:(SBUIIconForceTouchController *)arg1 secondaryViewControllerForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 11 | 12 | @optional 13 | - (CGFloat)iconForceTouchController:(SBUIIconForceTouchController *)arg1 iconImageCornerRadiusForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 14 | - (UIEdgeInsets)iconForceTouchController:(SBUIIconForceTouchController *)arg1 iconImageInsetsForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 15 | - (id)iconForceTouchController:(SBUIIconForceTouchController *)arg1 parallaxSettingsForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 16 | - (CGFloat)iconForceTouchController:(SBUIIconForceTouchController *)arg1 wrapperViewCornerRadiusForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 17 | - (CGPoint)iconForceTouchController:(SBUIIconForceTouchController *)arg1 zoomDownCenterForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 18 | - (UIView *)iconForceTouchController:(SBUIIconForceTouchController *)arg1 zoomDownViewForGestureRecognizer:(SBUIForceTouchGestureRecognizer *)arg2; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /headers/SpringBoardUI/SpringBoardUI+Private.h: -------------------------------------------------------------------------------- 1 | #import "SBUIForceTouchGestureRecognizer.h" 2 | #import "SBUIIconForceTouchController.h" 3 | #import "SBUIIconForceTouchControllerDataSource-Protocol.h" 4 | #import "SBUIActionPlatterViewController.h" 5 | #import "SBUIAction.h" 6 | -------------------------------------------------------------------------------- /headers/UIKit/UICollectionReusableView+Private.h: -------------------------------------------------------------------------------- 1 | @interface UICollectionReusableView (Private) 2 | @property (nonatomic, retain, getter=_collectionView) UICollectionView *collectionView; 3 | @property (setter=_setLayoutAttributes:,getter=_layoutAttributes,nonatomic,copy) UICollectionViewLayoutAttributes * layoutAttributes; 4 | @end -------------------------------------------------------------------------------- /headers/UIKit/UICollectionView+Private.h: -------------------------------------------------------------------------------- 1 | @interface UICollectionView (Private) 2 | - (id)_visibleSupplementaryViewOfKind:(id)arg1 atIndexPath:(id)arg2 ; 3 | - (id)_visibleCellForIndexPath:(id)arg1; 4 | - (NSIndexPath *)indexPathForSupplementaryView:(id)view; 5 | @end -------------------------------------------------------------------------------- /headers/UIKit/UICollectionViewCell+Private.h: -------------------------------------------------------------------------------- 1 | @interface UICollectionViewCell (Private) 2 | @property (nonatomic, retain, getter=_collectionView) UICollectionView *collectionView; 3 | @end -------------------------------------------------------------------------------- /headers/UIKit/UICollectionViewLayoutAttributes+Private.h: -------------------------------------------------------------------------------- 1 | @interface UICollectionViewLayoutAttributes () 2 | -(void)_setZPosition:(NSInteger)position; 3 | @end -------------------------------------------------------------------------------- /headers/UIKit/UIColor+Private.h: -------------------------------------------------------------------------------- 1 | @interface UIColor (Private) 2 | + (instancetype)systemRedColor; 3 | @end -------------------------------------------------------------------------------- /headers/UIKit/UIFont+Private.h: -------------------------------------------------------------------------------- 1 | @interface UIFont (Private) 2 | - (int)traits; 3 | + (UIFont *)fontWithName:(NSString *)name size:(CGFloat)size traits:(int)traits; 4 | @end -------------------------------------------------------------------------------- /headers/UIKit/UIImage+Private.h: -------------------------------------------------------------------------------- 1 | @interface UIImage (Private) 2 | - (UIImage *)_applyBackdropViewSettings:(id)arg1; 3 | - (UIImage *)_applyBackdropViewSettings:(id)arg1 includeTints:(BOOL)arg2 includeBlur:(BOOL)arg3; 4 | - (UIImage *)sbf_scaleImage:(CGFloat)scale; 5 | + (UIImage *)imageNamed:(NSString *)arg1 inBundle:(id)arg2 ; 6 | + (UIImage *)_applicationIconImageForBundleIdentifier:(NSString *)arg1 format:(int)arg2 ; 7 | + (UIImage *)_applicationIconImageForBundleIdentifier:(NSString *)arg1 format:(NSInteger)arg2 scale:(CGFloat)arg3 ; 8 | - (UIImage *)ccuiAlphaOnlyImageForMaskImage; 9 | - (UIImage *)_flatImageWithColor:(UIColor *)color; 10 | @end -------------------------------------------------------------------------------- /headers/UIKit/UIKit+Private.h: -------------------------------------------------------------------------------- 1 | #import "UIColor+Private.h" 2 | #import "UIFont+Private.h" 3 | #import "UIImage+Private.h" 4 | #import "UIView+Private.h" 5 | //#import "_UIBackdropView.h" 6 | #import "_UIBackdropViewSettings.h" 7 | #import "_UIVisualEffectLayerConfig.h" 8 | #import "_UIVisualEffectTintLayerConfig.h" 9 | #import "_UIVisualEffectVibrantLayerConfig.h" 10 | #import "UIVisualEffect+Private.h" 11 | #import "_UIVisualEffectConfig.h" 12 | #import "UITableViewCell+Private.h" 13 | #import "UINavigationController+Private.h" 14 | -------------------------------------------------------------------------------- /headers/UIKit/UINavigationController+Private.h: -------------------------------------------------------------------------------- 1 | @interface UINavigationController (Private) 2 | @property (nonatomic,readonly) UIViewController * previousViewController; 3 | @end -------------------------------------------------------------------------------- /headers/UIKit/UITableViewCell+Private.h: -------------------------------------------------------------------------------- 1 | @interface UITableViewCell (Private) 2 | -(void)_setSeparatorEffect:(id)arg1 ; 3 | @end -------------------------------------------------------------------------------- /headers/UIKit/UIView+Private.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface UIView (Private) 4 | @property (assign,setter=_setContinuousCornerRadius:,nonatomic) CGFloat _continuousCornerRadius; 5 | @property (nonatomic, retain) NSObject *delegate; 6 | - (BOOL)shouldForwardSelector:(SEL)aSelector; 7 | - (void)_setContinuousCornerRadius:(CGFloat)radius; 8 | - (void)nc_applyVibrantStyling:(id)styling; 9 | - (UIImage *)_imageFromRect:(CGRect)rect; 10 | - (void)nc_removeAllVibrantStyling; 11 | - (CCUIControlCenterPagePlatterView *)ccuiPunchOutMaskedContainer; 12 | - (BOOL)_shouldAnimatePropertyWithKey:(NSString *)key; 13 | - (UIViewController *)_viewControllerForAncestor; 14 | @end -------------------------------------------------------------------------------- /headers/UIKit/UIVisualEffect+Private.h: -------------------------------------------------------------------------------- 1 | #import "_UIVisualEffectConfig.h" 2 | 3 | @interface UIVisualEffect (Private) 4 | @property (nonatomic,readonly) _UIVisualEffectConfig * effectConfig; 5 | @end -------------------------------------------------------------------------------- /headers/UIKit/_UIBackdropView.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface _UIBackdropView : UIView 4 | @property (nonatomic,copy) NSString *groupName; 5 | - (UIView *)grayscaleTintView; 6 | - (id)initWithPrivateStyle:(int)arg1; 7 | - (id)initWithSettings:(_UIBackdropViewSettings *)arg1; 8 | - (id)initWithStyle:(int)arg1; 9 | + (instancetype)settingsForPrivateStyle:(NSInteger)arg1 graphicsQuality:(NSInteger)arg2; 10 | - (void)transitionToSettings:(id)arg1; 11 | - (void)computeAndApplySettings:(id)settings; 12 | @end -------------------------------------------------------------------------------- /headers/UIKit/_UIFlowLayoutInfo.h: -------------------------------------------------------------------------------- 1 | #import "_UIFlowLayoutSection.h" 2 | 3 | @interface _UIFlowLayoutInfo : NSObject 4 | @property (nonatomic,readonly) NSMutableArray<_UIFlowLayoutSection *> *sections; 5 | @end -------------------------------------------------------------------------------- /headers/UIKit/_UIFlowLayoutSection.h: -------------------------------------------------------------------------------- 1 | 2 | @interface _UIFlowLayoutSection : NSObject 3 | @property (assign,nonatomic) CGRect frame; 4 | @property (assign,nonatomic) UIEdgeInsets sectionMargins; 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /headers/UIKit/_UIVisualEffectConfig.h: -------------------------------------------------------------------------------- 1 | 2 | #import "_UIVisualEffectLayerConfig.h" 3 | 4 | @interface _UIVisualEffectConfig : NSObject { 5 | 6 | NSMutableArray* _layerConfigs; 7 | _UIVisualEffectLayerConfig* _contentConfig; 8 | 9 | } 10 | 11 | @property (nonatomic,readonly) NSArray * layerConfigs; //@synthesize layerConfigs=_layerConfigs - In the implementation block 12 | @property (nonatomic,readonly) _UIVisualEffectLayerConfig * contentConfig; //@synthesize contentConfig=_contentConfig - In the implementation block 13 | +(id)configWithContentConfig:(id)arg1 ; 14 | +(id)configWithLayerConfigs:(id)arg1 ; 15 | -(void)addLayerConfig:(id)arg1 ; 16 | -(void)enumerateLayerConfigs:(/*^block*/id)arg1 ; 17 | -(NSArray *)layerConfigs; 18 | -(_UIVisualEffectLayerConfig *)contentConfig; 19 | @end -------------------------------------------------------------------------------- /headers/UIKit/_UIVisualEffectLayerConfig.h: -------------------------------------------------------------------------------- 1 | @interface _UIVisualEffectLayerConfig : NSObject 2 | @property (nonatomic,readonly) CGFloat opacity; //@synthesize opacity=_opacity - In the implementation block 3 | @property (nonatomic,readonly) NSString * filterType; //@synthesize filterType=_filterType - In the implementation block 4 | @property (nonatomic,readonly) UIColor * fillColor; //@synthesize fillColor=_fillColor - In the implementation block 5 | +(instancetype)layerWithFillColor:(id)arg1 opacity:(CGFloat)arg2 filterType:(NSString *)arg3; 6 | -(CGFloat)opacity; 7 | -(UIColor *)fillColor; 8 | -(NSString *)filterType; 9 | -(void)configureLayerView:(id)arg1; 10 | -(void)deconfigureLayerView:(id)arg1; 11 | @end -------------------------------------------------------------------------------- /headers/UIKit/_UIVisualEffectTintLayerConfig.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface _UIVisualEffectTintLayerConfig : _UIVisualEffectLayerConfig 4 | @property (nonatomic,readonly) UIColor *tintColor; //@synthesize tintColor=_tintColor - In the implementation block 5 | 6 | +(instancetype)layerWithTintColor:(UIColor *)arg1 filterType:(NSString *)arg2; 7 | +(instancetype)layerWithTintColor:(UIColor *)arg1; 8 | -(UIColor *)tintColor; 9 | -(void)configureLayerView:(id)arg1; 10 | -(void)deconfigureLayerView:(id)arg1; 11 | @end -------------------------------------------------------------------------------- /headers/UIKit/_UIVisualEffectVibrantLayerConfig.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface _UIVisualEffectVibrantLayerConfig : _UIVisualEffectLayerConfig 4 | @property (nonatomic,readonly) UIColor * vibrantColor; //@synthesize vibrantColor=_vibrantColor - In the implementation block 5 | @property (nonatomic,readonly) UIColor * tintColor; //@synthesize tintColor=_tintColor - In the implementation block 6 | @property (nonatomic,copy,readonly) NSDictionary * filterAttributes; //@synthesize filterAttributes=_filterAttributes - In the implementation block 7 | +(instancetype)layerWithVibrantColor:(UIColor *)arg1 tintColor:(UIColor *)arg2 filterType:(NSString *)arg3 filterAttributes:(id)arg4; 8 | +(instancetype)layerWithVibrantColor:(UIColor *)arg1 tintColor:(UIColor *)arg2 filterType:(NSString *)arg3; 9 | -(UIColor *)tintColor; 10 | -(void)configureLayerView:(id)arg1; 11 | -(void)deconfigureLayerView:(id)arg1; 12 | -(NSDictionary *)filterAttributes; 13 | -(UIColor *)vibrantColor; 14 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsKit/NCNotificationContent.h: -------------------------------------------------------------------------------- 1 | @interface NCNotificationContent : NSObject 2 | @property (nonatomic,copy,readonly) NSString *header; 3 | @property (nonatomic, copy, readonly) UIImage *icon; 4 | @end 5 | -------------------------------------------------------------------------------- /headers/UserNotificationsKit/NCNotificationDispatcher.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NCNotificationDispatcher : NSObject 4 | -(void)destination:(id)arg1 requestsClearingNotificationRequests:(NSSet *)requests fromDestinations:(NSSet *)destinations; 5 | -(void)postNotificationWithRequest:(NCNotificationRequest *)request; 6 | -(void)modifyNotificationWithRequest:(NCNotificationRequest *)request; 7 | -(void)withdrawNotificationWithRequest:(NCNotificationRequest *)request; 8 | -(void)updateNotificationSectionSettings:(id)arg1 ; 9 | -(void)removeNotificationSectionWithIdentifier:(id)arg1 ; 10 | 11 | - (NSHashTable *)sourceDelegates; 12 | - (void)destination:(id)arg1 requestsClearingNotificationRequests:(NSSet *)requests; 13 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsKit/NCNotificationListViewControllerDestinationDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol NCNotificationListViewControllerDestinationDelegate 2 | @optional 3 | -(void)notificationListViewController:(id)arg1 requestsClearingNotificationRequestsFromDate:(id)arg2 toDate:(id)arg3 inSections:(id)arg4; 4 | -(void)notificationListViewController:(id)arg1 requestsClearingNotificationRequestsInSections:(id)arg2; 5 | @required 6 | -(void)notificationListViewController:(id)arg1 requestsClearingNotificationRequests:(id)arg2; 7 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsKit/NCNotificationOptions.h: -------------------------------------------------------------------------------- 1 | @interface NCNotificationOptions : NSObject 2 | @property (nonatomic,readonly) BOOL dismissAutomatically; 3 | @property (nonatomic,readonly) BOOL overridesQuietMode; 4 | @property (nonatomic,readonly) BOOL alertsWhenLocked; 5 | @property (nonatomic,readonly) BOOL addToLockScreenWhenUnlocked; 6 | @property (nonatomic,readonly) NSUInteger lockScreenPersistence; 7 | @property (nonatomic,readonly) NSUInteger lockScreenPriority; 8 | @property (nonatomic,readonly) NSUInteger realertCount; 9 | @property (nonatomic,readonly) BOOL suppressesAlertsWhenAppIsActive; 10 | @property (nonatomic,readonly) BOOL canPlaySound; 11 | @property (nonatomic,readonly) BOOL canTurnOnDisplay; 12 | @property (nonatomic,readonly) BOOL requestsFullScreenPresentation; 13 | @property (nonatomic,readonly) BOOL preemptsPresentedNotification; 14 | @property (nonatomic,readonly) BOOL revealsAdditionalContentOnPresentation; 15 | @property (nonatomic,readonly) BOOL suppressesTitleWhenLocked; 16 | @property (nonatomic,readonly) BOOL suppressesSubtitleWhenLocked; 17 | @property (nonatomic,readonly) BOOL suppressesBodyWhenLocked; 18 | @property (nonatomic,readonly) NSUInteger contentPreviewSetting; 19 | @property (nonatomic,readonly) BOOL silencedByMenuButtonPress; 20 | @property (nonatomic,readonly) BOOL overridesPocketMode; 21 | @property (nonatomic,readonly) BOOL hideClearActionInList; 22 | @property (nonatomic,readonly) NSUInteger messageNumberOfLines; 23 | @property (nonatomic,readonly) BOOL coalescesWhenLocked; 24 | @property (nonatomic,readonly) BOOL preventsAutomaticLock; 25 | @property (nonatomic,readonly) BOOL revealsAdditionalContentIfNoDefaultAction; 26 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsKit/NCNotificationRequest.h: -------------------------------------------------------------------------------- 1 | #import "NCNotificationContent.h" 2 | #import "NCNotificationOptions.h" 3 | 4 | @interface NCNotificationRequest : NSObject 5 | @property (nonatomic,copy,readonly) NSString *sectionIdentifier; 6 | @property (nonatomic,readonly) NCNotificationContent *content; 7 | @property (nonatomic, readonly) NCNotificationOptions *options; 8 | @property (nonatomic,readonly) NSDate *timestamp; 9 | @property (nonatomic,copy,readonly) NSString *notificationIdentifier; 10 | @property (nonatomic,copy,readonly) NSSet *requestDestinations; 11 | @end 12 | -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCAnimatableBlurringView.h: -------------------------------------------------------------------------------- 1 | #import "NCBlurring-Protocol.h" 2 | 3 | 4 | @interface NCAnimatableBlurringView : UIView { 5 | 6 | BOOL _didConfigureBlurFilter; 7 | CGFloat _inputRadius; 8 | 9 | } 10 | @property (assign,nonatomic) CGFloat inputRadius; //@synthesize inputRadius=_inputRadius - In the implementation block 11 | +(id)_inputRadiusKeyPath; 12 | -(BOOL)_shouldAnimatePropertyWithKey:(id)arg1 ; 13 | -(void)setInputRadius:(CGFloat)arg1 ; 14 | -(CGFloat)inputRadius; 15 | -(void)_configureBlurFilterIfNecessary; 16 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCBlurring-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol NCBlurring 2 | @property (assign,nonatomic) CGFloat inputRadius; 3 | @required 4 | -(void)setInputRadius:(CGFloat)arg1; 5 | -(CGFloat)inputRadius; 6 | 7 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCBulletinNotificationSource.h: -------------------------------------------------------------------------------- 1 | @interface NCBulletinNotificationSource : NSObject 2 | @property (nonatomic,retain) BBObserver *observer; 3 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationChronologicalList.h: -------------------------------------------------------------------------------- 1 | @class NCNotificationCombinedListViewController; 2 | 3 | #import "NCNotificationListSection.h" 4 | #import 5 | 6 | @interface NCNotificationChronologicalList : NSObject 7 | @property (nonatomic,retain) NSMutableArray *sections; 8 | - (NSMutableArray *)sections; 9 | - (NSUInteger)rowCountForSectionIndex:(NSUInteger)index; 10 | @property (nonatomic, retain) NCNotificationCombinedListViewController *delegate; 11 | - (id)_existingSectionForNotificationRequest:(NCNotificationRequest *)request; 12 | - (NCNotificationRequest *)notificationRequestAtIndexPath:(NSIndexPath *)indexPath; 13 | - (NSUInteger)sectionCount; 14 | - (BOOL)containsNotificationRequest:(NCNotificationRequest *)request; 15 | - (NSIndexPath *)removeNotificationRequest:(NCNotificationRequest *)request; 16 | - (NSString *)titleForSectionIndex:(NSUInteger)index; 17 | - (NSString *)identifierForSectionIndex:(NSUInteger)index; 18 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationListCell.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "NCNotificationViewController.h" 3 | 4 | @interface NCNotificationListCell : UICollectionViewCell 5 | @property (nonatomic, retain) NCNotificationViewController *contentViewController; 6 | @property (nonatomic, retain) MTMaterialView *origBackgroundView; 7 | - (void)_updateRevealForActionButtonsClippingRevealView:(id)clippingView actionButtonsView:(id)buttonsView forRevealPercentage:(CGFloat)percentage actionButtonsViewNeedsClipping:(BOOL)needsClipping; 8 | - (id)cbr_coloringInfo; 9 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationListCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- 1 | @interface NCNotificationListCollectionViewFlowLayout : UICollectionViewFlowLayout 2 | @property (nonatomic,retain) NSMutableArray *insertedIndexPaths; 3 | @property (nonatomic,retain) NSMutableArray *removedIndexPaths; 4 | @property (nonatomic,retain) NSMutableArray *replacedIndexPaths; 5 | @property (assign,getter=isShowingNotificationsHistory,nonatomic) bool showingNotificationsHistory; 6 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationListSection.h: -------------------------------------------------------------------------------- 1 | @interface NCNotificationListSection : NSObject 2 | -(id)initWithIdentifier:(NSString *)arg1 title:(NSString *)title; 3 | @property (nonatomic,retain) NSString *title; 4 | @property (nonatomic,readonly) NSString *identifier; 5 | @property (nonatomic,retain) NSMutableArray *notificationRequests; 6 | - (void)setSectionDate:(NSDate *)date; 7 | - (NSDate *)sectionDate; 8 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationListSectionHeaderView.h: -------------------------------------------------------------------------------- 1 | @interface NCNotificationListSectionHeaderView : UICollectionReusableView 2 | @property (nonatomic,retain) UILabel* titleLabel; //@synthesize titleLabel=_titleLabel - In the implementation block 3 | @property (nonatomic,retain) UIButton* clearButton; 4 | @property (assign,nonatomic) BOOL shouldOverrideForReveal; //@synthesize shouldOverrideForReveal=_shouldOverrideForReveal - In the implementation block 5 | @property (assign,nonatomic) CGFloat overrideAlpha; //@synthesize overrideAlpha=_overrideAlpha - In the implementation block 6 | @property (assign,nonatomic) CGPoint overrideCenter; 7 | - (void)setTitle:(NSString *)title forSectionIdentifier:(NSString *)sectionIdentifier; 8 | - (void)setBackgroundGroupName:(NSString *)name; 9 | - (void)_resetRevealOverrides; 10 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationPreviewInteractionManager.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NCNotificationPreviewInteractionManager : NSObject { 4 | UIPreviewInteraction* _previewInteraction; 5 | } 6 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationPriorityList.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NCNotificationPriorityList : NSObject 4 | @property (nonatomic,retain) NSMutableOrderedSet* requests; //@synthesize requests=_requests - In the implementation block 5 | @property (nonatomic,readonly) NSUInteger count; 6 | -(id)requests; 7 | -(id)requestAtIndex:(NSUInteger)index; 8 | -(void)setRequests:(NSMutableOrderedSet *)requests; 9 | -(id)init; 10 | -(NSUInteger)count; 11 | -(NSArray *)allNotificationRequests; 12 | -(BOOL)containsNotificationRequestMatchingRequest:(NCNotificationRequest *)request; 13 | -(NSUInteger)removeNotificationRequest:(NCNotificationRequest *)request; 14 | -(NSUInteger)insertionIndexForNotificationRequest:(NCNotificationRequest *)request; 15 | -(NSUInteger)insertNotificationRequest:(NCNotificationRequest *)request; 16 | -(NSUInteger)indexOfNotificationRequestMatchingRequest:(NCNotificationRequest *)request; 17 | -(NSUInteger)modifyNotificationRequest:(NCNotificationRequest *)request; 18 | -(id)clearNonPersistentRequests; 19 | -(id)clearRequestsPassingTest:(/*^block*/ id)arg1 ; 20 | -(NSUInteger)_insertionIndexForNotificationRequest:(NCNotificationRequest *)request; 21 | -(NSUInteger)_indexOfRequestMatchingNotificationRequest:(NCNotificationRequest *)request; 22 | -(id)_clearRequestsWithPersistence:(NSUInteger)arg1 ; 23 | -(id)_identifierForNotificationRequest:(NCNotificationRequest *)request; 24 | -(id)clearAllRequests; 25 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationShortLookView.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @interface NCNotificationShortLookView : MTTitledPlatterView 6 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationShortLookViewController.h: -------------------------------------------------------------------------------- 1 | #import "NCNotificationViewController.h" 2 | #import 3 | 4 | @interface NCNotificationShortLookViewController : NCNotificationViewController 5 | - (NCNotificationPreviewInteractionManager *)_previewInteractionManager; 6 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCNotificationViewController.h: -------------------------------------------------------------------------------- 1 | #import "_NCNotificationViewControllerView.h" 2 | #import 3 | 4 | @interface NCNotificationViewController : UIViewController 5 | @property (nonatomic,retain) NCNotificationRequest * notificationRequest; 6 | @property (nonatomic, retain) _NCNotificationViewControllerView *view; 7 | - (BOOL)dismissPresentedViewControllerAndClearNotification:(BOOL)arg1 animated:(BOOL)animated; 8 | - (BOOL)dismissPresentedViewControllerAndClearNotification:(BOOL)arg1 animated:(BOOL)animated completion:(void (^)())completionBlock; 9 | - (UIViewController *)_presentedLongLookViewController; 10 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/NCVibrantStyling.h: -------------------------------------------------------------------------------- 1 | @interface NCVibrantStyling : NSObject 2 | + (id)vibrantStylingWithStyle:(int)arg1; 3 | @end -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/UserNotificationsUIKit+Private.h: -------------------------------------------------------------------------------- 1 | #import "NCVibrantStyling.h" 2 | #import "NCBlurring-Protocol.h" 3 | #import "NCAnimatableBlurringView.h" -------------------------------------------------------------------------------- /headers/UserNotificationsUIKit/_NCNotificationViewControllerView.h: -------------------------------------------------------------------------------- 1 | #import "NCNotificationShortLookView.h" 2 | 3 | @interface _NCNotificationViewControllerView : UIView 4 | @property (nonatomic, retain) NCNotificationShortLookView *contentView; 5 | @end -------------------------------------------------------------------------------- /headers/Weather/DayForecast.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface DayForecast : NSObject { 5 | 6 | WFTemperature* _high; 7 | WFTemperature* _low; 8 | unsigned long long _icon; 9 | unsigned long long _dayOfWeek; 10 | unsigned long long _dayNumber; 11 | 12 | } 13 | 14 | @property (nonatomic,copy) WFTemperature * high; //@synthesize high=_high - In the implementation block 15 | @property (nonatomic,copy) WFTemperature * low; //@synthesize low=_low - In the implementation block 16 | @property (assign,nonatomic) unsigned long long icon; //@synthesize icon=_icon - In the implementation block 17 | @property (assign,nonatomic) unsigned long long dayOfWeek; //@synthesize dayOfWeek=_dayOfWeek - In the implementation block 18 | @property (assign,nonatomic) unsigned long long dayNumber; //@synthesize dayNumber=_dayNumber - In the implementation block 19 | -(unsigned long long)dayOfWeek; 20 | -(void)dealloc; 21 | -(id)description; 22 | -(void)setIcon:(unsigned long long)arg1 ; 23 | -(void)setDayOfWeek:(unsigned long long)arg1 ; 24 | -(unsigned long long)icon; 25 | -(unsigned long long)dayNumber; 26 | -(long long)compareDayNumberToDayForecast:(id)arg1 ; 27 | -(void)setDayNumber:(unsigned long long)arg1 ; 28 | @end -------------------------------------------------------------------------------- /headers/Weather/LocationUpdater.h: -------------------------------------------------------------------------------- 1 | @interface LocationUpdater : NSObject { 2 | 3 | BOOL _isGeoCoding; 4 | CLGeocoder* _geoCoder; 5 | /*^block*/id _localWeatherHandler; 6 | City* _currentCity; 7 | 8 | } 9 | 10 | @property (nonatomic,retain) City * currentCity; //@synthesize currentCity=_currentCity - In the implementation block 11 | +(id)sharedLocationUpdater; 12 | +(void)clearSharedLocationUpdater; 13 | -(void)dealloc; 14 | -(void)cancel; 15 | -(id)aggregateDictionaryDomain; 16 | -(void)didProcessDocument; 17 | -(void)handleCompletionForCity:(id)arg1 withUpdateDetail:(unsigned long long)arg2 ; 18 | -(void)failCity:(id)arg1 ; 19 | -(void)_failed:(unsigned long long)arg1 ; 20 | -(void)handleNilCity; 21 | -(BOOL)isDataValid:(id)arg1 ; 22 | -(void)parsedResultCity:(id)arg1 ; 23 | -(void)updateWeatherForLocation:(id)arg1 city:(id)arg2 withCompletionHandler:(/*^block*/id)arg3 ; 24 | -(void)updateWeatherForLocation:(id)arg1 city:(id)arg2 ; 25 | -(void)enableProgressIndicator:(BOOL)arg1 ; 26 | -(void)setCurrentCity:(City *)arg1 ; 27 | -(City *)currentCity; 28 | @end -------------------------------------------------------------------------------- /headers/Weather/SynchronizedDefaultsDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol SynchronizedDefaultsDelegate 2 | @required 3 | -(void)ubiquitousDefaultsDidChange:(id)arg1; 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /headers/Weather/TWCCityUpdater.h: -------------------------------------------------------------------------------- 1 | @interface TWCCityUpdater : NSObject 2 | //@synthesize delegate=_delegate - In the implementation block 3 | @property (nonatomic,retain) NSLocale * locale; //@synthesize locale=_locale - In the implementation block 4 | @property (nonatomic,retain) NSString * trackingParameter; 5 | +(id)sharedCityUpdater; 6 | -(id)init; 7 | -(void)cancel; 8 | -(void)setLocale:(NSLocale *)arg1 ; 9 | -(NSLocale *)locale; 10 | -(BOOL)isUpdatingCity:(id)arg1 ; 11 | -(void)updateWeatherForCity:(id)arg1 ; 12 | -(NSString *)trackingParameter; 13 | -(void)setTrackingParameter:(NSString *)arg1 ; 14 | -(void)updateWeatherForCities:(id)arg1 withCompletionHandler:(/*^block*/id)arg2 ; 15 | -(void)updateWeatherForCities:(id)arg1 ; 16 | @end -------------------------------------------------------------------------------- /headers/Weather/WATodayModel.h: -------------------------------------------------------------------------------- 1 | #import "WAForecastModel.h" 2 | 3 | @class WATodayAutoupdatingLocationModel; 4 | 5 | @interface WATodayModel : NSObject { 6 | 7 | NSHashTable* _observers; 8 | NSOperationQueue* _modelOperationQueue; 9 | WAForecastModel* _forecastModel; 10 | NSDate* _lastUpdateDate; 11 | 12 | } 13 | 14 | @property (nonatomic,retain) WAForecastModel * forecastModel; //@synthesize forecastModel=_forecastModel - In the implementation block 15 | @property (nonatomic,readonly) NSDate * lastUpdateDate; //@synthesize lastUpdateDate=_lastUpdateDate - In the implementation block 16 | +(WATodayAutoupdatingLocationModel *)autoupdatingLocationModelWithPreferences:(id)arg1 effectiveBundleIdentifier:(id)arg2 ; 17 | +(id)modelWithLocation:(id)arg1 ; 18 | -(id)init; 19 | -(void)addObserver:(id)arg1 ; 20 | -(void)removeObserver:(id)arg1 ; 21 | -(id)location; 22 | -(NSDate *)lastUpdateDate; 23 | -(id)initWithLocation:(id)arg1 ; 24 | -(void)_locationUpdateCompleted:(id)arg1 error:(id)arg2 completion:(/*^block*/id)arg3 ; 25 | -(void)_executeLocationUpdateWithCompletion:(/*^block*/id)arg1 ; 26 | -(void)_forecastUpdateCompleted:(id)arg1 forecastModel:(id)arg2 error:(id)arg3 completion:(/*^block*/id)arg4 ; 27 | -(void)_executeForecastRetrievalForLocation:(id)arg1 completion:(/*^block*/id)arg2 ; 28 | -(WAForecastModel *)forecastModel; 29 | -(void)setForecastModel:(WAForecastModel *)arg1 ; 30 | -(void)_willDeliverForecastModel:(id)arg1 ; 31 | -(void)_fireTodayModelForecastWasUpdated:(id)arg1 ; 32 | -(void)_persistStateWithModel:(id)arg1 ; 33 | -(BOOL)executeModelUpdateWithCompletion:(/*^block*/id)arg1 ; 34 | -(void)_fireTodayModelWantsUpdate; 35 | @end -------------------------------------------------------------------------------- /headers/Weather/Weather+Private.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "City.h" 4 | #import "SynchronizedDefaultsDelegate-Protocol.h" 5 | #import "WAForecastModel.h" 6 | #import "WATodayModel.h" 7 | #import "WeatherCloudPersistenceDelegate-Protocol.h" 8 | #import "WeatherCloudPreferences.h" 9 | #import "WeatherPreferences.h" 10 | #import "WeatherPreferencesPersistence-Protocol.h" 11 | #import "WATodayAutoupdatingLocationModel.h" 12 | #import "WeatherImageLoader.h" -------------------------------------------------------------------------------- /headers/Weather/Weather.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "City.h" 4 | #import "SynchronizedDefaultsDelegate-Protocol.h" 5 | #import "WAForecastModel.h" 6 | #import "WATodayModel.h" 7 | #import "WeatherCloudPersistenceDelegate-Protocol.h" 8 | #import "WeatherCloudPreferences.h" 9 | #import "WeatherPreferences.h" 10 | #import "WeatherPreferencesPersistence-Protocol.h" 11 | #import "WATodayAutoupdatingLocationModel.h" 12 | #import "WeatherImageLoader.h" 13 | #import "DayForecast.h" 14 | #import "WeatherLocationManager.h" 15 | #import "LocationUpdater.h" 16 | #import "WeatherIdentifierUpdater.h" -------------------------------------------------------------------------------- /headers/Weather/WeatherCloudPersistenceDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol WeatherCloudPersistenceDelegate 2 | @required 3 | -(void)cloudPersistenceDidSynchronize:(id)arg1; 4 | 5 | @end -------------------------------------------------------------------------------- /headers/Weather/WeatherIdentifierUpdater.h: -------------------------------------------------------------------------------- 1 | @interface WeatherIdentifierUpdater : NSObject { 2 | 3 | /*^block*/id _woeidWeatherHandler; 4 | NSArray* _requestedCities; 5 | NSMutableArray* _parsedCities; 6 | 7 | } 8 | 9 | @property (nonatomic,retain) NSArray * requestedCities; //@synthesize requestedCities=_requestedCities - In the implementation block 10 | @property (nonatomic,retain) NSMutableArray * parsedCities; //@synthesize parsedCities=_parsedCities - In the implementation block 11 | +(id)sharedWeatherIdentifierUpdater; 12 | +(void)clearSharedIdentifierUpdater; 13 | -(void)dealloc; 14 | -(void)updateWeatherForCity:(id)arg1 ; 15 | -(id)aggregateDictionaryDomain; 16 | -(void)handleCompletionForCity:(id)arg1 withUpdateDetail:(unsigned long long)arg2 ; 17 | -(void)_failed:(unsigned long long)arg1 ; 18 | -(void)updateWeatherForCities:(id)arg1 withCompletionHandler:(/*^block*/id)arg2 ; 19 | -(NSArray *)requestedCities; 20 | -(void)setRequestedCities:(NSArray *)arg1 ; 21 | -(NSMutableArray *)parsedCities; 22 | -(void)setParsedCities:(NSMutableArray *)arg1 ; 23 | @end -------------------------------------------------------------------------------- /headers/Weather/WeatherImageLoader.h: -------------------------------------------------------------------------------- 1 | 2 | @interface WeatherImageLoader : NSObject { 3 | 4 | CGFloat _scale; 5 | NSCache* _conditionImagesCache; 6 | 7 | } 8 | 9 | @property (nonatomic,retain) NSCache * conditionImagesCache; //@synthesize conditionImagesCache=_conditionImagesCache - In the implementation block 10 | +(id)sharedImageLoader; 11 | +(id)conditionImageBundle; 12 | +(id)conditionImageNameWithConditionIndex:(NSInteger)arg1 ; 13 | +(id)conditionImageNamed:(id)arg1 ; 14 | +(void)cacheImageIfNecessary:(id)arg1 ; 15 | +(id)conditionImageWithConditionIndex:(NSInteger)arg1 ; 16 | +(id)cachedImageNamed:(id)arg1 completion:(/*^block*/id)arg2 ; 17 | -(id)init; 18 | -(void)setImage:(id)arg1 forKey:(id)arg2 ; 19 | -(id)cachedImageForKey:(id)arg1 ; 20 | -(NSCache *)conditionImagesCache; 21 | -(void)setConditionImagesCache:(NSCache *)arg1 ; 22 | @end -------------------------------------------------------------------------------- /headers/Weather/WeatherPreferencesPersistence-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol WeatherPreferencesPersistence 2 | @required 3 | -(id)objectForKey:(id)arg1; 4 | -(void)removeObjectForKey:(id)arg1; 5 | -(void)setObject:(id)arg1 forKey:(id)arg2; 6 | -(BOOL)synchronize; 7 | -(BOOL)boolForKey:(id)arg1; 8 | -(id)stringForKey:(id)arg1; 9 | -(void)setBool:(BOOL)arg1 forKey:(id)arg2; 10 | -(id)dictionaryForKey:(id)arg1; 11 | -(id)arrayForKey:(id)arg1; 12 | 13 | @end -------------------------------------------------------------------------------- /headers/WeatherFoundation/WFGeocodeRequest.h: -------------------------------------------------------------------------------- 1 | #import "WFTask.h" 2 | #import "WFLocation.h" 3 | 4 | @interface WFGeocodeRequest : WFTask { 5 | 6 | /*^block*/id _resultHandler; 7 | NSString* _searchString; 8 | WFLocation* _geocodedResult; 9 | CLLocationCoordinate2D _coordinate; 10 | 11 | } 12 | 13 | @property (retain) NSString * searchString; //@synthesize searchString=_searchString - In the implementation block 14 | @property (assign) CLLocationCoordinate2D coordinate; //@synthesize coordinate=_coordinate - In the implementation block 15 | @property (retain) WFLocation * geocodedResult; //@synthesize geocodedResult=_geocodedResult - In the implementation block 16 | @property (readonly) id resultHandler; //@synthesize resultHandler=_resultHandler - In the implementation block 17 | @property (readonly) NSString * searchTerm; 18 | -(id)description; 19 | -(NSString *)searchString; 20 | -(void)cleanup; 21 | -(void)setSearchString:(NSString *)arg1 ; 22 | -(void)handleResponse:(id)arg1 ; 23 | -(NSString *)searchTerm; 24 | -(id)resultHandler; 25 | -(void)setCoordinate:(CLLocationCoordinate2D)arg1 ; 26 | -(CLLocationCoordinate2D)coordinate; 27 | -(id)initWithCoordinate:(CLLocationCoordinate2D)arg1 resultHandler:(/*^block*/id)arg2 ; 28 | -(id)initWithSearchString:(id)arg1 resultHandler:(/*^block*/id)arg2 ; 29 | -(void)startWithService:(id)arg1 ; 30 | -(id)initWithSearchCompletion:(id)arg1 resultHandler:(/*^block*/id)arg2 ; 31 | -(void)handleCancellation; 32 | -(void)setGeocodedResult:(WFLocation *)arg1 ; 33 | -(WFLocation *)geocodedResult; 34 | @end -------------------------------------------------------------------------------- /headers/WeatherFoundation/WFTask.h: -------------------------------------------------------------------------------- 1 | #import "WFTaskIdentifier.h" 2 | 3 | @interface WFTask : NSObject { 4 | 5 | BOOL _requiresResponse; 6 | WFTaskIdentifier* _identifier; 7 | NSProgress* _progress; 8 | 9 | } 10 | 11 | @property (nonatomic,readonly) WFTaskIdentifier * identifier; //@synthesize identifier=_identifier - In the implementation block 12 | @property (nonatomic,readonly) BOOL requiresResponse; //@synthesize requiresResponse=_requiresResponse - In the implementation block 13 | @property (nonatomic,retain) NSProgress * progress; //@synthesize progress=_progress - In the implementation block 14 | @property (nonatomic,readonly) BOOL isCancelled; 15 | +(id)sharedServiceConnection; 16 | -(id)init; 17 | -(void)cancel; 18 | -(WFTaskIdentifier *)identifier; 19 | -(void)setProgress:(NSProgress *)arg1 ; 20 | -(void)start; 21 | -(BOOL)isCancelled; 22 | -(NSProgress *)progress; 23 | -(void)cleanup; 24 | -(BOOL)requiresResponse; 25 | -(void)handleResponse:(id)arg1 ; 26 | -(void)executeSynchronously; 27 | -(id)initWithResponseRequired:(BOOL)arg1 ; 28 | -(void)startWithService:(id)arg1 ; 29 | -(void)handleCancellation; 30 | @end 31 | -------------------------------------------------------------------------------- /headers/WeatherFoundation/WFTaskIdentifier.h: -------------------------------------------------------------------------------- 1 | @interface WFTaskIdentifier : NSObject { 2 | 3 | int _pid; 4 | NSUUID* _UUID; 5 | NSString* _processName; 6 | 7 | } 8 | 9 | @property (nonatomic,readonly) NSUUID * UUID; //@synthesize UUID=_UUID - In the implementation block 10 | @property (nonatomic,readonly) NSString * processName; //@synthesize processName=_processName - In the implementation block 11 | @property (nonatomic,readonly) int pid; //@synthesize pid=_pid - In the implementation block 12 | +(BOOL)supportsSecureCoding; 13 | +(id)defaultIdentifier; 14 | -(id)init; 15 | -(id)initWithCoder:(id)arg1 ; 16 | -(void)encodeWithCoder:(id)arg1 ; 17 | -(BOOL)isEqual:(id)arg1 ; 18 | -(id)copyWithZone:(NSZone*)arg1 ; 19 | -(NSUUID *)UUID; 20 | -(NSString *)processName; 21 | -(int)pid; 22 | @end -------------------------------------------------------------------------------- /headers/WeatherFoundation/WFTemperature.h: -------------------------------------------------------------------------------- 1 | @interface WFTemperature : NSObject 2 | 3 | @property (assign,nonatomic) CGFloat celsius; 4 | @property (assign,nonatomic) CGFloat fahrenheit; 5 | @property (assign,nonatomic) CGFloat kelvin; 6 | +(BOOL)supportsSecureCoding; 7 | -(CGFloat)celsius; 8 | -(CGFloat)fahrenheit; 9 | -(CGFloat)kelvin; 10 | -(id)init; 11 | -(id)initWithCoder:(id)arg1 ; 12 | -(void)encodeWithCoder:(id)arg1 ; 13 | -(BOOL)isEqual:(id)arg1 ; 14 | -(id)copyWithZone:(NSZone*)arg1 ; 15 | -(CGFloat)temperatureForUnit:(int)arg1 ; 16 | -(id)initWithTemperatureUnit:(int)arg1 value:(CGFloat)arg2 ; 17 | -(void)setCelsius:(CGFloat)arg1 ; 18 | -(void)setKelvin:(CGFloat)arg1 ; 19 | -(void)setFahrenheit:(CGFloat)arg1 ; 20 | -(BOOL)isEqualToTemperature:(id)arg1 ; 21 | -(void)_setValue:(CGFloat)arg1 forUnit:(int)arg2 ; 22 | -(void)_resetTemperatureValues; 23 | -(BOOL)_unitIsHydrated:(int)arg1 outputValue:(out CGFloat*)arg2 ; 24 | @end -------------------------------------------------------------------------------- /headers/WeatherFoundation/WFTemperatureUnitObserver-Protocol.h: -------------------------------------------------------------------------------- 1 | @protocol WFTemperatureUnitObserver 2 | @required 3 | -(void)temperatureUnitObserver:(id)arg1 didChangeTemperatureUnitTo:(int)arg2; 4 | 5 | @end -------------------------------------------------------------------------------- /headers/WeatherFoundation/WFWeatherConditions.h: -------------------------------------------------------------------------------- 1 | #import "WFLocation.h" 2 | 3 | @interface WFWeatherConditions : NSObject { 4 | 5 | WFLocation* _location; 6 | NSMutableDictionary* _components; 7 | 8 | } 9 | 10 | @property (nonatomic,retain) NSMutableDictionary * components; //@synthesize components=_components - In the implementation block 11 | @property (retain) WFLocation * location; //@synthesize location=_location - In the implementation block 12 | +(BOOL)supportsSecureCoding; 13 | -(id)valueForComponent:(id)arg1 ; 14 | -(void)setValue:(id)arg1 forComponent:(id)arg2 ; 15 | -(id)init; 16 | -(id)initWithCoder:(id)arg1 ; 17 | -(void)encodeWithCoder:(id)arg1 ; 18 | -(id)description; 19 | -(id)objectForKeyedSubscript:(id)arg1 ; 20 | -(void)setObject:(id)arg1 forKeyedSubscript:(id)arg2 ; 21 | -(id)copyWithZone:(NSZone*)arg1 ; 22 | -(id)dictionaryRepresentation; 23 | -(WFLocation *)location; 24 | -(void)setLocation:(WFLocation *)arg1 ; 25 | -(NSMutableDictionary *)components; 26 | -(void)setComponents:(NSMutableDictionary *)arg1 ; 27 | -(void)_retrieveSunrise:(id*)arg1 sunset:(id*)arg2 ; 28 | -(BOOL)wf_isDayIfSunrise:(id)arg1 sunset:(id)arg2 ; 29 | -(id)allComponents; 30 | -(BOOL)wf_isDay; 31 | @end 32 | -------------------------------------------------------------------------------- /headers/WeatherFoundation/WeatherFoundation+Private.h: -------------------------------------------------------------------------------- 1 | #import "WFAirQualityConditions.h" 2 | #import "WFLocation.h" 3 | #import "WFTemperatureUnitObserver-Protocol.h" 4 | #import "WFWeatherConditions.h" 5 | #import "WFTemperature.h" 6 | #import "WFTaskIdentifier.h" 7 | #import "WFTask.h" 8 | #import "WFGeocodeRequest.h" -------------------------------------------------------------------------------- /headers/headers.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | #import 5 | #import 6 | #import 7 | #import 8 | #import 9 | #import 10 | #import 11 | #import 12 | #import 13 | #import 14 | #import 15 | #import 16 | #import 17 | #import 18 | #import 19 | #import 20 | #import --------------------------------------------------------------------------------