├── .gitignore ├── AppearanceLifeCycle.xm ├── Dragging.xm ├── HSWidgetLoader.h ├── HSWidgetLoader.mm ├── HSWidgetPageController.h ├── HSWidgetPageController.xm ├── HSWidgetUnrotateableViewController.h ├── HSWidgetUnrotateableViewController.xm ├── HSWidgets.plist ├── LICENSE.md ├── Makefile ├── README.md ├── Resources ├── HSExpand@2x.png ├── HSExpand@3x.png ├── HSPlaceholderShape@2x.png ├── HSPlaceholderShape@3x.png ├── HSSettings@2x.png ├── HSSettings@3x.png ├── HSShrink@2x.png └── HSShrink@3x.png ├── Rotation.xm ├── SBAccessoryBoxViews.xm ├── SBIconListModel.xm ├── Tweak.xm ├── ZoomAnimation.xm ├── api ├── HSModernWidgetViewController.h ├── HSModernWidgetViewController.mm ├── HSWidgetAddNewAdditionalOptionsDelegate.h ├── HSWidgetAdditionalOptions.h ├── HSWidgetAdditionalOptionsViewController.h ├── HSWidgetAdditionalOptionsViewController.mm ├── HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.h ├── HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.mm ├── HSWidgetDelegate.h ├── HSWidgetPreferences.h ├── HSWidgetPreferencesListController.h ├── HSWidgetPreferencesListController.mm ├── HSWidgetResources.h ├── HSWidgetResources.mm ├── HSWidgetUnclippedView.h ├── HSWidgetUnclippedView.mm ├── HSWidgetViewController.h ├── HSWidgetViewController.xm ├── HSWidgets.h └── core │ ├── HSWidgetAvailablePositionObject.h │ ├── HSWidgetAvailablePositionObject.mm │ ├── HSWidgetFrameObject.h │ ├── HSWidgetFrameObject.mm │ ├── HSWidgetGridPositionConverterCache.h │ ├── HSWidgetGridPositionConverterCache.mm │ ├── HSWidgetPositionObject.h │ ├── HSWidgetPositionObject.mm │ ├── HSWidgetSizeObject.h │ ├── HSWidgetSizeObject.mm │ ├── HSWidgets-core.h │ └── HSWidgets-structs.h ├── control ├── docs ├── Core │ ├── HSWidgetAvailablePositionObject.html │ ├── HSWidgetAvailablePositionObject │ │ ├── containsIcon.html │ │ ├── initwithavailablewidgetposition_containingicon.html │ │ └── objectwithavailablewidgetposition_containingicon.html │ ├── HSWidgetDirection.html │ ├── HSWidgetDirection │ │ ├── HSWidgetDirectionDown.html │ │ ├── HSWidgetDirectionLeft.html │ │ ├── HSWidgetDirectionNone.html │ │ ├── HSWidgetDirectionRight.html │ │ ├── HSWidgetDirectionUp.html │ │ ├── HSWidgetPositionInDirection.html │ │ ├── HSWidgetPositionIsAdjacent.html │ │ └── HSWidgetReverseDirection.html │ ├── HSWidgetFrame.html │ ├── HSWidgetFrame │ │ ├── HSWidgetFrameContainsPosition.html │ │ ├── HSWidgetFrameEqualsFrame.html │ │ ├── HSWidgetFrameMake.html │ │ ├── HSWidgetFrameMake_cpp.html │ │ ├── HSWidgetFrameZero.html │ │ ├── origin.html │ │ └── size.html │ ├── HSWidgetFrameObject.html │ ├── HSWidgetFrameObject │ │ ├── frame.html │ │ ├── initWithWidgetFrame.html │ │ ├── isEqualToWidgetFrameObject.html │ │ ├── objectWithWidgetFrame.html │ │ ├── origin.html │ │ └── size.html │ ├── HSWidgetGridPositionConverterCache.html │ ├── HSWidgetGridPositionConverterCache │ │ ├── canFitWidgetOfSize_inGridPositions.html │ │ ├── canFitWidget_inGridPositions.html │ │ ├── css │ │ │ └── gridPositionsForWidgetFrame.css │ │ ├── gridPositionsForWidgetFrame.html │ │ └── originForWidgetOfSize_inGridPositions.html │ ├── HSWidgetPosition.html │ ├── HSWidgetPosition │ │ ├── HSWidgetPositionAdd.html │ │ ├── HSWidgetPositionEqualsPosition.html │ │ ├── HSWidgetPositionIsValid.html │ │ ├── HSWidgetPositionMake.html │ │ ├── HSWidgetPositionZero.html │ │ ├── col.html │ │ └── row.html │ ├── HSWidgetPositionObject.html │ ├── HSWidgetPositionObject │ │ ├── col.html │ │ ├── initWithWidgetPosition.html │ │ ├── isEqualToWidgetPositionObject.html │ │ ├── objectWithWidgetPosition.html │ │ ├── position.html │ │ └── row.html │ ├── HSWidgetSize.html │ ├── HSWidgetSize │ │ ├── HSWidgetSizeAdd.html │ │ ├── HSWidgetSizeEqualsSize.html │ │ ├── HSWidgetSizeMake.html │ │ ├── HSWidgetSizeZero.html │ │ ├── SpacesForWidgetSize.html │ │ ├── numCols.html │ │ └── numRows.html │ ├── HSWidgetSizeObject.html │ ├── HSWidgetSizeObject │ │ ├── initWithWidgetSize.html │ │ ├── isEqualToWidgetSizeObject.html │ │ ├── numCols.html │ │ ├── numRows.html │ │ ├── objectWithWidgetSize.html │ │ └── size.html │ └── css │ │ ├── HSWidgetDirection.css │ │ └── HSWidgetFrame.css ├── Getting_Started │ ├── AccessorySquareWidget.png │ ├── Adding_Basic_Preferences.html │ ├── Adding_Dynamic_Size.html │ ├── BuggyExpandedSquareWidget.png │ ├── ExpandedSquareWidget.png │ ├── ExpandedWidgetColors.png │ ├── PillRedSquareWidget.png │ ├── RedSquareWidget.png │ ├── RoundedRedSquareWidget.png │ ├── Simple_Widget.html │ ├── Theos_Environment_Setup.html │ ├── WidgetAdditionalOptions.png │ ├── WidgetSettings.png │ └── WidgetSettingsAccessory.png ├── Preferences │ ├── HSWidgetAddNewAdditionalOptionsDelegate.html │ ├── HSWidgetAddNewAdditionalOptionsDelegate │ │ ├── additionalOptionsViewController_addWidgetForClass.html │ │ └── dismissAddWidget.html │ ├── HSWidgetAdditionalOptions.html │ ├── HSWidgetAdditionalOptions │ │ ├── delegate.html │ │ ├── initWithWidgetsOptionsToExclude_withDelegate_availablePositions.html │ │ ├── requestWidgetSize.html │ │ ├── widgetClass.html │ │ └── widgetOptions.html │ ├── HSWidgetAdditionalOptionsViewController.html │ ├── HSWidgetAdditionalOptionsViewController │ │ ├── addWidget.html │ │ ├── availablePositions.html │ │ ├── cancelAdditionalOptions.html │ │ ├── containsSpaceForGridPositions.html │ │ └── containsSpaceForWidgetSize.html │ ├── HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.html │ ├── HSWidgetCombinedAdditionalOptionsAndPreferencesViewController │ │ ├── addWidget.html │ │ ├── cancelAdditionalOptions.html │ │ ├── containsSpaceForGridPositions.html │ │ └── containsSpaceForWidgetSize.html │ ├── HSWidgetPreferences.html │ ├── HSWidgetPreferences │ │ ├── availablePositions.html │ │ ├── initWithWidgetViewController_availablePositions.html │ │ └── widgetViewController.html │ ├── HSWidgetPreferencesListController.html │ └── HSWidgetPreferencesListController │ │ ├── containsSpaceForGridPositions.html │ │ ├── containsSpaceForWidgetSize.html │ │ ├── readFileValue.html │ │ ├── readPreferenceValue.html │ │ ├── readUserDefaultsValue.html │ │ ├── readWidgetOptionsValue.html │ │ ├── resetAllSettings.html │ │ ├── resetFileValues.html │ │ ├── resetUserDefaults.html │ │ ├── resetWidgetOptions.html │ │ ├── setFileValue_specifier.html │ │ ├── setPreferenceValue_specifier.html │ │ ├── setUserDefaultsValue_specifier.html │ │ └── setWidgetOptionsValue_specifier.html ├── User_Interface │ ├── HSModernWidgetViewController.html │ ├── HSModernWidgetViewController │ │ ├── blurView.html │ │ ├── contentView.html │ │ ├── expandWidget.html │ │ ├── shrinkWidget.html │ │ └── titleLabel.html │ ├── HSWidgetDelegate.html │ ├── HSWidgetDelegate │ │ ├── canDragWidget.html │ │ ├── canWidget_expandOrShrinkToGridPositions.html │ │ ├── closeTapped.html │ │ ├── setDraggingWidget.html │ │ ├── settingsTapped.html │ │ ├── updatePageForExpandOrShrinkOfWidget_toGridPositions.html │ │ ├── widgetDragged_toPoint.html │ │ ├── widgetOptionsChanged.html │ │ └── widgetOriginForWidgetSize_withPreferredOrigin.html │ ├── HSWidgetResources.html │ ├── HSWidgetResources │ │ ├── HSWidgetBezierShape.html │ │ ├── HSWidgetBezierShape │ │ │ ├── HSWidgetBezierShapeCircle.html │ │ │ ├── HSWidgetBezierShapeDefault.html │ │ │ ├── HSWidgetBezierShapeRect.html │ │ │ ├── HSWidgetBezierShapeRoundedRect.html │ │ │ ├── HSWidgetBezierShapeStar.html │ │ │ └── HSWidgetBezierShapeTriangle.html │ │ ├── HSWidgetDomain.html │ │ ├── HSWidgetDomain │ │ │ ├── HSWidgetBezierShapeChangedNotification.html │ │ │ └── HSWidgetBezierShapeKey.html │ │ ├── HSWidgetExpandImageName.html │ │ ├── HSWidgetPlaceholderImageName.html │ │ ├── HSWidgetPlaceholderShapeImageName.html │ │ ├── HSWidgetSettingsImageName.html │ │ ├── HSWidgetShrinkImageName.html │ │ ├── allBezierShapes.html │ │ ├── allBezierShapes │ │ │ ├── HSWidgetBezierShapeDisplayNameKey.html │ │ │ └── HSWidgetBezierShapeEnumKey.html │ │ ├── bezierPathForRect_withShape_lineThickness.html │ │ └── imageNamed.html │ ├── HSWidgetUnclippedView.html │ ├── HSWidgetViewController.html │ └── HSWidgetViewController │ │ ├── AccessoryType.html │ │ ├── AccessoryType │ │ ├── AccessoryTypeExpand.html │ │ ├── AccessoryTypeNone.html │ │ ├── AccessoryTypeSettings.html │ │ └── AccessoryTypeShrink.html │ │ ├── HSWidgetAllWidgetsConfiguredNotification.html │ │ ├── HSWidgetAnimationDuration.html │ │ ├── HSWidgetAvailableSpaceDidChangeNotification.html │ │ ├── HSWidgetEditingStateChangedNotification.html │ │ ├── HSWidgetEditingStateChangedNotification │ │ └── HSWidgetEditingStateKey.html │ │ ├── HSWidgetQuickAnimationDuration.html │ │ ├── ZoomAnimationViewStyle.html │ │ ├── ZoomAnimationViewStyle │ │ ├── ZoomAnimationViewStyleCustom.html │ │ ├── ZoomAnimationViewStyleDefault.html │ │ └── ZoomAnimationViewStyleImageCopy.html │ │ ├── _delegate.html │ │ ├── _gridPositions.html │ │ ├── _setDelegate.html │ │ ├── accessoryTypeTapped.html │ │ ├── addNewWidgetAdditionalOptionsControllerClass.html │ │ ├── allowedInstancesPerPage.html │ │ ├── bundle.html │ │ ├── calculatedFrame.html │ │ ├── canAddWidgetForAvailableGridPositions.html │ │ ├── clearZoomAnimatingView.html │ │ ├── containsSpaceToExpandOrShrinkToGridPositions.html │ │ ├── containsSpaceToExpandOrShrinkToWidgetSize.html │ │ ├── cornerRadius.html │ │ ├── createOptionsFromController_withAvailableGridPosition.html │ │ ├── initForWidgetFrame_withOptions.html │ │ ├── isAccessoryTypeEnabled.html │ │ ├── isAvailable.html │ │ ├── minimumSize.html │ │ ├── options.html │ │ ├── preferencesOptionsControllerClass.html │ │ ├── requestedSize.html │ │ ├── setWidgetOptionValue_forKey.html │ │ ├── updateForExpandOrShrinkToGridPositions.html │ │ ├── updateForExpandOrShrinkToWidgetSize.html │ │ ├── viewStyleForZoomAnimaton.html │ │ ├── widgetDisplayInfo.html │ │ ├── widgetDisplayInfo │ │ ├── HSWidgetDisplayCreatorKey.html │ │ ├── HSWidgetDisplayIconKey.html │ │ └── HSWidgetDisplayNameKey.html │ │ ├── widgetFrame.html │ │ ├── widgetOptions.html │ │ ├── widgetSizeFromController_withAvailableGridPosition.html │ │ └── zoomAnimatingView.html └── index.html ├── editing ├── HSAddNewWidgetDelegate.h ├── HSAddNewWidgetPositionView.h ├── HSAddNewWidgetPositionView.mm ├── HSAddNewWidgetPositionViewDelegate.h ├── HSAddNewWidgetView.h ├── HSAddNewWidgetView.mm ├── HSAddWidgetRootViewController.h ├── HSAddWidgetRootViewController.mm ├── HSAddWidgetSelectionDelegate.h ├── HSWidgetBezierShapeDisclosureTableViewCell.h ├── HSWidgetBezierShapeDisclosureTableViewCell.mm ├── HSWidgetBezierShapeSelectorViewController.h ├── HSWidgetBezierShapeSelectorViewController.mm ├── HSWidgetBezierShapeTableViewCell.h ├── HSWidgetBezierShapeTableViewCell.mm ├── HSWidgetHeaderTableView.h ├── HSWidgetHeaderTableView.mm ├── HSWidgetSubtitleTableViewCell.h └── HSWidgetSubtitleTableViewCell.mm ├── hsccmodulewidget ├── CCSupportCompatibility.x ├── HSCCModuleController.h ├── HSCCModuleController.x ├── HSCCModuleWidgetViewController.h ├── HSCCModuleWidgetViewController.x ├── HSCCModulesListViewController.h ├── HSCCModulesListViewController.mm ├── HSCCModulesListViewController.x ├── HSCCNotifications.h ├── HSCCNotifications.x ├── Makefile ├── Resources │ ├── Info.plist │ ├── icon@2x.png │ └── icon@3x.png └── private_headers │ ├── CCSModuleMetadata.h │ ├── CCSModuleProviderManager.h │ ├── CCSModuleRepository.h │ ├── CCUIContentModule.h │ ├── CCUIContentModuleBackgroundView.h │ ├── CCUIContentModuleContainerView.h │ ├── CCUIContentModuleContainerViewController.h │ ├── CCUIContentModuleContainerViewControllerDelegate.h │ ├── CCUIContentModuleContext.h │ ├── CCUIContentModuleContextDelegate.h │ ├── CCUIContentModulePresentationContext.h │ ├── CCUILayoutOptions.h │ ├── CCUILayoutSize.h │ ├── CCUIModularControlCenterViewController.h │ ├── CCUIModuleCollectionViewController.h │ ├── CCUIModuleInstance.h │ ├── CCUIModuleInstanceManager.h │ ├── CCUIModuleSettings.h │ ├── CCUIModuleSettingsManager.h │ ├── CCUISettingsModuleDescription.h │ ├── CCUISettingsModulesController.h │ ├── SBCoverSheetPresentationManager.h │ ├── SBIconController.h │ ├── SpringBoard.h │ ├── UIViewController+bs.h │ └── UIViewController+ccui.h ├── hsclockwidget ├── HSClockWidgetPreferencesViewController.h ├── HSClockWidgetPreferencesViewController.mm ├── HSClockWidgetViewController.h ├── HSClockWidgetViewController.xm ├── Makefile ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── icon@2x.png │ └── icon@3x.png └── private_headers │ ├── LegibilitySettings.h │ ├── SBDateTimeController.h │ ├── SBDateTimeOverrideObserver.h │ ├── SBFLegibilityDomain.h │ ├── SBFLockScreenDateView.h │ ├── SBPreciseClockTimer.h │ ├── SBPrototypeController.h │ ├── SBRootSettings.h │ ├── SBUIPreciseClockTimer.h │ ├── _UILegibilitySettings.h │ └── _UISettingsKeyObserver.h ├── hsmodernweatherwidget ├── HSModernWeatherDailyForecastView.h ├── HSModernWeatherDailyForecastView.m ├── HSModernWeatherHourlyForecastView.h ├── HSModernWeatherHourlyForecastView.m ├── HSModernWeatherWidgetViewController.h ├── HSModernWeatherWidgetViewController.x ├── HSWeatherController.h ├── HSWeatherController.mm ├── HSWeatherControllerObserver.h ├── Makefile ├── Resources │ └── Info.plist └── private_headers │ ├── City.h │ ├── SpringBoard.h │ ├── UIImage+Private.h │ ├── WACurrentForecast.h │ ├── WADayForecast.h │ ├── WAForecastModel.h │ ├── WAHourlyForecast.h │ ├── WATodayModel.h │ ├── WATodayModelObserver.h │ ├── WFAQIScaleCategory.h │ ├── WFAirQualityConditions.h │ ├── WFLocation.h │ ├── WFTemperature.h │ ├── WFTemperatureFormatter.h │ ├── WFTemperatureUnitObserver.h │ ├── WUIDynamicWeatherBackground.h │ ├── WUIGradientLayer.h │ ├── WUIWeatherCondition.h │ ├── Weather-Externs.h │ ├── WeatherInternalPreferences.h │ └── WeatherPreferences.h ├── hsspacerwidget ├── HSSpacerWidgetViewController.h ├── HSSpacerWidgetViewController.mm ├── Makefile └── Resources │ ├── Info.plist │ ├── icon@2x.png │ └── icon@3x.png ├── hstodaywidget ├── HSTodayWidgetAdvancedPreferencesViewController.h ├── HSTodayWidgetAdvancedPreferencesViewController.mm ├── HSTodayWidgetController.h ├── HSTodayWidgetController.x ├── HSTodayWidgetRootPreferencesViewController.h ├── HSTodayWidgetRootPreferencesViewController.mm ├── HSTodayWidgetStepperCell.h ├── HSTodayWidgetStepperCell.mm ├── HSTodayWidgetViewController.h ├── HSTodayWidgetViewController.x ├── HSTodayWidgetsListViewController.h ├── HSTodayWidgetsListViewController.mm ├── Makefile ├── Resources │ ├── Advanced.plist │ ├── Info.plist │ ├── Root.plist │ ├── icon@2x.png │ └── icon@3x.png ├── SBIconListView.x ├── SBRootFolderController.x ├── SBUIIconForceTouchController.x └── private_headers │ ├── MTMaterialView.h │ ├── NSExtension.h │ ├── SBIconController.h │ ├── SBUIIconForceTouchController.h │ ├── SBWidgetController.h │ ├── SpringBoard.h │ ├── UIViewController+Widgets.h │ ├── WGMajorListViewContorller.h │ ├── WGWidgetDiscoveryController.h │ ├── WGWidgetDiscoveryObserving.h │ ├── WGWidgetExtensionVisibilityProviding.h │ ├── WGWidgetGroupViewController.h │ ├── WGWidgetHostingViewController.h │ ├── WGWidgetHostingViewControllerDelegate.h │ ├── WGWidgetHostingViewControllerHost.h │ ├── WGWidgetInfo.h │ ├── WGWidgetPlatterView.h │ └── WGWidgetShortLookView.h ├── layout └── Library │ └── HSWidgets │ ├── BatteryWidget.bundle │ ├── BatteryWidget │ ├── Info.plist │ ├── icon@2x.png │ └── icon@3x.png │ └── PhotosWidget.bundle │ ├── Info.plist │ ├── PhotosWidget │ ├── Root.plist │ ├── icon@2x.png │ └── icon@3x.png ├── private_headers ├── HSWidget-Availability.h ├── NSUserDefaults.h ├── SBFolder.h ├── SBIconController.h ├── SBIconCoordinate.h ├── SBIconListModel.h ├── SBIconListView.h ├── SBRootFolderController.h └── SpringBoard.h └── theos_template ├── HSWidgets.framework.zip ├── HSWidgets.framework ├── HSWidgets.tbd └── Headers │ ├── HSModernWidgetViewController.h │ ├── HSWidgetAddNewAdditionalOptionsDelegate.h │ ├── HSWidgetAdditionalOptions.h │ ├── HSWidgetAdditionalOptionsViewController.h │ ├── HSWidgetAvailablePositionObject.h │ ├── HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.h │ ├── HSWidgetDelegate.h │ ├── HSWidgetFrameObject.h │ ├── HSWidgetGridPositionConverterCache.h │ ├── HSWidgetPositionObject.h │ ├── HSWidgetPreferences.h │ ├── HSWidgetPreferencesListController.h │ ├── HSWidgetResources.h │ ├── HSWidgetSizeObject.h │ ├── HSWidgetUnclippedView.h │ ├── HSWidgetViewController.h │ ├── HSWidgets-core.h │ ├── HSWidgets-structs.h │ └── HSWidgets.h ├── create_tbd.sh ├── hscustomwidget ├── HSCustomWidgetPreferencesViewController.h ├── HSCustomWidgetPreferencesViewController.mm ├── HSCustomWidgetViewController.h ├── HSCustomWidgetViewController.mm ├── Makefile ├── Resources │ ├── Info.plist │ ├── Root.plist │ ├── icon@2x.png │ └── icon@3x.png └── control └── iphone_hswidget.nic.tar /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | -------------------------------------------------------------------------------- /AppearanceLifeCycle.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/AppearanceLifeCycle.xm -------------------------------------------------------------------------------- /Dragging.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Dragging.xm -------------------------------------------------------------------------------- /HSWidgetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/HSWidgetLoader.h -------------------------------------------------------------------------------- /HSWidgetLoader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/HSWidgetLoader.mm -------------------------------------------------------------------------------- /HSWidgetPageController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/HSWidgetPageController.h -------------------------------------------------------------------------------- /HSWidgetPageController.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/HSWidgetPageController.xm -------------------------------------------------------------------------------- /HSWidgetUnrotateableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/HSWidgetUnrotateableViewController.h -------------------------------------------------------------------------------- /HSWidgetUnrotateableViewController.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/HSWidgetUnrotateableViewController.xm -------------------------------------------------------------------------------- /HSWidgets.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/HSWidgets.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/README.md -------------------------------------------------------------------------------- /Resources/HSExpand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSExpand@2x.png -------------------------------------------------------------------------------- /Resources/HSExpand@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSExpand@3x.png -------------------------------------------------------------------------------- /Resources/HSPlaceholderShape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSPlaceholderShape@2x.png -------------------------------------------------------------------------------- /Resources/HSPlaceholderShape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSPlaceholderShape@3x.png -------------------------------------------------------------------------------- /Resources/HSSettings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSSettings@2x.png -------------------------------------------------------------------------------- /Resources/HSSettings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSSettings@3x.png -------------------------------------------------------------------------------- /Resources/HSShrink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSShrink@2x.png -------------------------------------------------------------------------------- /Resources/HSShrink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Resources/HSShrink@3x.png -------------------------------------------------------------------------------- /Rotation.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Rotation.xm -------------------------------------------------------------------------------- /SBAccessoryBoxViews.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/SBAccessoryBoxViews.xm -------------------------------------------------------------------------------- /SBIconListModel.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/SBIconListModel.xm -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/Tweak.xm -------------------------------------------------------------------------------- /ZoomAnimation.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/ZoomAnimation.xm -------------------------------------------------------------------------------- /api/HSModernWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSModernWidgetViewController.h -------------------------------------------------------------------------------- /api/HSModernWidgetViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSModernWidgetViewController.mm -------------------------------------------------------------------------------- /api/HSWidgetAddNewAdditionalOptionsDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetAddNewAdditionalOptionsDelegate.h -------------------------------------------------------------------------------- /api/HSWidgetAdditionalOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetAdditionalOptions.h -------------------------------------------------------------------------------- /api/HSWidgetAdditionalOptionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetAdditionalOptionsViewController.h -------------------------------------------------------------------------------- /api/HSWidgetAdditionalOptionsViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetAdditionalOptionsViewController.mm -------------------------------------------------------------------------------- /api/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.h -------------------------------------------------------------------------------- /api/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.mm -------------------------------------------------------------------------------- /api/HSWidgetDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetDelegate.h -------------------------------------------------------------------------------- /api/HSWidgetPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetPreferences.h -------------------------------------------------------------------------------- /api/HSWidgetPreferencesListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetPreferencesListController.h -------------------------------------------------------------------------------- /api/HSWidgetPreferencesListController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetPreferencesListController.mm -------------------------------------------------------------------------------- /api/HSWidgetResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetResources.h -------------------------------------------------------------------------------- /api/HSWidgetResources.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetResources.mm -------------------------------------------------------------------------------- /api/HSWidgetUnclippedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetUnclippedView.h -------------------------------------------------------------------------------- /api/HSWidgetUnclippedView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetUnclippedView.mm -------------------------------------------------------------------------------- /api/HSWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetViewController.h -------------------------------------------------------------------------------- /api/HSWidgetViewController.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgetViewController.xm -------------------------------------------------------------------------------- /api/HSWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/HSWidgets.h -------------------------------------------------------------------------------- /api/core/HSWidgetAvailablePositionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetAvailablePositionObject.h -------------------------------------------------------------------------------- /api/core/HSWidgetAvailablePositionObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetAvailablePositionObject.mm -------------------------------------------------------------------------------- /api/core/HSWidgetFrameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetFrameObject.h -------------------------------------------------------------------------------- /api/core/HSWidgetFrameObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetFrameObject.mm -------------------------------------------------------------------------------- /api/core/HSWidgetGridPositionConverterCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetGridPositionConverterCache.h -------------------------------------------------------------------------------- /api/core/HSWidgetGridPositionConverterCache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetGridPositionConverterCache.mm -------------------------------------------------------------------------------- /api/core/HSWidgetPositionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetPositionObject.h -------------------------------------------------------------------------------- /api/core/HSWidgetPositionObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetPositionObject.mm -------------------------------------------------------------------------------- /api/core/HSWidgetSizeObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetSizeObject.h -------------------------------------------------------------------------------- /api/core/HSWidgetSizeObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgetSizeObject.mm -------------------------------------------------------------------------------- /api/core/HSWidgets-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgets-core.h -------------------------------------------------------------------------------- /api/core/HSWidgets-structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/api/core/HSWidgets-structs.h -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/control -------------------------------------------------------------------------------- /docs/Core/HSWidgetAvailablePositionObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetAvailablePositionObject.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetAvailablePositionObject/containsIcon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetAvailablePositionObject/containsIcon.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetAvailablePositionObject/initwithavailablewidgetposition_containingicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetAvailablePositionObject/initwithavailablewidgetposition_containingicon.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetAvailablePositionObject/objectwithavailablewidgetposition_containingicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetAvailablePositionObject/objectwithavailablewidgetposition_containingicon.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetDirectionDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetDirectionDown.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetDirectionLeft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetDirectionLeft.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetDirectionNone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetDirectionNone.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetDirectionRight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetDirectionRight.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetDirectionUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetDirectionUp.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetPositionInDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetPositionInDirection.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetPositionIsAdjacent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetPositionIsAdjacent.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetDirection/HSWidgetReverseDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetDirection/HSWidgetReverseDirection.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame/HSWidgetFrameContainsPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame/HSWidgetFrameContainsPosition.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame/HSWidgetFrameEqualsFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame/HSWidgetFrameEqualsFrame.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame/HSWidgetFrameMake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame/HSWidgetFrameMake.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame/HSWidgetFrameMake_cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame/HSWidgetFrameMake_cpp.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame/HSWidgetFrameZero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame/HSWidgetFrameZero.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame/origin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame/origin.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrame/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrame/size.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrameObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrameObject.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrameObject/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrameObject/frame.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrameObject/initWithWidgetFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrameObject/initWithWidgetFrame.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrameObject/isEqualToWidgetFrameObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrameObject/isEqualToWidgetFrameObject.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrameObject/objectWithWidgetFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrameObject/objectWithWidgetFrame.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrameObject/origin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrameObject/origin.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetFrameObject/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetFrameObject/size.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetGridPositionConverterCache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetGridPositionConverterCache.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetGridPositionConverterCache/canFitWidgetOfSize_inGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetGridPositionConverterCache/canFitWidgetOfSize_inGridPositions.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetGridPositionConverterCache/canFitWidget_inGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetGridPositionConverterCache/canFitWidget_inGridPositions.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetGridPositionConverterCache/css/gridPositionsForWidgetFrame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetGridPositionConverterCache/css/gridPositionsForWidgetFrame.css -------------------------------------------------------------------------------- /docs/Core/HSWidgetGridPositionConverterCache/gridPositionsForWidgetFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetGridPositionConverterCache/gridPositionsForWidgetFrame.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetGridPositionConverterCache/originForWidgetOfSize_inGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetGridPositionConverterCache/originForWidgetOfSize_inGridPositions.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition/HSWidgetPositionAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition/HSWidgetPositionAdd.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition/HSWidgetPositionEqualsPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition/HSWidgetPositionEqualsPosition.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition/HSWidgetPositionIsValid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition/HSWidgetPositionIsValid.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition/HSWidgetPositionMake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition/HSWidgetPositionMake.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition/HSWidgetPositionZero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition/HSWidgetPositionZero.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition/col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition/col.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPosition/row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPosition/row.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPositionObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPositionObject.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPositionObject/col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPositionObject/col.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPositionObject/initWithWidgetPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPositionObject/initWithWidgetPosition.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPositionObject/isEqualToWidgetPositionObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPositionObject/isEqualToWidgetPositionObject.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPositionObject/objectWithWidgetPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPositionObject/objectWithWidgetPosition.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPositionObject/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPositionObject/position.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetPositionObject/row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetPositionObject/row.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize/HSWidgetSizeAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize/HSWidgetSizeAdd.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize/HSWidgetSizeEqualsSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize/HSWidgetSizeEqualsSize.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize/HSWidgetSizeMake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize/HSWidgetSizeMake.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize/HSWidgetSizeZero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize/HSWidgetSizeZero.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize/SpacesForWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize/SpacesForWidgetSize.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize/numCols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize/numCols.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSize/numRows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSize/numRows.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSizeObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSizeObject.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSizeObject/initWithWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSizeObject/initWithWidgetSize.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSizeObject/isEqualToWidgetSizeObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSizeObject/isEqualToWidgetSizeObject.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSizeObject/numCols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSizeObject/numCols.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSizeObject/numRows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSizeObject/numRows.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSizeObject/objectWithWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSizeObject/objectWithWidgetSize.html -------------------------------------------------------------------------------- /docs/Core/HSWidgetSizeObject/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/HSWidgetSizeObject/size.html -------------------------------------------------------------------------------- /docs/Core/css/HSWidgetDirection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/css/HSWidgetDirection.css -------------------------------------------------------------------------------- /docs/Core/css/HSWidgetFrame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Core/css/HSWidgetFrame.css -------------------------------------------------------------------------------- /docs/Getting_Started/AccessorySquareWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/AccessorySquareWidget.png -------------------------------------------------------------------------------- /docs/Getting_Started/Adding_Basic_Preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/Adding_Basic_Preferences.html -------------------------------------------------------------------------------- /docs/Getting_Started/Adding_Dynamic_Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/Adding_Dynamic_Size.html -------------------------------------------------------------------------------- /docs/Getting_Started/BuggyExpandedSquareWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/BuggyExpandedSquareWidget.png -------------------------------------------------------------------------------- /docs/Getting_Started/ExpandedSquareWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/ExpandedSquareWidget.png -------------------------------------------------------------------------------- /docs/Getting_Started/ExpandedWidgetColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/ExpandedWidgetColors.png -------------------------------------------------------------------------------- /docs/Getting_Started/PillRedSquareWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/PillRedSquareWidget.png -------------------------------------------------------------------------------- /docs/Getting_Started/RedSquareWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/RedSquareWidget.png -------------------------------------------------------------------------------- /docs/Getting_Started/RoundedRedSquareWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/RoundedRedSquareWidget.png -------------------------------------------------------------------------------- /docs/Getting_Started/Simple_Widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/Simple_Widget.html -------------------------------------------------------------------------------- /docs/Getting_Started/Theos_Environment_Setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/Theos_Environment_Setup.html -------------------------------------------------------------------------------- /docs/Getting_Started/WidgetAdditionalOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/WidgetAdditionalOptions.png -------------------------------------------------------------------------------- /docs/Getting_Started/WidgetSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/WidgetSettings.png -------------------------------------------------------------------------------- /docs/Getting_Started/WidgetSettingsAccessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Getting_Started/WidgetSettingsAccessory.png -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAddNewAdditionalOptionsDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAddNewAdditionalOptionsDelegate.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAddNewAdditionalOptionsDelegate/additionalOptionsViewController_addWidgetForClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAddNewAdditionalOptionsDelegate/additionalOptionsViewController_addWidgetForClass.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAddNewAdditionalOptionsDelegate/dismissAddWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAddNewAdditionalOptionsDelegate/dismissAddWidget.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptions/delegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptions/delegate.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptions/initWithWidgetsOptionsToExclude_withDelegate_availablePositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptions/initWithWidgetsOptionsToExclude_withDelegate_availablePositions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptions/requestWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptions/requestWidgetSize.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptions/widgetClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptions/widgetClass.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptions/widgetOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptions/widgetOptions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptionsViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptionsViewController.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptionsViewController/addWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptionsViewController/addWidget.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptionsViewController/availablePositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptionsViewController/availablePositions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptionsViewController/cancelAdditionalOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptionsViewController/cancelAdditionalOptions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptionsViewController/containsSpaceForGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptionsViewController/containsSpaceForGridPositions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetAdditionalOptionsViewController/containsSpaceForWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetAdditionalOptionsViewController/containsSpaceForWidgetSize.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/addWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/addWidget.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/cancelAdditionalOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/cancelAdditionalOptions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/containsSpaceForGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/containsSpaceForGridPositions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/containsSpaceForWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController/containsSpaceForWidgetSize.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferences.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferences/availablePositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferences/availablePositions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferences/initWithWidgetViewController_availablePositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferences/initWithWidgetViewController_availablePositions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferences/widgetViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferences/widgetViewController.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/containsSpaceForGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/containsSpaceForGridPositions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/containsSpaceForWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/containsSpaceForWidgetSize.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/readFileValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/readFileValue.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/readPreferenceValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/readPreferenceValue.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/readUserDefaultsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/readUserDefaultsValue.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/readWidgetOptionsValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/readWidgetOptionsValue.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/resetAllSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/resetAllSettings.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/resetFileValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/resetFileValues.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/resetUserDefaults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/resetUserDefaults.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/resetWidgetOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/resetWidgetOptions.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/setFileValue_specifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/setFileValue_specifier.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/setPreferenceValue_specifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/setPreferenceValue_specifier.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/setUserDefaultsValue_specifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/setUserDefaultsValue_specifier.html -------------------------------------------------------------------------------- /docs/Preferences/HSWidgetPreferencesListController/setWidgetOptionsValue_specifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/Preferences/HSWidgetPreferencesListController/setWidgetOptionsValue_specifier.html -------------------------------------------------------------------------------- /docs/User_Interface/HSModernWidgetViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSModernWidgetViewController.html -------------------------------------------------------------------------------- /docs/User_Interface/HSModernWidgetViewController/blurView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSModernWidgetViewController/blurView.html -------------------------------------------------------------------------------- /docs/User_Interface/HSModernWidgetViewController/contentView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSModernWidgetViewController/contentView.html -------------------------------------------------------------------------------- /docs/User_Interface/HSModernWidgetViewController/expandWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSModernWidgetViewController/expandWidget.html -------------------------------------------------------------------------------- /docs/User_Interface/HSModernWidgetViewController/shrinkWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSModernWidgetViewController/shrinkWidget.html -------------------------------------------------------------------------------- /docs/User_Interface/HSModernWidgetViewController/titleLabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSModernWidgetViewController/titleLabel.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/canDragWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/canDragWidget.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/canWidget_expandOrShrinkToGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/canWidget_expandOrShrinkToGridPositions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/closeTapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/closeTapped.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/setDraggingWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/setDraggingWidget.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/settingsTapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/settingsTapped.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/updatePageForExpandOrShrinkOfWidget_toGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/updatePageForExpandOrShrinkOfWidget_toGridPositions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/widgetDragged_toPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/widgetDragged_toPoint.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/widgetOptionsChanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/widgetOptionsChanged.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetDelegate/widgetOriginForWidgetSize_withPreferredOrigin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetDelegate/widgetOriginForWidgetSize_withPreferredOrigin.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetBezierShape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetBezierShape.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeCircle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeCircle.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeDefault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeDefault.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeRect.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeRoundedRect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeRoundedRect.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeStar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeStar.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeTriangle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetBezierShape/HSWidgetBezierShapeTriangle.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetDomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetDomain.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetDomain/HSWidgetBezierShapeChangedNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetDomain/HSWidgetBezierShapeChangedNotification.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetDomain/HSWidgetBezierShapeKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetDomain/HSWidgetBezierShapeKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetExpandImageName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetExpandImageName.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetPlaceholderImageName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetPlaceholderImageName.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetPlaceholderShapeImageName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetPlaceholderShapeImageName.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetSettingsImageName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetSettingsImageName.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/HSWidgetShrinkImageName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/HSWidgetShrinkImageName.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/allBezierShapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/allBezierShapes.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/allBezierShapes/HSWidgetBezierShapeDisplayNameKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/allBezierShapes/HSWidgetBezierShapeDisplayNameKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/allBezierShapes/HSWidgetBezierShapeEnumKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/allBezierShapes/HSWidgetBezierShapeEnumKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/bezierPathForRect_withShape_lineThickness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/bezierPathForRect_withShape_lineThickness.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetResources/imageNamed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetResources/imageNamed.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetUnclippedView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetUnclippedView.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/AccessoryType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/AccessoryType.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeExpand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeExpand.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeNone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeNone.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeSettings.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeShrink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/AccessoryType/AccessoryTypeShrink.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/HSWidgetAllWidgetsConfiguredNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/HSWidgetAllWidgetsConfiguredNotification.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/HSWidgetAnimationDuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/HSWidgetAnimationDuration.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/HSWidgetAvailableSpaceDidChangeNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/HSWidgetAvailableSpaceDidChangeNotification.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/HSWidgetEditingStateChangedNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/HSWidgetEditingStateChangedNotification.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/HSWidgetEditingStateChangedNotification/HSWidgetEditingStateKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/HSWidgetEditingStateChangedNotification/HSWidgetEditingStateKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/HSWidgetQuickAnimationDuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/HSWidgetQuickAnimationDuration.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle/ZoomAnimationViewStyleCustom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle/ZoomAnimationViewStyleCustom.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle/ZoomAnimationViewStyleDefault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle/ZoomAnimationViewStyleDefault.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle/ZoomAnimationViewStyleImageCopy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/ZoomAnimationViewStyle/ZoomAnimationViewStyleImageCopy.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/_delegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/_delegate.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/_gridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/_gridPositions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/_setDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/_setDelegate.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/accessoryTypeTapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/accessoryTypeTapped.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/addNewWidgetAdditionalOptionsControllerClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/addNewWidgetAdditionalOptionsControllerClass.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/allowedInstancesPerPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/allowedInstancesPerPage.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/bundle.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/calculatedFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/calculatedFrame.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/canAddWidgetForAvailableGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/canAddWidgetForAvailableGridPositions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/clearZoomAnimatingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/clearZoomAnimatingView.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/containsSpaceToExpandOrShrinkToGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/containsSpaceToExpandOrShrinkToGridPositions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/containsSpaceToExpandOrShrinkToWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/containsSpaceToExpandOrShrinkToWidgetSize.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/cornerRadius.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/cornerRadius.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/createOptionsFromController_withAvailableGridPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/createOptionsFromController_withAvailableGridPosition.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/initForWidgetFrame_withOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/initForWidgetFrame_withOptions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/isAccessoryTypeEnabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/isAccessoryTypeEnabled.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/isAvailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/isAvailable.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/minimumSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/minimumSize.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/options.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/preferencesOptionsControllerClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/preferencesOptionsControllerClass.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/requestedSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/requestedSize.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/setWidgetOptionValue_forKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/setWidgetOptionValue_forKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/updateForExpandOrShrinkToGridPositions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/updateForExpandOrShrinkToGridPositions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/updateForExpandOrShrinkToWidgetSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/updateForExpandOrShrinkToWidgetSize.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/viewStyleForZoomAnimaton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/viewStyleForZoomAnimaton.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/widgetDisplayInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/widgetDisplayInfo.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/widgetDisplayInfo/HSWidgetDisplayCreatorKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/widgetDisplayInfo/HSWidgetDisplayCreatorKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/widgetDisplayInfo/HSWidgetDisplayIconKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/widgetDisplayInfo/HSWidgetDisplayIconKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/widgetDisplayInfo/HSWidgetDisplayNameKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/widgetDisplayInfo/HSWidgetDisplayNameKey.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/widgetFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/widgetFrame.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/widgetOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/widgetOptions.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/widgetSizeFromController_withAvailableGridPosition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/widgetSizeFromController_withAvailableGridPosition.html -------------------------------------------------------------------------------- /docs/User_Interface/HSWidgetViewController/zoomAnimatingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/User_Interface/HSWidgetViewController/zoomAnimatingView.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/docs/index.html -------------------------------------------------------------------------------- /editing/HSAddNewWidgetDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddNewWidgetDelegate.h -------------------------------------------------------------------------------- /editing/HSAddNewWidgetPositionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddNewWidgetPositionView.h -------------------------------------------------------------------------------- /editing/HSAddNewWidgetPositionView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddNewWidgetPositionView.mm -------------------------------------------------------------------------------- /editing/HSAddNewWidgetPositionViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddNewWidgetPositionViewDelegate.h -------------------------------------------------------------------------------- /editing/HSAddNewWidgetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddNewWidgetView.h -------------------------------------------------------------------------------- /editing/HSAddNewWidgetView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddNewWidgetView.mm -------------------------------------------------------------------------------- /editing/HSAddWidgetRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddWidgetRootViewController.h -------------------------------------------------------------------------------- /editing/HSAddWidgetRootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddWidgetRootViewController.mm -------------------------------------------------------------------------------- /editing/HSAddWidgetSelectionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSAddWidgetSelectionDelegate.h -------------------------------------------------------------------------------- /editing/HSWidgetBezierShapeDisclosureTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetBezierShapeDisclosureTableViewCell.h -------------------------------------------------------------------------------- /editing/HSWidgetBezierShapeDisclosureTableViewCell.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetBezierShapeDisclosureTableViewCell.mm -------------------------------------------------------------------------------- /editing/HSWidgetBezierShapeSelectorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetBezierShapeSelectorViewController.h -------------------------------------------------------------------------------- /editing/HSWidgetBezierShapeSelectorViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetBezierShapeSelectorViewController.mm -------------------------------------------------------------------------------- /editing/HSWidgetBezierShapeTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetBezierShapeTableViewCell.h -------------------------------------------------------------------------------- /editing/HSWidgetBezierShapeTableViewCell.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetBezierShapeTableViewCell.mm -------------------------------------------------------------------------------- /editing/HSWidgetHeaderTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetHeaderTableView.h -------------------------------------------------------------------------------- /editing/HSWidgetHeaderTableView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetHeaderTableView.mm -------------------------------------------------------------------------------- /editing/HSWidgetSubtitleTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetSubtitleTableViewCell.h -------------------------------------------------------------------------------- /editing/HSWidgetSubtitleTableViewCell.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/editing/HSWidgetSubtitleTableViewCell.mm -------------------------------------------------------------------------------- /hsccmodulewidget/CCSupportCompatibility.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/CCSupportCompatibility.x -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCModuleController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCModuleController.h -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCModuleController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCModuleController.x -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCModuleWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCModuleWidgetViewController.h -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCModuleWidgetViewController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCModuleWidgetViewController.x -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCModulesListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCModulesListViewController.h -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCModulesListViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCModulesListViewController.mm -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCModulesListViewController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCModulesListViewController.x -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCNotifications.h -------------------------------------------------------------------------------- /hsccmodulewidget/HSCCNotifications.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/HSCCNotifications.x -------------------------------------------------------------------------------- /hsccmodulewidget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/Makefile -------------------------------------------------------------------------------- /hsccmodulewidget/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/Resources/Info.plist -------------------------------------------------------------------------------- /hsccmodulewidget/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/Resources/icon@2x.png -------------------------------------------------------------------------------- /hsccmodulewidget/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/Resources/icon@3x.png -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCSModuleMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCSModuleMetadata.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCSModuleProviderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCSModuleProviderManager.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCSModuleRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCSModuleRepository.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModule.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModuleBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModuleBackgroundView.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModuleContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModuleContainerView.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModuleContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModuleContainerViewController.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModuleContainerViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModuleContainerViewControllerDelegate.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModuleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModuleContext.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModuleContextDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModuleContextDelegate.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIContentModulePresentationContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIContentModulePresentationContext.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUILayoutOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUILayoutOptions.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUILayoutSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUILayoutSize.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIModularControlCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIModularControlCenterViewController.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIModuleCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIModuleCollectionViewController.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIModuleInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIModuleInstance.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIModuleInstanceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIModuleInstanceManager.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIModuleSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIModuleSettings.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUIModuleSettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUIModuleSettingsManager.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUISettingsModuleDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUISettingsModuleDescription.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/CCUISettingsModulesController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/CCUISettingsModulesController.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/SBCoverSheetPresentationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/SBCoverSheetPresentationManager.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/SBIconController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/SBIconController.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/SpringBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/SpringBoard.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/UIViewController+bs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/UIViewController+bs.h -------------------------------------------------------------------------------- /hsccmodulewidget/private_headers/UIViewController+ccui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsccmodulewidget/private_headers/UIViewController+ccui.h -------------------------------------------------------------------------------- /hsclockwidget/HSClockWidgetPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/HSClockWidgetPreferencesViewController.h -------------------------------------------------------------------------------- /hsclockwidget/HSClockWidgetPreferencesViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/HSClockWidgetPreferencesViewController.mm -------------------------------------------------------------------------------- /hsclockwidget/HSClockWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/HSClockWidgetViewController.h -------------------------------------------------------------------------------- /hsclockwidget/HSClockWidgetViewController.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/HSClockWidgetViewController.xm -------------------------------------------------------------------------------- /hsclockwidget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/Makefile -------------------------------------------------------------------------------- /hsclockwidget/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/Resources/Info.plist -------------------------------------------------------------------------------- /hsclockwidget/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/Resources/Root.plist -------------------------------------------------------------------------------- /hsclockwidget/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/Resources/icon@2x.png -------------------------------------------------------------------------------- /hsclockwidget/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/Resources/icon@3x.png -------------------------------------------------------------------------------- /hsclockwidget/private_headers/LegibilitySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/LegibilitySettings.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBDateTimeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBDateTimeController.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBDateTimeOverrideObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBDateTimeOverrideObserver.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBFLegibilityDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBFLegibilityDomain.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBFLockScreenDateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBFLockScreenDateView.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBPreciseClockTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBPreciseClockTimer.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBPrototypeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBPrototypeController.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBRootSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBRootSettings.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/SBUIPreciseClockTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/SBUIPreciseClockTimer.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/_UILegibilitySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/_UILegibilitySettings.h -------------------------------------------------------------------------------- /hsclockwidget/private_headers/_UISettingsKeyObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsclockwidget/private_headers/_UISettingsKeyObserver.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSModernWeatherDailyForecastView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSModernWeatherDailyForecastView.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSModernWeatherDailyForecastView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSModernWeatherDailyForecastView.m -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSModernWeatherHourlyForecastView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSModernWeatherHourlyForecastView.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSModernWeatherHourlyForecastView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSModernWeatherHourlyForecastView.m -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSModernWeatherWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSModernWeatherWidgetViewController.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSModernWeatherWidgetViewController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSModernWeatherWidgetViewController.x -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSWeatherController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSWeatherController.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSWeatherController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSWeatherController.mm -------------------------------------------------------------------------------- /hsmodernweatherwidget/HSWeatherControllerObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/HSWeatherControllerObserver.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/Makefile -------------------------------------------------------------------------------- /hsmodernweatherwidget/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/Resources/Info.plist -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/City.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/City.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/SpringBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/SpringBoard.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/UIImage+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/UIImage+Private.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WACurrentForecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WACurrentForecast.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WADayForecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WADayForecast.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WAForecastModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WAForecastModel.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WAHourlyForecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WAHourlyForecast.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WATodayModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WATodayModel.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WATodayModelObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WATodayModelObserver.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WFAQIScaleCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WFAQIScaleCategory.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WFAirQualityConditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WFAirQualityConditions.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WFLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WFLocation.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WFTemperature.h: -------------------------------------------------------------------------------- 1 | @interface WFTemperature : NSObject // iOS 10 - 13 2 | @end 3 | -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WFTemperatureFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WFTemperatureFormatter.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WFTemperatureUnitObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WFTemperatureUnitObserver.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WUIDynamicWeatherBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WUIDynamicWeatherBackground.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WUIGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WUIGradientLayer.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WUIWeatherCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WUIWeatherCondition.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/Weather-Externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/Weather-Externs.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WeatherInternalPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsmodernweatherwidget/private_headers/WeatherInternalPreferences.h -------------------------------------------------------------------------------- /hsmodernweatherwidget/private_headers/WeatherPreferences.h: -------------------------------------------------------------------------------- 1 | @interface WeatherPreferences : NSObject // iOS 5 - 13 2 | @end 3 | -------------------------------------------------------------------------------- /hsspacerwidget/HSSpacerWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsspacerwidget/HSSpacerWidgetViewController.h -------------------------------------------------------------------------------- /hsspacerwidget/HSSpacerWidgetViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsspacerwidget/HSSpacerWidgetViewController.mm -------------------------------------------------------------------------------- /hsspacerwidget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsspacerwidget/Makefile -------------------------------------------------------------------------------- /hsspacerwidget/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsspacerwidget/Resources/Info.plist -------------------------------------------------------------------------------- /hsspacerwidget/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsspacerwidget/Resources/icon@2x.png -------------------------------------------------------------------------------- /hsspacerwidget/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hsspacerwidget/Resources/icon@3x.png -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetAdvancedPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetAdvancedPreferencesViewController.h -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetAdvancedPreferencesViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetAdvancedPreferencesViewController.mm -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetController.h -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetController.x -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetRootPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetRootPreferencesViewController.h -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetRootPreferencesViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetRootPreferencesViewController.mm -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetStepperCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetStepperCell.h -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetStepperCell.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetStepperCell.mm -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetViewController.h -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetViewController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetViewController.x -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetsListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetsListViewController.h -------------------------------------------------------------------------------- /hstodaywidget/HSTodayWidgetsListViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/HSTodayWidgetsListViewController.mm -------------------------------------------------------------------------------- /hstodaywidget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/Makefile -------------------------------------------------------------------------------- /hstodaywidget/Resources/Advanced.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/Resources/Advanced.plist -------------------------------------------------------------------------------- /hstodaywidget/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/Resources/Info.plist -------------------------------------------------------------------------------- /hstodaywidget/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/Resources/Root.plist -------------------------------------------------------------------------------- /hstodaywidget/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/Resources/icon@2x.png -------------------------------------------------------------------------------- /hstodaywidget/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/Resources/icon@3x.png -------------------------------------------------------------------------------- /hstodaywidget/SBIconListView.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/SBIconListView.x -------------------------------------------------------------------------------- /hstodaywidget/SBRootFolderController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/SBRootFolderController.x -------------------------------------------------------------------------------- /hstodaywidget/SBUIIconForceTouchController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/SBUIIconForceTouchController.x -------------------------------------------------------------------------------- /hstodaywidget/private_headers/MTMaterialView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/MTMaterialView.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/NSExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/NSExtension.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/SBIconController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/SBIconController.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/SBUIIconForceTouchController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/SBUIIconForceTouchController.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/SBWidgetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/SBWidgetController.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/SpringBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/SpringBoard.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/UIViewController+Widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/UIViewController+Widgets.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGMajorListViewContorller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGMajorListViewContorller.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetDiscoveryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetDiscoveryController.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetDiscoveryObserving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetDiscoveryObserving.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetExtensionVisibilityProviding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetExtensionVisibilityProviding.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetGroupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetGroupViewController.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetHostingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetHostingViewController.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetHostingViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetHostingViewControllerDelegate.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetHostingViewControllerHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetHostingViewControllerHost.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetInfo.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetPlatterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetPlatterView.h -------------------------------------------------------------------------------- /hstodaywidget/private_headers/WGWidgetShortLookView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/hstodaywidget/private_headers/WGWidgetShortLookView.h -------------------------------------------------------------------------------- /layout/Library/HSWidgets/BatteryWidget.bundle/BatteryWidget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/BatteryWidget.bundle/BatteryWidget -------------------------------------------------------------------------------- /layout/Library/HSWidgets/BatteryWidget.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/BatteryWidget.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/HSWidgets/BatteryWidget.bundle/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/BatteryWidget.bundle/icon@2x.png -------------------------------------------------------------------------------- /layout/Library/HSWidgets/BatteryWidget.bundle/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/BatteryWidget.bundle/icon@3x.png -------------------------------------------------------------------------------- /layout/Library/HSWidgets/PhotosWidget.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/PhotosWidget.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/HSWidgets/PhotosWidget.bundle/PhotosWidget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/PhotosWidget.bundle/PhotosWidget -------------------------------------------------------------------------------- /layout/Library/HSWidgets/PhotosWidget.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/PhotosWidget.bundle/Root.plist -------------------------------------------------------------------------------- /layout/Library/HSWidgets/PhotosWidget.bundle/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/PhotosWidget.bundle/icon@2x.png -------------------------------------------------------------------------------- /layout/Library/HSWidgets/PhotosWidget.bundle/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/layout/Library/HSWidgets/PhotosWidget.bundle/icon@3x.png -------------------------------------------------------------------------------- /private_headers/HSWidget-Availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/HSWidget-Availability.h -------------------------------------------------------------------------------- /private_headers/NSUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/NSUserDefaults.h -------------------------------------------------------------------------------- /private_headers/SBFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/SBFolder.h -------------------------------------------------------------------------------- /private_headers/SBIconController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/SBIconController.h -------------------------------------------------------------------------------- /private_headers/SBIconCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/SBIconCoordinate.h -------------------------------------------------------------------------------- /private_headers/SBIconListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/SBIconListModel.h -------------------------------------------------------------------------------- /private_headers/SBIconListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/SBIconListView.h -------------------------------------------------------------------------------- /private_headers/SBRootFolderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/SBRootFolderController.h -------------------------------------------------------------------------------- /private_headers/SpringBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/private_headers/SpringBoard.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework.zip -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/HSWidgets.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/HSWidgets.tbd -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSModernWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSModernWidgetViewController.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetAddNewAdditionalOptionsDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetAddNewAdditionalOptionsDelegate.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetAdditionalOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetAdditionalOptions.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetAdditionalOptionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetAdditionalOptionsViewController.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetAvailablePositionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetAvailablePositionObject.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetCombinedAdditionalOptionsAndPreferencesViewController.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetDelegate.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetFrameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetFrameObject.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetGridPositionConverterCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetGridPositionConverterCache.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetPositionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetPositionObject.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetPreferences.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetPreferencesListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetPreferencesListController.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetResources.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetSizeObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetSizeObject.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetUnclippedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetUnclippedView.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgetViewController.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgets-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgets-core.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgets-structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgets-structs.h -------------------------------------------------------------------------------- /theos_template/HSWidgets.framework/Headers/HSWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/HSWidgets.framework/Headers/HSWidgets.h -------------------------------------------------------------------------------- /theos_template/create_tbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/create_tbd.sh -------------------------------------------------------------------------------- /theos_template/hscustomwidget/HSCustomWidgetPreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/HSCustomWidgetPreferencesViewController.h -------------------------------------------------------------------------------- /theos_template/hscustomwidget/HSCustomWidgetPreferencesViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/HSCustomWidgetPreferencesViewController.mm -------------------------------------------------------------------------------- /theos_template/hscustomwidget/HSCustomWidgetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/HSCustomWidgetViewController.h -------------------------------------------------------------------------------- /theos_template/hscustomwidget/HSCustomWidgetViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/HSCustomWidgetViewController.mm -------------------------------------------------------------------------------- /theos_template/hscustomwidget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/Makefile -------------------------------------------------------------------------------- /theos_template/hscustomwidget/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/Resources/Info.plist -------------------------------------------------------------------------------- /theos_template/hscustomwidget/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/Resources/Root.plist -------------------------------------------------------------------------------- /theos_template/hscustomwidget/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/Resources/icon@2x.png -------------------------------------------------------------------------------- /theos_template/hscustomwidget/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/Resources/icon@3x.png -------------------------------------------------------------------------------- /theos_template/hscustomwidget/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/hscustomwidget/control -------------------------------------------------------------------------------- /theos_template/iphone_hswidget.nic.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGh0st/HSWidgets/HEAD/theos_template/iphone_hswidget.nic.tar --------------------------------------------------------------------------------