├── Headers ├── ControlCenterServices │ ├── BSAbstractDefaultDomain.h │ ├── CCSControlCenterDefaults.h │ ├── CCSModuleMetadata.h │ ├── CCSModuleRepository.h │ ├── CCSModuleSettingsProvider.h │ ├── CCSUsageMetrics.h │ ├── ControlCenterServices-Structs.h │ ├── ControlCenterServices.h │ └── LSApplicationWorkspaceObserverProtocol.h ├── ControlCenterUI │ ├── CCSModuleRepositoryObserver.h │ ├── CCSModuleSettingsProviderObserver.h │ ├── CCUIAnimation.h │ ├── CCUIAnimationBatch.h │ ├── CCUIAnimationCustomTimingFunctionParameters.h │ ├── CCUIAnimationParameters.h │ ├── CCUIAnimationRunner.h │ ├── CCUIAnimationTimingFunctionDescription.h │ ├── CCUIC2AnimationParameters.h │ ├── CCUICAAnimationFactory.h │ ├── CCUICABasicAnimationFactory.h │ ├── CCUICABasicAnimationParameters.h │ ├── CCUICASpringAnimationFactory.h │ ├── CCUICASpringAnimationParameters.h │ ├── CCUIContentModuleBackgroundView.h │ ├── CCUIContentModuleContainerTransition.h │ ├── CCUIContentModuleContainerView.h │ ├── CCUIContentModuleContainerViewController.h │ ├── CCUIContentModuleContainerViewControllerDelegate.h │ ├── CCUIContentModuleContentContainerView.h │ ├── CCUIContentModuleContextDelegate.h │ ├── CCUIControlCenterDefaults.h │ ├── CCUIControlCenterPositionProvider.h │ ├── CCUIControlCenterPositionProviderPackingRule.h │ ├── CCUIDismissalGestureRecognizer.h │ ├── CCUIExpandedModuleBackgroundView.h │ ├── CCUIFlickGestureRecognizer.h │ ├── CCUIHeaderPocketView.h │ ├── CCUIHostStatusBarStyleProvider.h │ ├── CCUILayoutOptions.h │ ├── CCUILayoutView.h │ ├── CCUILayoutViewLayoutSource.h │ ├── CCUIModularControlCenterCardView.h │ ├── CCUIModularControlCenterCardViewController.h │ ├── CCUIModularControlCenterCardViewControllerDelegate.h │ ├── CCUIModularControlCenterOverlayViewController.h │ ├── CCUIModularControlCenterOverlayViewControllerDelegate.h │ ├── CCUIModularControlCenterViewController.h │ ├── CCUIModuleCollectionView.h │ ├── CCUIModuleCollectionViewController.h │ ├── CCUIModuleCollectionViewControllerDelegate.h │ ├── CCUIModuleInstance.h │ ├── CCUIModuleInstanceManager.h │ ├── CCUIModuleInstanceManagerObserver.h │ ├── CCUIModuleSettings.h │ ├── CCUIModuleSettingsManager.h │ ├── CCUIModuleSettingsManagerObserver.h │ ├── CCUIMutableC2AnimationParameters.h │ ├── CCUIMutableCABasicAnimationParameters.h │ ├── CCUIMutableCASpringAnimationParameters.h │ ├── CCUIMutableLayoutOptions.h │ ├── CCUIOverlayFlickGestureBehavior.h │ ├── CCUIOverlayMetricsProvider.h │ ├── CCUIOverlayPresentationProvider.h │ ├── CCUIOverlayScaleFadePresentationProvider.h │ ├── CCUIOverlaySlideUpPresentationProvider.h │ ├── CCUIOverlayStatusBarPresentationProvider.h │ ├── CCUIOverlayTransitionState.h │ ├── CCUIOverlayViewProvider.h │ ├── CCUISafeAppearancePropagationProvider.h │ ├── CCUIScrollView.h │ ├── CCUIScrollViewDelegate.h │ ├── CCUIStatusBar.h │ ├── CCUIStatusBarDelegate.h │ ├── CCUIStatusBarStyleSnapshot.h │ ├── CCUIStatusLabel.h │ ├── CCUIStatusLabelViewController.h │ ├── CCUIStatusLabelViewControllerDelegate.h │ ├── CCUIStatusUpdateQueue.h │ ├── ControlCenterUI-Structs.h │ ├── ControlCenterUI.h │ ├── UIGestureRecognizerDelegate.h │ ├── UIPreviewInteractionDelegatePrivate.h │ ├── _UIBasicAnimationFactory.h │ └── _UIPreviewInteractionViewControllerTransition.h └── ControlCenterUIKit │ ├── CCUIAppLauncherModule.h │ ├── CCUIAppLauncherViewController.h │ ├── CCUIButtonModuleView.h │ ├── CCUIButtonModuleViewController.h │ ├── CCUICAPackageDescription.h │ ├── CCUICAPackageView.h │ ├── CCUIContentClipping.h │ ├── CCUIContentModule.h │ ├── CCUIContentModuleContentViewController.h │ ├── CCUIContentModuleContext.h │ ├── CCUIContentModuleExpandedStateListener.h │ ├── CCUIContentModuleTopLevelGestureProvider.h │ ├── CCUIControlCenterButton.h │ ├── CCUIControlCenterLabel.h │ ├── CCUIControlCenterMaterialView.h │ ├── CCUIControlCenterSlider.h │ ├── CCUIControlCenterVisualEffect.h │ ├── CCUIGroupRendering.h │ ├── CCUILabeledRoundButton.h │ ├── CCUILabeledRoundButtonViewController.h │ ├── CCUIMenuModuleAnimationController.h │ ├── CCUIMenuModuleItemView.h │ ├── CCUIMenuModulePresentationController.h │ ├── CCUIMenuModuleTransitioningDelegate.h │ ├── CCUIMenuModuleViewController.h │ ├── CCUIModuleSliderView.h │ ├── CCUIPunchOutMask.h │ ├── CCUIRoundButton.h │ ├── CCUISliderModuleBackgroundViewController.h │ ├── CCUIStatusUpdate.h │ ├── CCUIToggleModule.h │ ├── CCUIToggleViewController.h │ ├── ControlCenterUIKit-Structs.h │ ├── ControlCenterUIKit.h │ ├── SBFButton.h │ ├── UIGestureRecognizerDelegate.h │ ├── UIViewControllerAnimatedTransitioning.h │ ├── UIViewControllerTransitioningDelegate.h │ └── _UISettingsKeyObserver.h ├── README.md ├── install.sh ├── iphone_ccsupport_module_provider-11up.nic.tar └── iphone_control_center_module-11up.nic.tar /Headers/ControlCenterServices/BSAbstractDefaultDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/BSAbstractDefaultDomain.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/CCSControlCenterDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/CCSControlCenterDefaults.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/CCSModuleMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/CCSModuleMetadata.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/CCSModuleRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/CCSModuleRepository.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/CCSModuleSettingsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/CCSModuleSettingsProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/CCSUsageMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/CCSUsageMetrics.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/ControlCenterServices-Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/ControlCenterServices-Structs.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/ControlCenterServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/ControlCenterServices.h -------------------------------------------------------------------------------- /Headers/ControlCenterServices/LSApplicationWorkspaceObserverProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterServices/LSApplicationWorkspaceObserverProtocol.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCSModuleRepositoryObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCSModuleRepositoryObserver.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCSModuleSettingsProviderObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCSModuleSettingsProviderObserver.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIAnimation.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIAnimationBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIAnimationBatch.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIAnimationCustomTimingFunctionParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIAnimationCustomTimingFunctionParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIAnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIAnimationParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIAnimationRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIAnimationRunner.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIAnimationTimingFunctionDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIAnimationTimingFunctionDescription.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIC2AnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIC2AnimationParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUICAAnimationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUICAAnimationFactory.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUICABasicAnimationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUICABasicAnimationFactory.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUICABasicAnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUICABasicAnimationParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUICASpringAnimationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUICASpringAnimationFactory.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUICASpringAnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUICASpringAnimationParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIContentModuleBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIContentModuleBackgroundView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIContentModuleContainerTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIContentModuleContainerTransition.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIContentModuleContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIContentModuleContainerView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIContentModuleContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIContentModuleContainerViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIContentModuleContainerViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIContentModuleContainerViewControllerDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIContentModuleContentContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIContentModuleContentContainerView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIContentModuleContextDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIContentModuleContextDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIControlCenterDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIControlCenterDefaults.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIControlCenterPositionProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIControlCenterPositionProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIControlCenterPositionProviderPackingRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIControlCenterPositionProviderPackingRule.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIDismissalGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIDismissalGestureRecognizer.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIExpandedModuleBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIExpandedModuleBackgroundView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIFlickGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIFlickGestureRecognizer.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIHeaderPocketView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIHeaderPocketView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIHostStatusBarStyleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIHostStatusBarStyleProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUILayoutOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUILayoutOptions.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUILayoutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUILayoutView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUILayoutViewLayoutSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUILayoutViewLayoutSource.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModularControlCenterCardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModularControlCenterCardView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModularControlCenterCardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModularControlCenterCardViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModularControlCenterCardViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModularControlCenterCardViewControllerDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModularControlCenterOverlayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModularControlCenterOverlayViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModularControlCenterOverlayViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModularControlCenterOverlayViewControllerDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModularControlCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModularControlCenterViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleCollectionView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleCollectionViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleCollectionViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleCollectionViewControllerDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleInstance.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleInstanceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleInstanceManager.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleInstanceManagerObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleInstanceManagerObserver.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleSettings.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleSettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleSettingsManager.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIModuleSettingsManagerObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIModuleSettingsManagerObserver.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIMutableC2AnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIMutableC2AnimationParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIMutableCABasicAnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIMutableCABasicAnimationParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIMutableCASpringAnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIMutableCASpringAnimationParameters.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIMutableLayoutOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIMutableLayoutOptions.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlayFlickGestureBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlayFlickGestureBehavior.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlayMetricsProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlayMetricsProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlayPresentationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlayPresentationProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlayScaleFadePresentationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlayScaleFadePresentationProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlaySlideUpPresentationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlaySlideUpPresentationProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlayStatusBarPresentationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlayStatusBarPresentationProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlayTransitionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlayTransitionState.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIOverlayViewProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIOverlayViewProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUISafeAppearancePropagationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUISafeAppearancePropagationProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIScrollView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIScrollViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIScrollViewDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIStatusBar.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIStatusBarDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIStatusBarDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIStatusBarStyleSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIStatusBarStyleSnapshot.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIStatusLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIStatusLabel.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIStatusLabelViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIStatusLabelViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIStatusLabelViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIStatusLabelViewControllerDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/CCUIStatusUpdateQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/CCUIStatusUpdateQueue.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/ControlCenterUI-Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/ControlCenterUI-Structs.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/ControlCenterUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/ControlCenterUI.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/UIGestureRecognizerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/UIGestureRecognizerDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/UIPreviewInteractionDelegatePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/UIPreviewInteractionDelegatePrivate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/_UIBasicAnimationFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/_UIBasicAnimationFactory.h -------------------------------------------------------------------------------- /Headers/ControlCenterUI/_UIPreviewInteractionViewControllerTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUI/_UIPreviewInteractionViewControllerTransition.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIAppLauncherModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIAppLauncherModule.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIAppLauncherViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIAppLauncherViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIButtonModuleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIButtonModuleView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIButtonModuleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIButtonModuleViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUICAPackageDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUICAPackageDescription.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUICAPackageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUICAPackageView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIContentClipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIContentClipping.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIContentModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIContentModule.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIContentModuleContentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIContentModuleContentViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIContentModuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIContentModuleContext.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIContentModuleExpandedStateListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIContentModuleExpandedStateListener.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIContentModuleTopLevelGestureProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIContentModuleTopLevelGestureProvider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIControlCenterButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIControlCenterButton.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIControlCenterLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIControlCenterLabel.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIControlCenterMaterialView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIControlCenterMaterialView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIControlCenterSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIControlCenterSlider.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIControlCenterVisualEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIControlCenterVisualEffect.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIGroupRendering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIGroupRendering.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUILabeledRoundButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUILabeledRoundButton.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUILabeledRoundButtonViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUILabeledRoundButtonViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIMenuModuleAnimationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIMenuModuleAnimationController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIMenuModuleItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIMenuModuleItemView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIMenuModulePresentationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIMenuModulePresentationController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIMenuModuleTransitioningDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIMenuModuleTransitioningDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIMenuModuleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIMenuModuleViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIModuleSliderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIModuleSliderView.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIPunchOutMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIPunchOutMask.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIRoundButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIRoundButton.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUISliderModuleBackgroundViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUISliderModuleBackgroundViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIStatusUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIStatusUpdate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIToggleModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIToggleModule.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/CCUIToggleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/CCUIToggleViewController.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/ControlCenterUIKit-Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/ControlCenterUIKit-Structs.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/ControlCenterUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/ControlCenterUIKit.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/SBFButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/SBFButton.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/UIGestureRecognizerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/UIGestureRecognizerDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/UIViewControllerAnimatedTransitioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/UIViewControllerAnimatedTransitioning.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/UIViewControllerTransitioningDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/UIViewControllerTransitioningDelegate.h -------------------------------------------------------------------------------- /Headers/ControlCenterUIKit/_UISettingsKeyObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/Headers/ControlCenterUIKit/_UISettingsKeyObserver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/install.sh -------------------------------------------------------------------------------- /iphone_ccsupport_module_provider-11up.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/iphone_ccsupport_module_provider-11up.nic.tar -------------------------------------------------------------------------------- /iphone_control_center_module-11up.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opa334/CCSupportTemplates/HEAD/iphone_control_center_module-11up.nic.tar --------------------------------------------------------------------------------