├── .gitignore ├── .swiftlint.yml ├── Artwork ├── AppIcon.png ├── AppIcon.psd ├── Sources │ └── Tip_HomeScreen_Settings.psd └── _AppIcon-Old.png ├── DarockBrowser.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ ├── xcbaselines │ └── 8CA1E0BC2C13DD620092DFCA.xcbaseline │ │ ├── B9250054-C380-4252-A898-034E35E8ADE0.plist │ │ └── Info.plist │ └── xcschemes │ ├── Darock Browser Beta.xcscheme │ ├── Darock Browser.xcscheme │ ├── ProWidgetsExtension.xcscheme │ └── TripleQuestionmarkCore.xcscheme ├── DarockBrowser ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── 屏幕截图 2023-04-24 134459.png │ ├── AppIconImage.imageset │ │ ├── Contents.json │ │ └── 屏幕截图 2023-04-24 134459.png │ ├── Contents.json │ ├── DarockIntelligenceIcon.imageset │ │ ├── Contents.json │ │ └── Darock Intelligence.png │ └── movieclapper.badge.plus.symbolset │ │ ├── Contents.json │ │ └── custom.movieclapper.badge.plus.svg ├── CCodes │ ├── CoreHaptics │ │ ├── CHHapticDeviceCapability.h │ │ ├── CHHapticEngine.h │ │ ├── CHHapticErrors.h │ │ ├── CHHapticEvent.h │ │ ├── CHHapticParameter.h │ │ ├── CHHapticPattern.h │ │ ├── CHHapticPatternPlayer.h │ │ └── CoreHaptics.h │ ├── DarockBrowser-Bridging-Header.h │ ├── QuartzCore │ │ └── CAConstraintLayoutManager.h │ ├── SafariServices │ │ ├── SFAddToHomeScreenActivityItem.h │ │ ├── SFAuthenticationSession.h │ │ ├── SFContentBlockerManager.h │ │ ├── SFContentBlockerState.h │ │ ├── SFError.h │ │ ├── SFFoundation.h │ │ ├── SFSafariApplication.h │ │ ├── SFSafariViewController.h │ │ ├── SFSafariViewControllerActivityButton.h │ │ ├── SFSafariViewControllerConfiguration.h │ │ ├── SFSafariViewControllerDataStore.h │ │ ├── SFSafariViewControllerPrewarmingToken.h │ │ ├── SSReadingList.h │ │ └── SafariServices.h │ ├── WebExtension.h │ ├── WebExtension.m │ └── WebKit │ │ ├── NSAttributedString.h │ │ ├── WKBackForwardList.h │ │ ├── WKBackForwardListItem.h │ │ ├── WKContentRuleList.h │ │ ├── WKContentRuleListStore.h │ │ ├── WKContentWorld.h │ │ ├── WKContextMenuElementInfo.h │ │ ├── WKDataDetectorTypes.h │ │ ├── WKDownload.h │ │ ├── WKDownloadDelegate.h │ │ ├── WKFindConfiguration.h │ │ ├── WKFindResult.h │ │ ├── WKFoundation.h │ │ ├── WKFrameInfo.h │ │ ├── WKHTTPCookieStore.h │ │ ├── WKNavigation.h │ │ ├── WKNavigationAction.h │ │ ├── WKNavigationDelegate.h │ │ ├── WKNavigationResponse.h │ │ ├── WKOpenPanelParameters.h │ │ ├── WKPDFConfiguration.h │ │ ├── WKPreferences.h │ │ ├── WKPreviewActionItem.h │ │ ├── WKPreviewActionItemIdentifiers.h │ │ ├── WKProcessPool.h │ │ ├── WKScriptMessage.h │ │ ├── WKScriptMessageHandler.h │ │ ├── WKScriptMessageHandlerWithReply.h │ │ ├── WKSecurityOrigin.h │ │ ├── WKSnapshotConfiguration.h │ │ ├── WKUIDelegate.h │ │ ├── WKUserContentController.h │ │ ├── WKUserScript.h │ │ ├── WKWebView.h │ │ ├── WKWebViewConfiguration.h │ │ ├── WKWebpagePreferences.h │ │ ├── WKWebsiteDataRecord.h │ │ ├── WKWebsiteDataStore.h │ │ ├── WKWindowFeatures.h │ │ ├── WebKit.h │ │ └── WebKitLegacy.h ├── Chore │ ├── BetaJoinView.swift │ ├── CelebrationFireworksView.swift │ ├── ClusterAdView.swift │ ├── ExtKeyboardView.swift │ ├── JoinGroupView.swift │ ├── PrivacyAboutView.swift │ └── ProUnavailableView.swift ├── ContentView.swift ├── DarockBrowser-Info.plist ├── DarockBrowser.entitlements ├── DarockBrowserApp.swift ├── Extensions │ ├── AVPlayer+PeriodicTimePublisher.swift │ ├── BlurBackground.swift │ ├── CachedLocationManager.swift │ ├── DoubleTapActionButton.swift │ ├── General.swift │ ├── UserDefinedBackground.swift │ ├── View+BrightnessReducable.swift │ ├── View+CompatibleDoubleTapGesture.swift │ ├── View+CompatibleGlassEffects.swift │ ├── View+TouchZoomable.swift │ └── WKWebView+.swift ├── Guiding │ ├── ClusterTipView.swift │ ├── FeedbackView.swift │ ├── NetworkCheckView.swift │ ├── NewFeaturesView.swift │ ├── SuggestedResolvers.swift │ └── TipsView.swift ├── HYWenHei.ttf ├── Haptics │ ├── Failure.ahap │ ├── IntelligenceStart.ahap │ └── Success.ahap ├── Intents.intentdefinition ├── Localizable.xcstrings ├── Media │ ├── Audio │ │ ├── AudioControllerView.swift │ │ ├── AudioListView.swift │ │ ├── AudioVisualizerView.swift │ │ ├── LocalAudiosView.swift │ │ └── PlaylistsView.swift │ ├── Book │ │ ├── BookListView.swift │ │ ├── BookReaderView.swift │ │ ├── BookViewerView.swift │ │ └── LocalBooksView.swift │ ├── DownloadToExternalView.swift │ ├── Image │ │ ├── ImageGroupView.swift │ │ ├── ImageListView.swift │ │ ├── ImageViewerView.swift │ │ └── LocalImageView.swift │ ├── MediaDownloadView.swift │ └── Video │ │ ├── LocalVideosView.swift │ │ ├── VideoListView.swift │ │ └── VideoPlayingView.swift ├── Preferences │ ├── AppearenceManager.swift │ ├── DarockAccountsUI.swift │ ├── LaboratoryView.swift │ ├── NumberPadExt.swift │ ├── ProPurchaseView.swift │ └── Settings │ │ ├── ADBlocker.swift │ │ ├── BrowsingEngine.swift │ │ ├── BrowsingPreference.swift │ │ ├── DarockIntelligence.swift │ │ ├── DarockVision.swift │ │ ├── Developer.swift │ │ ├── Display.swift │ │ ├── General │ │ ├── About.swift │ │ ├── Continuity.swift │ │ ├── Downloader.swift │ │ ├── GeneralSettingsView.swift │ │ ├── ImageViewer.swift │ │ ├── Keyboard.swift │ │ ├── Legal.swift │ │ ├── MusicPlayer.swift │ │ ├── Reader.swift │ │ ├── Reset.swift │ │ └── SoftwareUpdate.swift │ │ ├── Gestures.swift │ │ ├── Internal.swift │ │ ├── Network.swift │ │ ├── Notifications.swift │ │ ├── Password.swift │ │ ├── Privacy.swift │ │ ├── Search │ │ ├── CustomSearchEngine.swift │ │ ├── SearchEngineShortcut.swift │ │ └── SearchSettingsView.swift │ │ ├── SettingsView.swift │ │ ├── Stared.swift │ │ └── Widget.swift ├── TabSupport │ ├── MediaMainView.swift │ ├── TabModels.swift │ └── TabsListView.swift ├── TopLevelDomainList.drkdatat ├── WebKit │ ├── AdvancedWebView.swift │ ├── BrowsingMenuView.swift │ ├── CheckWebContent.swift │ ├── SwiftWebView.swift │ ├── UIKitHelper.swift │ ├── WEBackSwift.swift │ ├── WebSummaryView.swift │ └── WebViewDelegate.swift └── WebRelated │ ├── BookmarkView.swift │ ├── HistoryView.swift │ ├── ShareView.swift │ └── WebArchiveListView.swift ├── DarockBrowserUnitTests └── DarockBrowserUnitTests.swift ├── DarockFrameworks ├── AppSettingsUI.xcframework │ ├── Info.plist │ ├── watchos-arm64_arm64_32 │ │ ├── AppSettingsUI.framework │ │ │ ├── AppSettingsUI │ │ │ ├── Headers │ │ │ │ └── AppSettingsUI.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── AppSettingsUI.swiftmodule │ │ │ │ │ ├── Project │ │ │ │ │ │ ├── arm64-apple-watchos.swiftsourceinfo │ │ │ │ │ │ └── arm64_32-apple-watchos.swiftsourceinfo │ │ │ │ │ ├── arm64-apple-watchos.abi.json │ │ │ │ │ ├── arm64-apple-watchos.private.swiftinterface │ │ │ │ │ ├── arm64-apple-watchos.swiftdoc │ │ │ │ │ ├── arm64-apple-watchos.swiftinterface │ │ │ │ │ ├── arm64_32-apple-watchos.abi.json │ │ │ │ │ ├── arm64_32-apple-watchos.private.swiftinterface │ │ │ │ │ ├── arm64_32-apple-watchos.swiftdoc │ │ │ │ │ └── arm64_32-apple-watchos.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── en.lproj │ │ │ │ └── Localizable.strings │ │ └── dSYMs │ │ │ └── AppSettingsUI.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── DWARF │ │ │ └── AppSettingsUI │ │ │ └── Relocations │ │ │ ├── aarch64 │ │ │ └── AppSettingsUI.yml │ │ │ └── aarch64_32 │ │ │ └── AppSettingsUI.yml │ └── watchos-arm64_x86_64-simulator │ │ ├── AppSettingsUI.framework │ │ ├── AppSettingsUI │ │ ├── Headers │ │ │ └── AppSettingsUI.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── AppSettingsUI.swiftmodule │ │ │ │ ├── Project │ │ │ │ │ ├── arm64-apple-watchos-simulator.swiftsourceinfo │ │ │ │ │ └── x86_64-apple-watchos-simulator.swiftsourceinfo │ │ │ │ ├── arm64-apple-watchos-simulator.abi.json │ │ │ │ ├── arm64-apple-watchos-simulator.private.swiftinterface │ │ │ │ ├── arm64-apple-watchos-simulator.swiftdoc │ │ │ │ ├── arm64-apple-watchos-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-watchos-simulator.abi.json │ │ │ │ ├── x86_64-apple-watchos-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-watchos-simulator.swiftdoc │ │ │ │ └── x86_64-apple-watchos-simulator.swiftinterface │ │ │ └── module.modulemap │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ └── en.lproj │ │ │ └── Localizable.strings │ │ └── dSYMs │ │ └── AppSettingsUI.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── DWARF │ │ └── AppSettingsUI │ │ └── Relocations │ │ ├── aarch64 │ │ └── AppSettingsUI.yml │ │ └── x86_64 │ │ └── AppSettingsUI.yml ├── StorageUI.xcframework │ ├── Info.plist │ ├── watchos-arm64_arm64_32 │ │ ├── StorageUI.framework │ │ │ ├── Headers │ │ │ │ └── StorageUI.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── StorageUI.swiftmodule │ │ │ │ │ ├── Project │ │ │ │ │ │ ├── arm64-apple-watchos.swiftsourceinfo │ │ │ │ │ │ └── arm64_32-apple-watchos.swiftsourceinfo │ │ │ │ │ ├── arm64-apple-watchos.abi.json │ │ │ │ │ ├── arm64-apple-watchos.private.swiftinterface │ │ │ │ │ ├── arm64-apple-watchos.swiftdoc │ │ │ │ │ ├── arm64-apple-watchos.swiftinterface │ │ │ │ │ ├── arm64_32-apple-watchos.abi.json │ │ │ │ │ ├── arm64_32-apple-watchos.private.swiftinterface │ │ │ │ │ ├── arm64_32-apple-watchos.swiftdoc │ │ │ │ │ └── arm64_32-apple-watchos.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── StorageUI │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── en.lproj │ │ │ │ └── Localizable.strings │ │ └── dSYMs │ │ │ └── StorageUI.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── DWARF │ │ │ └── StorageUI │ │ │ └── Relocations │ │ │ ├── aarch64 │ │ │ └── StorageUI.yml │ │ │ └── aarch64_32 │ │ │ └── StorageUI.yml │ └── watchos-arm64_x86_64-simulator │ │ ├── StorageUI.framework │ │ ├── Headers │ │ │ └── StorageUI.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── StorageUI.swiftmodule │ │ │ │ ├── Project │ │ │ │ │ ├── arm64-apple-watchos-simulator.swiftsourceinfo │ │ │ │ │ └── x86_64-apple-watchos-simulator.swiftsourceinfo │ │ │ │ ├── arm64-apple-watchos-simulator.abi.json │ │ │ │ ├── arm64-apple-watchos-simulator.private.swiftinterface │ │ │ │ ├── arm64-apple-watchos-simulator.swiftdoc │ │ │ │ ├── arm64-apple-watchos-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-watchos-simulator.abi.json │ │ │ │ ├── x86_64-apple-watchos-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-watchos-simulator.swiftdoc │ │ │ │ └── x86_64-apple-watchos-simulator.swiftinterface │ │ │ └── module.modulemap │ │ ├── StorageUI │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ └── en.lproj │ │ │ └── Localizable.strings │ │ └── dSYMs │ │ └── StorageUI.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── DWARF │ │ └── StorageUI │ │ └── Relocations │ │ ├── aarch64 │ │ └── StorageUI.yml │ │ └── x86_64 │ │ └── StorageUI.yml └── WitchWebUI │ ├── SafariServices.framework │ ├── Headers │ │ ├── SFAddToHomeScreenActivityItem.h │ │ ├── SFAuthenticationSession.h │ │ ├── SFContentBlockerManager.h │ │ ├── SFContentBlockerState.h │ │ ├── SFError.h │ │ ├── SFFoundation.h │ │ ├── SFSafariApplication.h │ │ ├── SFSafariViewController.h │ │ ├── SFSafariViewControllerActivityButton.h │ │ ├── SFSafariViewControllerConfiguration.h │ │ ├── SFSafariViewControllerDataStore.h │ │ ├── SFSafariViewControllerPrewarmingToken.h │ │ ├── SSReadingList.h │ │ ├── SafariServices.apinotes │ │ └── SafariServices.h │ ├── Modules │ │ ├── SafariServices.swiftmodule │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ ├── arm64e-apple-ios.swiftdoc │ │ │ └── arm64e-apple-ios.swiftinterface │ │ └── module.modulemap │ └── SafariServices.tbd │ └── WitchWebUI │ ├── BrowsingMenuView.swift │ ├── ObjC │ ├── Metal │ │ ├── MTLAccelerationStructure.h │ │ ├── MTLAccelerationStructureCommandEncoder.h │ │ ├── MTLAccelerationStructureTypes.h │ │ ├── MTLArgument.h │ │ ├── MTLArgumentEncoder.h │ │ ├── MTLBinaryArchive.h │ │ ├── MTLBlitCommandEncoder.h │ │ ├── MTLBlitPass.h │ │ ├── MTLBuffer.h │ │ ├── MTLCaptureManager.h │ │ ├── MTLCaptureScope.h │ │ ├── MTLCommandBuffer.h │ │ ├── MTLCommandEncoder.h │ │ ├── MTLCommandQueue.h │ │ ├── MTLComputeCommandEncoder.h │ │ ├── MTLComputePass.h │ │ ├── MTLComputePipeline.h │ │ ├── MTLCounters.h │ │ ├── MTLDefines.h │ │ ├── MTLDepthStencil.h │ │ ├── MTLDevice.h │ │ ├── MTLDrawable.h │ │ ├── MTLDynamicLibrary.h │ │ ├── MTLEvent.h │ │ ├── MTLFence.h │ │ ├── MTLFunctionConstantValues.h │ │ ├── MTLFunctionDescriptor.h │ │ ├── MTLFunctionHandle.h │ │ ├── MTLFunctionLog.h │ │ ├── MTLFunctionStitching.h │ │ ├── MTLHeap.h │ │ ├── MTLIOCommandBuffer.h │ │ ├── MTLIOCommandQueue.h │ │ ├── MTLIOCompressor.h │ │ ├── MTLIndirectCommandBuffer.h │ │ ├── MTLIndirectCommandEncoder.h │ │ ├── MTLIntersectionFunctionTable.h │ │ ├── MTLLibrary.h │ │ ├── MTLLinkedFunctions.h │ │ ├── MTLParallelRenderCommandEncoder.h │ │ ├── MTLPipeline.h │ │ ├── MTLPixelFormat.h │ │ ├── MTLRasterizationRate.h │ │ ├── MTLRenderCommandEncoder.h │ │ ├── MTLRenderPass.h │ │ ├── MTLRenderPipeline.h │ │ ├── MTLResource.h │ │ ├── MTLResourceStateCommandEncoder.h │ │ ├── MTLResourceStatePass.h │ │ ├── MTLSampler.h │ │ ├── MTLStageInputOutputDescriptor.h │ │ ├── MTLTexture.h │ │ ├── MTLTypes.h │ │ ├── MTLVertexDescriptor.h │ │ ├── MTLVisibleFunctionTable.h │ │ └── Metal.h │ ├── OpenGLES │ │ ├── EAGL.h │ │ ├── EAGLDrawable.h │ │ ├── EAGLIOSurface.h │ │ ├── ES1 │ │ │ ├── gl.h │ │ │ └── glext.h │ │ ├── ES2 │ │ │ ├── gl.h │ │ │ └── glext.h │ │ ├── ES3 │ │ │ ├── gl.h │ │ │ └── glext.h │ │ ├── OpenGLESAvailability.h │ │ └── gltypes.h │ ├── QuartzCore │ │ ├── CAAnimation.h │ │ ├── CABase.h │ │ ├── CADisplayLink.h │ │ ├── CAEAGLLayer.h │ │ ├── CAEDRMetadata.h │ │ ├── CAEmitterCell.h │ │ ├── CAEmitterLayer.h │ │ ├── CAFrameRateRange.h │ │ ├── CAGradientLayer.h │ │ ├── CALayer.h │ │ ├── CAMediaTiming.h │ │ ├── CAMediaTimingFunction.h │ │ ├── CAMetalDisplayLink.h │ │ ├── CAMetalLayer.h │ │ ├── CARenderer.h │ │ ├── CAReplicatorLayer.h │ │ ├── CAScrollLayer.h │ │ ├── CAShapeLayer.h │ │ ├── CATextLayer.h │ │ ├── CATiledLayer.h │ │ ├── CATransaction.h │ │ ├── CATransform3D.h │ │ ├── CATransformLayer.h │ │ ├── CAValueFunction.h │ │ ├── CoreAnimation.h │ │ └── QuartzCore.h │ ├── SafariServices │ │ ├── SFAddToHomeScreenActivityItem.h │ │ ├── SFAuthenticationSession.h │ │ ├── SFContentBlockerManager.h │ │ ├── SFContentBlockerState.h │ │ ├── SFError.h │ │ ├── SFFoundation.h │ │ ├── SFSafariApplication.h │ │ ├── SFSafariViewController.h │ │ ├── SFSafariViewControllerActivityButton.h │ │ ├── SFSafariViewControllerConfiguration.h │ │ ├── SFSafariViewControllerDataStore.h │ │ ├── SFSafariViewControllerPrewarmingToken.h │ │ ├── SSReadingList.h │ │ └── SafariServices.h │ ├── UIKit │ │ ├── DocumentManager.h │ │ ├── NSDataAsset.h │ │ ├── NSDiffableDataSourceSectionSnapshot.h │ │ ├── NSFileProviderExtension.h │ │ ├── NSIndexPath+UIKitAdditions.h │ │ ├── NSLayoutAnchor.h │ │ ├── NSLayoutConstraint.h │ │ ├── NSLayoutManager.h │ │ ├── NSTextContainer.h │ │ ├── NSTextContentManager.h │ │ ├── NSTextElement.h │ │ ├── NSTextLayoutFragment.h │ │ ├── NSTextLayoutManager.h │ │ ├── NSTextLineFragment.h │ │ ├── NSTextListElement.h │ │ ├── NSTextRange.h │ │ ├── NSTextSelection.h │ │ ├── NSTextSelectionNavigation.h │ │ ├── NSTextStorage.h │ │ ├── NSTextViewportLayoutController.h │ │ ├── NSToolbar+UIKitAdditions.h │ │ ├── NSTouchBar+UIKitAdditions.h │ │ ├── NSUserActivity+NSItemProvider.h │ │ ├── PrintKitUI.h │ │ ├── ShareSheet.h │ │ ├── UIAccelerometer.h │ │ ├── UIAccessibility.h │ │ ├── UIAccessibilityAdditions.h │ │ ├── UIAccessibilityContainer.h │ │ ├── UIAccessibilityContentSizeCategoryImageAdjusting.h │ │ ├── UIAccessibilityCustomAction.h │ │ ├── UIAccessibilityCustomRotor.h │ │ ├── UIAccessibilityElement.h │ │ ├── UIAccessibilityIdentification.h │ │ ├── UIAccessibilityLocationDescriptor.h │ │ ├── UIAccessibilityZoom.h │ │ ├── UIAction.h │ │ ├── UIActionSheet.h │ │ ├── UIActivity.h │ │ ├── UIActivityIndicatorView.h │ │ ├── UIActivityItemProvider.h │ │ ├── UIActivityItemsConfiguration.h │ │ ├── UIActivityItemsConfigurationReading.h │ │ ├── UIActivityViewController.h │ │ ├── UIAlert.h │ │ ├── UIAlertController.h │ │ ├── UIAlertView.h │ │ ├── UIAppearance.h │ │ ├── UIApplication.h │ │ ├── UIApplicationShortcutItem.h │ │ ├── UIAttachmentBehavior.h │ │ ├── UIBackgroundConfiguration.h │ │ ├── UIBandSelectionInteraction.h │ │ ├── UIBarAppearance.h │ │ ├── UIBarButtonItem.h │ │ ├── UIBarButtonItemAppearance.h │ │ ├── UIBarButtonItemGroup.h │ │ ├── UIBarCommon.h │ │ ├── UIBarItem.h │ │ ├── UIBehavioralStyle.h │ │ ├── UIBlurEffect.h │ │ ├── UIButton.h │ │ ├── UIButtonConfiguration.h │ │ ├── UICalendarSelection.h │ │ ├── UICalendarSelectionMultiDate.h │ │ ├── UICalendarSelectionSingleDate.h │ │ ├── UICalendarView.h │ │ ├── UICalendarViewDecoration.h │ │ ├── UICanvasFeedbackGenerator.h │ │ ├── UICellAccessory.h │ │ ├── UICellConfigurationState.h │ │ ├── UICloudSharingController.h │ │ ├── UICollectionLayoutList.h │ │ ├── UICollectionView.h │ │ ├── UICollectionViewCell.h │ │ ├── UICollectionViewCompositionalLayout.h │ │ ├── UICollectionViewController.h │ │ ├── UICollectionViewFlowLayout.h │ │ ├── UICollectionViewItemRegistration.h │ │ ├── UICollectionViewLayout.h │ │ ├── UICollectionViewListCell.h │ │ ├── UICollectionViewTransitionLayout.h │ │ ├── UICollectionViewUpdateItem.h │ │ ├── UICollisionBehavior.h │ │ ├── UIColorPickerViewController.h │ │ ├── UIColorWell.h │ │ ├── UICommand.h │ │ ├── UIConfigurationColorTransformer.h │ │ ├── UIConfigurationState.h │ │ ├── UIContentConfiguration.h │ │ ├── UIContentSizeCategory.h │ │ ├── UIContentSizeCategoryAdjusting.h │ │ ├── UIContentUnavailableButtonProperties.h │ │ ├── UIContentUnavailableConfiguration.h │ │ ├── UIContentUnavailableConfigurationState.h │ │ ├── UIContentUnavailableImageProperties.h │ │ ├── UIContentUnavailableTextProperties.h │ │ ├── UIContentUnavailableView.h │ │ ├── UIContextMenuConfiguration.h │ │ ├── UIContextMenuInteraction.h │ │ ├── UIContextualAction.h │ │ ├── UIControl.h │ │ ├── UIDataDetectors.h │ │ ├── UIDataSourceTranslating.h │ │ ├── UIDatePicker.h │ │ ├── UIDeferredMenuElement.h │ │ ├── UIDevice.h │ │ ├── UIDiffableDataSource.h │ │ ├── UIDocument.h │ │ ├── UIDocumentBrowserAction.h │ │ ├── UIDocumentBrowserViewController.h │ │ ├── UIDocumentInteractionController.h │ │ ├── UIDocumentMenuViewController.h │ │ ├── UIDocumentPickerExtensionViewController.h │ │ ├── UIDocumentPickerViewController.h │ │ ├── UIDocumentProperties.h │ │ ├── UIDocumentViewController.h │ │ ├── UIDragInteraction.h │ │ ├── UIDragItem.h │ │ ├── UIDragPreview.h │ │ ├── UIDragPreviewParameters.h │ │ ├── UIDragSession.h │ │ ├── UIDropInteraction.h │ │ ├── UIDynamicAnimator.h │ │ ├── UIDynamicBehavior.h │ │ ├── UIDynamicItemBehavior.h │ │ ├── UIEditMenuInteraction.h │ │ ├── UIEvent.h │ │ ├── UIEventAttribution.h │ │ ├── UIEventAttributionView.h │ │ ├── UIFeedbackGenerator.h │ │ ├── UIFieldBehavior.h │ │ ├── UIFindInteraction.h │ │ ├── UIFindSession.h │ │ ├── UIFocus.h │ │ ├── UIFocusAnimationCoordinator.h │ │ ├── UIFocusDebugger.h │ │ ├── UIFocusEffect.h │ │ ├── UIFocusGuide.h │ │ ├── UIFocusMovementHint.h │ │ ├── UIFocusSystem.h │ │ ├── UIFontPickerViewController.h │ │ ├── UIFontPickerViewControllerConfiguration.h │ │ ├── UIFoundation.h │ │ ├── UIGestureRecognizer.h │ │ ├── UIGestureRecognizerSubclass.h │ │ ├── UIGraphics.h │ │ ├── UIGraphicsImageRenderer.h │ │ ├── UIGraphicsPDFRenderer.h │ │ ├── UIGraphicsRenderer.h │ │ ├── UIGraphicsRendererSubclass.h │ │ ├── UIGravityBehavior.h │ │ ├── UIGuidedAccess.h │ │ ├── UIGuidedAccessRestrictions.h │ │ ├── UIHoverEffect.h │ │ ├── UIHoverEffectLayer.h │ │ ├── UIHoverGestureRecognizer.h │ │ ├── UIHoverStyle.h │ │ ├── UIImageAsset.h │ │ ├── UIImagePickerController.h │ │ ├── UIImageView.h │ │ ├── UIImpactFeedbackGenerator.h │ │ ├── UIIndirectScribbleInteraction.h │ │ ├── UIInputView.h │ │ ├── UIInputViewController.h │ │ ├── UIInteraction.h │ │ ├── UIInterface.h │ │ ├── UIKey.h │ │ ├── UIKeyCommand.h │ │ ├── UIKeyConstants.h │ │ ├── UIKeyboardLayoutGuide.h │ │ ├── UIKit.h │ │ ├── UIKitCore.h │ │ ├── UIKitDefines.h │ │ ├── UILabel.h │ │ ├── UILargeContentViewer.h │ │ ├── UILayoutGuide.h │ │ ├── UILetterformAwareAdjusting.h │ │ ├── UILexicon.h │ │ ├── UIListContentConfiguration.h │ │ ├── UIListContentImageProperties.h │ │ ├── UIListContentTextProperties.h │ │ ├── UIListSeparatorConfiguration.h │ │ ├── UILocalizedIndexedCollation.h │ │ ├── UILongPressGestureRecognizer.h │ │ ├── UIManagedDocument.h │ │ ├── UIMenu.h │ │ ├── UIMenuBuilder.h │ │ ├── UIMenuController.h │ │ ├── UIMenuDisplayPreferences.h │ │ ├── UIMenuElement.h │ │ ├── UIMenuLeaf.h │ │ ├── UIMenuSystem.h │ │ ├── UIMotionEffect.h │ │ ├── UINavigationBar.h │ │ ├── UINavigationBarAppearance.h │ │ ├── UINavigationController.h │ │ ├── UINavigationItem.h │ │ ├── UINib.h │ │ ├── UINibDeclarations.h │ │ ├── UINibLoading.h │ │ ├── UINotificationFeedbackGenerator.h │ │ ├── UIOpenURLContext.h │ │ ├── UIOrientation.h │ │ ├── UIPageControl.h │ │ ├── UIPageControlProgress.h │ │ ├── UIPageViewController.h │ │ ├── UIPanGestureRecognizer.h │ │ ├── UIPasteConfiguration.h │ │ ├── UIPasteConfigurationSupporting.h │ │ ├── UIPasteControl.h │ │ ├── UIPasteboard.h │ │ ├── UIPencilInteraction.h │ │ ├── UIPickerView.h │ │ ├── UIPinchGestureRecognizer.h │ │ ├── UIPointerAccessory.h │ │ ├── UIPointerInteraction.h │ │ ├── UIPointerLockState.h │ │ ├── UIPointerRegion.h │ │ ├── UIPointerStyle.h │ │ ├── UIPopoverBackgroundView.h │ │ ├── UIPopoverController.h │ │ ├── UIPopoverPresentationController.h │ │ ├── UIPopoverPresentationControllerSourceItem.h │ │ ├── UIPopoverSupport.h │ │ ├── UIPresentationController.h │ │ ├── UIPress.h │ │ ├── UIPressesEvent.h │ │ ├── UIPreviewInteraction.h │ │ ├── UIPreviewParameters.h │ │ ├── UIPrintError.h │ │ ├── UIPrintFormatter.h │ │ ├── UIPrintInfo.h │ │ ├── UIPrintInteractionController.h │ │ ├── UIPrintPageRenderer.h │ │ ├── UIPrintPaper.h │ │ ├── UIPrintServiceExtension.h │ │ ├── UIPrinter.h │ │ ├── UIPrinterPickerController.h │ │ ├── UIProgressView.h │ │ ├── UIPushBehavior.h │ │ ├── UIReferenceLibraryViewController.h │ │ ├── UIRefreshControl.h │ │ ├── UIRegion.h │ │ ├── UIResponder+UIActivityItemsConfiguration.h │ │ ├── UIResponder.h │ │ ├── UIRotationGestureRecognizer.h │ │ ├── UIScene+AVAudioSession.h │ │ ├── UIScene.h │ │ ├── UISceneActivationConditions.h │ │ ├── UISceneDefinitions.h │ │ ├── UISceneEnhancedStateRestoration.h │ │ ├── UISceneOptions.h │ │ ├── UISceneSession.h │ │ ├── UISceneSessionActivationRequest.h │ │ ├── UISceneWindowingBehaviors.h │ │ ├── UIScreen.h │ │ ├── UIScreenEdgePanGestureRecognizer.h │ │ ├── UIScreenMode.h │ │ ├── UIScreenshotService.h │ │ ├── UIScribbleInteraction.h │ │ ├── UIScrollView.h │ │ ├── UISearchBar.h │ │ ├── UISearchContainerViewController.h │ │ ├── UISearchController.h │ │ ├── UISearchDisplayController.h │ │ ├── UISearchSuggestion.h │ │ ├── UISearchTextField.h │ │ ├── UISegmentedControl.h │ │ ├── UISelectionFeedbackGenerator.h │ │ ├── UIShape.h │ │ ├── UISheetPresentationController.h │ │ ├── UISlider.h │ │ ├── UISnapBehavior.h │ │ ├── UISplitViewController.h │ │ ├── UISpringLoadedInteraction.h │ │ ├── UISpringLoadedInteractionSupporting.h │ │ ├── UIStackView.h │ │ ├── UIStandardTextCursorView.h │ │ ├── UIStateRestoration.h │ │ ├── UIStatusBarManager.h │ │ ├── UIStepper.h │ │ ├── UIStoryboard.h │ │ ├── UIStoryboardPopoverSegue.h │ │ ├── UIStoryboardSegue.h │ │ ├── UIStringDrawing.h │ │ ├── UISwipeActionsConfiguration.h │ │ ├── UISwipeGestureRecognizer.h │ │ ├── UISwitch.h │ │ ├── UISymbolEffectCompletion.h │ │ ├── UITabBar.h │ │ ├── UITabBarAppearance.h │ │ ├── UITabBarController.h │ │ ├── UITabBarItem.h │ │ ├── UITableView.h │ │ ├── UITableViewCell.h │ │ ├── UITableViewController.h │ │ ├── UITableViewHeaderFooterView.h │ │ ├── UITapGestureRecognizer.h │ │ ├── UITargetedDragPreview.h │ │ ├── UITargetedPreview.h │ │ ├── UITextChecker.h │ │ ├── UITextCursorDropPositionAnimator.h │ │ ├── UITextCursorView.h │ │ ├── UITextDragPreviewRenderer.h │ │ ├── UITextDragURLPreviews.h │ │ ├── UITextDragging.h │ │ ├── UITextDropProposal.h │ │ ├── UITextDropping.h │ │ ├── UITextField.h │ │ ├── UITextFormattingCoordinator.h │ │ ├── UITextInput.h │ │ ├── UITextInputContext.h │ │ ├── UITextInputTraits.h │ │ ├── UITextInteraction.h │ │ ├── UITextItem.h │ │ ├── UITextItemInteraction.h │ │ ├── UITextLoupeSession.h │ │ ├── UITextPasteConfigurationSupporting.h │ │ ├── UITextPasteDelegate.h │ │ ├── UITextSearching.h │ │ ├── UITextSelectionDisplayInteraction.h │ │ ├── UITextSelectionHandleView.h │ │ ├── UITextSelectionHighlightView.h │ │ ├── UITextView.h │ │ ├── UITimingCurveProvider.h │ │ ├── UITimingParameters.h │ │ ├── UIToolTipInteraction.h │ │ ├── UIToolbar.h │ │ ├── UIToolbarAppearance.h │ │ ├── UITouch.h │ │ ├── UITrackingLayoutGuide.h │ │ ├── UITrait.h │ │ ├── UITraitCollection.h │ │ ├── UIUserActivity.h │ │ ├── UIUserNotificationSettings.h │ │ ├── UIVibrancyEffect.h │ │ ├── UIVideoEditorController.h │ │ ├── UIView.h │ │ ├── UIViewAnimating.h │ │ ├── UIViewConfigurationState.h │ │ ├── UIViewController.h │ │ ├── UIViewControllerTransitionCoordinator.h │ │ ├── UIViewControllerTransitioning.h │ │ ├── UIViewPropertyAnimator.h │ │ ├── UIVisualEffect.h │ │ ├── UIVisualEffectView.h │ │ ├── UIWebView.h │ │ ├── UIWindow.h │ │ ├── UIWindowScene.h │ │ ├── UIWindowSceneActivationAction.h │ │ ├── UIWindowSceneActivationConfiguration.h │ │ ├── UIWindowSceneActivationInteraction.h │ │ ├── UIWindowSceneActivationRequestOptions.h │ │ ├── UIWindowSceneDragInteraction.h │ │ ├── UIWindowSceneGeometry.h │ │ ├── UIWindowSceneGeometryPreferences.h │ │ ├── UIWindowSceneGeometryPreferencesIOS.h │ │ ├── UIWindowSceneGeometryPreferencesMac.h │ │ ├── UIWindowSceneGeometryPreferencesVision.h │ │ ├── UIWindowScenePlacement.h │ │ ├── UIWindowSceneProminentPlacement.h │ │ ├── UIWindowSceneStandardPlacement.h │ │ └── UNNotificationResponse+UIKitAdditions.h │ ├── WebKit │ │ ├── NSAttributedString.h │ │ ├── WKBackForwardList.h │ │ ├── WKBackForwardListItem.h │ │ ├── WKContentRuleList.h │ │ ├── WKContentRuleListStore.h │ │ ├── WKContentWorld.h │ │ ├── WKContextMenuElementInfo.h │ │ ├── WKDataDetectorTypes.h │ │ ├── WKDownload.h │ │ ├── WKDownloadDelegate.h │ │ ├── WKError.h │ │ ├── WKFindConfiguration.h │ │ ├── WKFindResult.h │ │ ├── WKFoundation.h │ │ ├── WKFrameInfo.h │ │ ├── WKHTTPCookieStore.h │ │ ├── WKNavigation.h │ │ ├── WKNavigationAction.h │ │ ├── WKNavigationDelegate.h │ │ ├── WKNavigationResponse.h │ │ ├── WKOpenPanelParameters.h │ │ ├── WKPDFConfiguration.h │ │ ├── WKPreferences.h │ │ ├── WKPreviewActionItem.h │ │ ├── WKPreviewActionItemIdentifiers.h │ │ ├── WKPreviewElementInfo.h │ │ ├── WKProcessPool.h │ │ ├── WKScriptMessage.h │ │ ├── WKScriptMessageHandler.h │ │ ├── WKScriptMessageHandlerWithReply.h │ │ ├── WKSecurityOrigin.h │ │ ├── WKSnapshotConfiguration.h │ │ ├── WKUIDelegate.h │ │ ├── WKURLSchemeHandler.h │ │ ├── WKURLSchemeTask.h │ │ ├── WKUserContentController.h │ │ ├── WKUserScript.h │ │ ├── WKWebView.h │ │ ├── WKWebViewConfiguration.h │ │ ├── WKWebpagePreferences.h │ │ ├── WKWebsiteDataRecord.h │ │ ├── WKWebsiteDataStore.h │ │ ├── WKWindowFeatures.h │ │ ├── WebKit.h │ │ └── WebKitLegacy.h │ └── WitchWebUI-Bridging-Header.h │ ├── SwiftWebView.swift │ ├── UIKitHelper.swift │ └── WWUIWebController.swift ├── LICENSE ├── Localization ├── Localizable.xcstrings ├── en.lproj │ └── InfoPlist.strings ├── ja.lproj │ └── InfoPlist.strings ├── zh-Hans.lproj │ └── InfoPlist.strings └── zh-Hant.lproj │ └── InfoPlist.strings ├── ProWidgets ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon.png │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json ├── Bookmark.swift ├── Extensions.swift ├── Info.plist ├── ProWidgets.swift ├── ProWidgetsExtension.entitlements └── Search.swift ├── README.md ├── SafariServices.framework ├── Headers │ ├── SFAddToHomeScreenActivityItem.h │ ├── SFAuthenticationSession.h │ ├── SFContentBlockerManager.h │ ├── SFContentBlockerState.h │ ├── SFError.h │ ├── SFFoundation.h │ ├── SFSafariApplication.h │ ├── SFSafariViewController.h │ ├── SFSafariViewControllerActivityButton.h │ ├── SFSafariViewControllerConfiguration.h │ ├── SFSafariViewControllerDataStore.h │ ├── SFSafariViewControllerPrewarmingToken.h │ ├── SSReadingList.h │ ├── SafariServices.apinotes │ └── SafariServices.h ├── Modules │ ├── SafariServices.swiftmodule │ │ ├── arm64-apple-ios.swiftdoc │ │ ├── arm64-apple-ios.swiftinterface │ │ ├── arm64e-apple-ios.swiftdoc │ │ └── arm64e-apple-ios.swiftinterface │ └── module.modulemap └── SafariServices.tbd ├── Scripts ├── JSScripts.plist └── Source_DoNotEmbed │ ├── ADBlock.js │ └── ForceDarkMode.js ├── SharedCode ├── Intents.swift └── Models.swift ├── TripleQuestionmarkCore ├── Extensions.swift ├── Localizable.xcstrings ├── TQCViews.swift ├── TripleQuestionmarkCore.h ├── ___0721NeneChan.drkdatau ├── ___KawaiiChieriChan.drkdatau ├── ___MesugakiAmane.drkdatau └── ___YoutouMurasameChan.drkdatau └── ci_scripts ├── ci_post_xcodebuild.sh └── ci_pre_xcodebuild.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Artwork/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Artwork/AppIcon.png -------------------------------------------------------------------------------- /Artwork/AppIcon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Artwork/AppIcon.psd -------------------------------------------------------------------------------- /Artwork/Sources/Tip_HomeScreen_Settings.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Artwork/Sources/Tip_HomeScreen_Settings.psd -------------------------------------------------------------------------------- /Artwork/_AppIcon-Old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Artwork/_AppIcon-Old.png -------------------------------------------------------------------------------- /DarockBrowser.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DarockBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DarockBrowser.xcodeproj/xcshareddata/xcschemes/Darock Browser Beta.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser.xcodeproj/xcshareddata/xcschemes/Darock Browser Beta.xcscheme -------------------------------------------------------------------------------- /DarockBrowser.xcodeproj/xcshareddata/xcschemes/Darock Browser.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser.xcodeproj/xcshareddata/xcschemes/Darock Browser.xcscheme -------------------------------------------------------------------------------- /DarockBrowser.xcodeproj/xcshareddata/xcschemes/ProWidgetsExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser.xcodeproj/xcshareddata/xcschemes/ProWidgetsExtension.xcscheme -------------------------------------------------------------------------------- /DarockBrowser.xcodeproj/xcshareddata/xcschemes/TripleQuestionmarkCore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser.xcodeproj/xcshareddata/xcschemes/TripleQuestionmarkCore.xcscheme -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/AppIcon.appiconset/屏幕截图 2023-04-24 134459.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/AppIcon.appiconset/屏幕截图 2023-04-24 134459.png -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/AppIconImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/AppIconImage.imageset/Contents.json -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/AppIconImage.imageset/屏幕截图 2023-04-24 134459.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/AppIconImage.imageset/屏幕截图 2023-04-24 134459.png -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/DarockIntelligenceIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/DarockIntelligenceIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DarockBrowser/Assets.xcassets/movieclapper.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Assets.xcassets/movieclapper.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CHHapticDeviceCapability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CHHapticDeviceCapability.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CHHapticEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CHHapticEngine.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CHHapticErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CHHapticErrors.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CHHapticEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CHHapticEvent.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CHHapticParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CHHapticParameter.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CHHapticPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CHHapticPattern.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CHHapticPatternPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CHHapticPatternPlayer.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/CoreHaptics/CoreHaptics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/CoreHaptics/CoreHaptics.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/DarockBrowser-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/DarockBrowser-Bridging-Header.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/QuartzCore/CAConstraintLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/QuartzCore/CAConstraintLayoutManager.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFAddToHomeScreenActivityItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFAddToHomeScreenActivityItem.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFAuthenticationSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFAuthenticationSession.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFContentBlockerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFContentBlockerManager.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFContentBlockerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFContentBlockerState.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFError.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFFoundation.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFSafariApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFSafariApplication.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFSafariViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFSafariViewController.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFSafariViewControllerActivityButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFSafariViewControllerActivityButton.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFSafariViewControllerConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFSafariViewControllerConfiguration.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFSafariViewControllerDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFSafariViewControllerDataStore.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SFSafariViewControllerPrewarmingToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SFSafariViewControllerPrewarmingToken.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SSReadingList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SSReadingList.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/SafariServices/SafariServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/SafariServices/SafariServices.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebExtension.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebExtension.m -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/NSAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/NSAttributedString.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKBackForwardList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKBackForwardList.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKBackForwardListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKBackForwardListItem.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKContentRuleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKContentRuleList.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKContentRuleListStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKContentRuleListStore.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKContentWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKContentWorld.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKContextMenuElementInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKContextMenuElementInfo.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKDataDetectorTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKDataDetectorTypes.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKDownload.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKDownloadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKDownloadDelegate.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKFindConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKFindConfiguration.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKFindResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKFindResult.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKFoundation.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKFrameInfo.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKHTTPCookieStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKHTTPCookieStore.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKNavigation.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKNavigationAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKNavigationAction.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKNavigationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKNavigationDelegate.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKNavigationResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKNavigationResponse.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKOpenPanelParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKOpenPanelParameters.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKPDFConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKPDFConfiguration.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKPreferences.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKPreviewActionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKPreviewActionItem.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKPreviewActionItemIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKPreviewActionItemIdentifiers.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKProcessPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKProcessPool.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKScriptMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKScriptMessage.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKScriptMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKScriptMessageHandler.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKScriptMessageHandlerWithReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKScriptMessageHandlerWithReply.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKSecurityOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKSecurityOrigin.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKSnapshotConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKSnapshotConfiguration.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKUIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKUIDelegate.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKUserContentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKUserContentController.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKUserScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKUserScript.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKWebView.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKWebViewConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKWebViewConfiguration.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKWebpagePreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKWebpagePreferences.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKWebsiteDataRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKWebsiteDataRecord.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKWebsiteDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKWebsiteDataStore.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WKWindowFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WKWindowFeatures.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WebKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WebKit.h -------------------------------------------------------------------------------- /DarockBrowser/CCodes/WebKit/WebKitLegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/CCodes/WebKit/WebKitLegacy.h -------------------------------------------------------------------------------- /DarockBrowser/Chore/BetaJoinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Chore/BetaJoinView.swift -------------------------------------------------------------------------------- /DarockBrowser/Chore/CelebrationFireworksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Chore/CelebrationFireworksView.swift -------------------------------------------------------------------------------- /DarockBrowser/Chore/ClusterAdView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Chore/ClusterAdView.swift -------------------------------------------------------------------------------- /DarockBrowser/Chore/ExtKeyboardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Chore/ExtKeyboardView.swift -------------------------------------------------------------------------------- /DarockBrowser/Chore/JoinGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Chore/JoinGroupView.swift -------------------------------------------------------------------------------- /DarockBrowser/Chore/PrivacyAboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Chore/PrivacyAboutView.swift -------------------------------------------------------------------------------- /DarockBrowser/Chore/ProUnavailableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Chore/ProUnavailableView.swift -------------------------------------------------------------------------------- /DarockBrowser/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/ContentView.swift -------------------------------------------------------------------------------- /DarockBrowser/DarockBrowser-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/DarockBrowser-Info.plist -------------------------------------------------------------------------------- /DarockBrowser/DarockBrowser.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/DarockBrowser.entitlements -------------------------------------------------------------------------------- /DarockBrowser/DarockBrowserApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/DarockBrowserApp.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/AVPlayer+PeriodicTimePublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/AVPlayer+PeriodicTimePublisher.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/BlurBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/BlurBackground.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/CachedLocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/CachedLocationManager.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/DoubleTapActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/DoubleTapActionButton.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/General.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/General.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/UserDefinedBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/UserDefinedBackground.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/View+BrightnessReducable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/View+BrightnessReducable.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/View+CompatibleDoubleTapGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/View+CompatibleDoubleTapGesture.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/View+CompatibleGlassEffects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/View+CompatibleGlassEffects.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/View+TouchZoomable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/View+TouchZoomable.swift -------------------------------------------------------------------------------- /DarockBrowser/Extensions/WKWebView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Extensions/WKWebView+.swift -------------------------------------------------------------------------------- /DarockBrowser/Guiding/ClusterTipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Guiding/ClusterTipView.swift -------------------------------------------------------------------------------- /DarockBrowser/Guiding/FeedbackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Guiding/FeedbackView.swift -------------------------------------------------------------------------------- /DarockBrowser/Guiding/NetworkCheckView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Guiding/NetworkCheckView.swift -------------------------------------------------------------------------------- /DarockBrowser/Guiding/NewFeaturesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Guiding/NewFeaturesView.swift -------------------------------------------------------------------------------- /DarockBrowser/Guiding/SuggestedResolvers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Guiding/SuggestedResolvers.swift -------------------------------------------------------------------------------- /DarockBrowser/Guiding/TipsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Guiding/TipsView.swift -------------------------------------------------------------------------------- /DarockBrowser/HYWenHei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/HYWenHei.ttf -------------------------------------------------------------------------------- /DarockBrowser/Haptics/Failure.ahap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Haptics/Failure.ahap -------------------------------------------------------------------------------- /DarockBrowser/Haptics/IntelligenceStart.ahap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Haptics/IntelligenceStart.ahap -------------------------------------------------------------------------------- /DarockBrowser/Haptics/Success.ahap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Haptics/Success.ahap -------------------------------------------------------------------------------- /DarockBrowser/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Intents.intentdefinition -------------------------------------------------------------------------------- /DarockBrowser/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Localizable.xcstrings -------------------------------------------------------------------------------- /DarockBrowser/Media/Audio/AudioControllerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Audio/AudioControllerView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Audio/AudioListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Audio/AudioListView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Audio/AudioVisualizerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Audio/AudioVisualizerView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Audio/LocalAudiosView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Audio/LocalAudiosView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Audio/PlaylistsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Audio/PlaylistsView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Book/BookListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Book/BookListView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Book/BookReaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Book/BookReaderView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Book/BookViewerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Book/BookViewerView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Book/LocalBooksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Book/LocalBooksView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/DownloadToExternalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/DownloadToExternalView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Image/ImageGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Image/ImageGroupView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Image/ImageListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Image/ImageListView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Image/ImageViewerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Image/ImageViewerView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Image/LocalImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Image/LocalImageView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/MediaDownloadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/MediaDownloadView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Video/LocalVideosView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Video/LocalVideosView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Video/VideoListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Video/VideoListView.swift -------------------------------------------------------------------------------- /DarockBrowser/Media/Video/VideoPlayingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Media/Video/VideoPlayingView.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/AppearenceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/AppearenceManager.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/DarockAccountsUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/DarockAccountsUI.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/LaboratoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/LaboratoryView.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/NumberPadExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/NumberPadExt.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/ProPurchaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/ProPurchaseView.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/ADBlocker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/ADBlocker.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/BrowsingEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/BrowsingEngine.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/BrowsingPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/BrowsingPreference.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/DarockIntelligence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/DarockIntelligence.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/DarockVision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/DarockVision.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Developer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Developer.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Display.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/About.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/About.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/Continuity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/Continuity.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/Downloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/Downloader.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/GeneralSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/GeneralSettingsView.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/ImageViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/ImageViewer.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/Keyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/Keyboard.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/Legal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/Legal.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/MusicPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/MusicPlayer.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/Reader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/Reader.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/Reset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/Reset.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/General/SoftwareUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/General/SoftwareUpdate.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Gestures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Gestures.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Internal.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Network.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Network.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Notifications.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Password.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Password.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Privacy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Privacy.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Search/CustomSearchEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Search/CustomSearchEngine.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Search/SearchEngineShortcut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Search/SearchEngineShortcut.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Search/SearchSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Search/SearchSettingsView.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/SettingsView.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Stared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Stared.swift -------------------------------------------------------------------------------- /DarockBrowser/Preferences/Settings/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/Preferences/Settings/Widget.swift -------------------------------------------------------------------------------- /DarockBrowser/TabSupport/MediaMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/TabSupport/MediaMainView.swift -------------------------------------------------------------------------------- /DarockBrowser/TabSupport/TabModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/TabSupport/TabModels.swift -------------------------------------------------------------------------------- /DarockBrowser/TabSupport/TabsListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/TabSupport/TabsListView.swift -------------------------------------------------------------------------------- /DarockBrowser/TopLevelDomainList.drkdatat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/TopLevelDomainList.drkdatat -------------------------------------------------------------------------------- /DarockBrowser/WebKit/AdvancedWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/AdvancedWebView.swift -------------------------------------------------------------------------------- /DarockBrowser/WebKit/BrowsingMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/BrowsingMenuView.swift -------------------------------------------------------------------------------- /DarockBrowser/WebKit/CheckWebContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/CheckWebContent.swift -------------------------------------------------------------------------------- /DarockBrowser/WebKit/SwiftWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/SwiftWebView.swift -------------------------------------------------------------------------------- /DarockBrowser/WebKit/UIKitHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/UIKitHelper.swift -------------------------------------------------------------------------------- /DarockBrowser/WebKit/WEBackSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/WEBackSwift.swift -------------------------------------------------------------------------------- /DarockBrowser/WebKit/WebSummaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/WebSummaryView.swift -------------------------------------------------------------------------------- /DarockBrowser/WebKit/WebViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebKit/WebViewDelegate.swift -------------------------------------------------------------------------------- /DarockBrowser/WebRelated/BookmarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebRelated/BookmarkView.swift -------------------------------------------------------------------------------- /DarockBrowser/WebRelated/HistoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebRelated/HistoryView.swift -------------------------------------------------------------------------------- /DarockBrowser/WebRelated/ShareView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebRelated/ShareView.swift -------------------------------------------------------------------------------- /DarockBrowser/WebRelated/WebArchiveListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowser/WebRelated/WebArchiveListView.swift -------------------------------------------------------------------------------- /DarockBrowserUnitTests/DarockBrowserUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockBrowserUnitTests/DarockBrowserUnitTests.swift -------------------------------------------------------------------------------- /DarockFrameworks/AppSettingsUI.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/AppSettingsUI.xcframework/Info.plist -------------------------------------------------------------------------------- /DarockFrameworks/StorageUI.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/StorageUI.xcframework/Info.plist -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SFError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SFError.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SFFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SFFoundation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SSReadingList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SSReadingList.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SafariServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/SafariServices.framework/Headers/SafariServices.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/SafariServices.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/SafariServices.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/SafariServices.framework/SafariServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/SafariServices.framework/SafariServices.tbd -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/BrowsingMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/BrowsingMenuView.swift -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLAccelerationStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLAccelerationStructure.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLArgument.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLArgumentEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLArgumentEncoder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBinaryArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBinaryArchive.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBlitCommandEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBlitCommandEncoder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBlitPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBlitPass.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLBuffer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCaptureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCaptureManager.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCaptureScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCaptureScope.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCommandBuffer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCommandEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCommandEncoder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCommandQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCommandQueue.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLComputeCommandEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLComputeCommandEncoder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLComputePass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLComputePass.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLComputePipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLComputePipeline.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLCounters.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDefines.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDepthStencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDepthStencil.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDevice.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDrawable.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLDynamicLibrary.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLEvent.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFence.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionConstantValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionConstantValues.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionDescriptor.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionHandle.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionLog.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionStitching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLFunctionStitching.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLHeap.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIOCommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIOCommandBuffer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIOCommandQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIOCommandQueue.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIOCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIOCompressor.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIndirectCommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIndirectCommandBuffer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIndirectCommandEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIndirectCommandEncoder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIntersectionFunctionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLIntersectionFunctionTable.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLLibrary.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLLinkedFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLLinkedFunctions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLPipeline.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLPixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLPixelFormat.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRasterizationRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRasterizationRate.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRenderCommandEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRenderCommandEncoder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRenderPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRenderPass.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRenderPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLRenderPipeline.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLResource.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLResourceStatePass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLResourceStatePass.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLSampler.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLTexture.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLTypes.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLVertexDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLVertexDescriptor.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLVisibleFunctionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/MTLVisibleFunctionTable.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/Metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/Metal/Metal.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/EAGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/EAGL.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/EAGLDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/EAGLDrawable.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/EAGLIOSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/EAGLIOSurface.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES1/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES1/gl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES1/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES1/glext.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES2/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES2/gl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES2/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES2/glext.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES3/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES3/gl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES3/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/ES3/glext.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/OpenGLESAvailability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/OpenGLESAvailability.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/gltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/OpenGLES/gltypes.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAAnimation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CABase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CABase.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CADisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CADisplayLink.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEAGLLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEAGLLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEDRMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEDRMetadata.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEmitterCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEmitterCell.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEmitterLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAEmitterLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAFrameRateRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAFrameRateRange.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAGradientLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CALayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CALayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMediaTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMediaTiming.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMediaTimingFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMediaTimingFunction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMetalDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMetalDisplayLink.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMetalLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAMetalLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CARenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CARenderer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAReplicatorLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAReplicatorLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAScrollLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAScrollLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAShapeLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAShapeLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATextLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATiledLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATiledLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATransaction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATransform3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATransform3D.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATransformLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CATransformLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAValueFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CAValueFunction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CoreAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/CoreAnimation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/QuartzCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/QuartzCore/QuartzCore.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SFError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SFError.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SFFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SFFoundation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SFSafariApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SFSafariApplication.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SSReadingList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SSReadingList.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SafariServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/SafariServices/SafariServices.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/DocumentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/DocumentManager.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSDataAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSDataAsset.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSFileProviderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSFileProviderExtension.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSIndexPath+UIKitAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSIndexPath+UIKitAdditions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSLayoutAnchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSLayoutAnchor.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSLayoutConstraint.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSLayoutManager.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextContainer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextContentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextContentManager.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextElement.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextLayoutFragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextLayoutFragment.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextLayoutManager.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextLineFragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextLineFragment.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextListElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextListElement.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextRange.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextSelection.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextSelectionNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextSelectionNavigation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTextStorage.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSToolbar+UIKitAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSToolbar+UIKitAdditions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTouchBar+UIKitAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/NSTouchBar+UIKitAdditions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/PrintKitUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/PrintKitUI.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/ShareSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/ShareSheet.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccelerometer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibility.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityAdditions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityContainer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityCustomAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityCustomAction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityCustomRotor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityCustomRotor.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityElement.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityZoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAccessibilityZoom.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActionSheet.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivity.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityIndicatorView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityItemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityItemProvider.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityItemsConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityItemsConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIActivityViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAlert.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAlertController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAlertController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAlertView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAppearance.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIApplication.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIApplicationShortcutItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIApplicationShortcutItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAttachmentBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIAttachmentBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBackgroundConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBackgroundConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBandSelectionInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBandSelectionInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarAppearance.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarButtonItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarButtonItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarButtonItemAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarButtonItemAppearance.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarButtonItemGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarButtonItemGroup.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarCommon.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBarItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBehavioralStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBehavioralStyle.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBlurEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIBlurEffect.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIButton.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIButtonConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIButtonConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarSelection.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarSelectionMultiDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarSelectionMultiDate.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarViewDecoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICalendarViewDecoration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICanvasFeedbackGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICanvasFeedbackGenerator.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICellAccessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICellAccessory.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICellConfigurationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICellConfigurationState.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICloudSharingController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICloudSharingController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionLayoutList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionLayoutList.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewCell.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewFlowLayout.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewLayout.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewListCell.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewUpdateItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollectionViewUpdateItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollisionBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICollisionBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIColorPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIColorPickerViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIColorWell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIColorWell.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UICommand.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIConfigurationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIConfigurationState.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContentConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContentConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContentSizeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContentSizeCategory.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContentUnavailableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContentUnavailableView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContextMenuConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContextMenuConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContextMenuInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContextMenuInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContextualAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIContextualAction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIControl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDataDetectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDataDetectors.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDataSourceTranslating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDataSourceTranslating.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDatePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDatePicker.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDeferredMenuElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDeferredMenuElement.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDevice.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDiffableDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDiffableDataSource.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocument.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentBrowserAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentBrowserAction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentMenuViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentProperties.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDocumentViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragPreview.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragPreviewParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragPreviewParameters.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDragSession.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDropInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDropInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDynamicAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDynamicAnimator.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDynamicBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDynamicBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDynamicItemBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIDynamicItemBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEditMenuInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEditMenuInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEvent.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEventAttribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEventAttribution.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEventAttributionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIEventAttributionView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFeedbackGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFeedbackGenerator.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFieldBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFieldBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFindInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFindInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFindSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFindSession.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocus.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusAnimationCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusAnimationCoordinator.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusDebugger.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusEffect.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusGuide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusGuide.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusMovementHint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusMovementHint.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFocusSystem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFontPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFontPickerViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIFoundation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGestureRecognizer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGestureRecognizerSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGestureRecognizerSubclass.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphics.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsImageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsImageRenderer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsPDFRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsPDFRenderer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsRenderer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsRendererSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGraphicsRendererSubclass.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGravityBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGravityBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGuidedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGuidedAccess.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGuidedAccessRestrictions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIGuidedAccessRestrictions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverEffect.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverEffectLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverEffectLayer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverGestureRecognizer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIHoverStyle.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImageAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImageAsset.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImagePickerController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImageView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImpactFeedbackGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIImpactFeedbackGenerator.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInputView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInputViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInputViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIInterface.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKey.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKeyCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKeyCommand.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKeyConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKeyConstants.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKeyboardLayoutGuide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKeyboardLayoutGuide.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKit.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKitCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKitCore.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKitDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIKitDefines.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILabel.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILargeContentViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILargeContentViewer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILayoutGuide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILayoutGuide.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILetterformAwareAdjusting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILetterformAwareAdjusting.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILexicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILexicon.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListContentConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListContentConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListContentImageProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListContentImageProperties.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListContentTextProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListContentTextProperties.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListSeparatorConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIListSeparatorConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILocalizedIndexedCollation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILocalizedIndexedCollation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILongPressGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UILongPressGestureRecognizer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIManagedDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIManagedDocument.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenu.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuBuilder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuDisplayPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuDisplayPreferences.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuElement.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuLeaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuLeaf.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMenuSystem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMotionEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIMotionEffect.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationBar.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationBarAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationBarAppearance.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINavigationItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINib.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINibDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINibDeclarations.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINibLoading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UINibLoading.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIOpenURLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIOpenURLContext.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIOrientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIOrientation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPageControl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPageControlProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPageControlProgress.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPageViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPanGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPanGestureRecognizer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPasteConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPasteConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPasteControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPasteControl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPasteboard.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPencilInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPencilInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPickerView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPinchGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPinchGestureRecognizer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerAccessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerAccessory.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerLockState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerLockState.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerRegion.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPointerStyle.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPopoverBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPopoverBackgroundView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPopoverController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPopoverController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPopoverSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPopoverSupport.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPresentationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPresentationController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPress.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPressesEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPressesEvent.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPreviewInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPreviewInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPreviewParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPreviewParameters.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintError.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintFormatter.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintInfo.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintInteractionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintInteractionController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintPageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintPageRenderer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintPaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintPaper.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintServiceExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrintServiceExtension.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrinter.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrinterPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPrinterPickerController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIProgressView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPushBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIPushBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIRefreshControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIRefreshControl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIRegion.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIResponder.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScene+AVAudioSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScene+AVAudioSession.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScene.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneDefinitions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneOptions.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneSession.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneWindowingBehaviors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISceneWindowingBehaviors.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScreen.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScreenMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScreenMode.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScreenshotService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScreenshotService.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScribbleInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScribbleInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIScrollView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchBar.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchDisplayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchDisplayController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchSuggestion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchSuggestion.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISearchTextField.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISegmentedControl.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIShape.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISlider.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISnapBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISnapBehavior.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISplitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISplitViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISpringLoadedInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISpringLoadedInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStackView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStandardTextCursorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStandardTextCursorView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStateRestoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStateRestoration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStatusBarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStatusBarManager.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStepper.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStoryboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStoryboard.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStoryboardPopoverSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStoryboardPopoverSegue.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStoryboardSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStoryboardSegue.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStringDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIStringDrawing.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISwipeGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISwipeGestureRecognizer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISwitch.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISymbolEffectCompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UISymbolEffectCompletion.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBar.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBarAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBarAppearance.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBarController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITabBarItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITableView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITableViewCell.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITableViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITapGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITapGestureRecognizer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITargetedDragPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITargetedDragPreview.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITargetedPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITargetedPreview.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextChecker.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextCursorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextCursorView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDragPreviewRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDragPreviewRenderer.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDragURLPreviews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDragURLPreviews.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDragging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDragging.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDropProposal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDropProposal.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDropping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextDropping.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextField.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInput.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInputContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInputContext.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInputTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInputTraits.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextItemInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextItemInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextLoupeSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextLoupeSession.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextPasteDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextPasteDelegate.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextSearching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextSearching.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextSelectionHandleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextSelectionHandleView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITextView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITimingCurveProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITimingCurveProvider.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITimingParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITimingParameters.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIToolTipInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIToolTipInteraction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIToolbar.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIToolbarAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIToolbarAppearance.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITouch.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITrackingLayoutGuide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITrackingLayoutGuide.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITrait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITrait.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITraitCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UITraitCollection.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIUserActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIUserActivity.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVibrancyEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVibrancyEffect.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVideoEditorController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVideoEditorController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewAnimating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewAnimating.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewConfigurationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewConfigurationState.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewPropertyAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIViewPropertyAnimator.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVisualEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVisualEffect.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVisualEffectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIVisualEffectView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWebView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindow.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindowScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindowScene.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindowSceneGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindowSceneGeometry.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindowScenePlacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/UIKit/UIWindowScenePlacement.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/NSAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/NSAttributedString.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKBackForwardList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKBackForwardList.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKBackForwardListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKBackForwardListItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContentRuleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContentRuleList.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContentRuleListStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContentRuleListStore.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContentWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContentWorld.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContextMenuElementInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKContextMenuElementInfo.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKDataDetectorTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKDataDetectorTypes.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKDownload.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKDownloadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKDownloadDelegate.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKError.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFindConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFindConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFindResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFindResult.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFoundation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKFrameInfo.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKHTTPCookieStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKHTTPCookieStore.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigation.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigationAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigationAction.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigationDelegate.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigationResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKNavigationResponse.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKOpenPanelParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKOpenPanelParameters.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPDFConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPDFConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPreferences.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPreviewActionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPreviewActionItem.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPreviewElementInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKPreviewElementInfo.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKProcessPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKProcessPool.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKScriptMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKScriptMessage.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKScriptMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKScriptMessageHandler.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKSecurityOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKSecurityOrigin.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKSnapshotConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKSnapshotConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKUIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKUIDelegate.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKURLSchemeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKURLSchemeHandler.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKURLSchemeTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKURLSchemeTask.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKUserContentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKUserContentController.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKUserScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKUserScript.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebView.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebViewConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebViewConfiguration.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebpagePreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebpagePreferences.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebsiteDataRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebsiteDataRecord.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebsiteDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWebsiteDataStore.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWindowFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WKWindowFeatures.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WebKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WebKit.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WebKitLegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WebKit/WebKitLegacy.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WitchWebUI-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/ObjC/WitchWebUI-Bridging-Header.h -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/SwiftWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/SwiftWebView.swift -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/UIKitHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/UIKitHelper.swift -------------------------------------------------------------------------------- /DarockFrameworks/WitchWebUI/WitchWebUI/WWUIWebController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/DarockFrameworks/WitchWebUI/WitchWebUI/WWUIWebController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/LICENSE -------------------------------------------------------------------------------- /Localization/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Localization/Localizable.xcstrings -------------------------------------------------------------------------------- /Localization/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Localization/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localization/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | WatchBrowser 4 | 5 | Created by 雷美淳 on 2024/2/5. 6 | 7 | */ 8 | 9 | CFBundleDisplayName = "暗礁浏览器"; 10 | -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | WatchBrowser 4 | 5 | Created by 雷美淳 on 2024/2/5. 6 | 7 | */ 8 | 9 | CFBundleDisplayName = "暗礁浏览器"; 10 | -------------------------------------------------------------------------------- /Localization/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Localization/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ProWidgets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ProWidgets/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /ProWidgets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ProWidgets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ProWidgets/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /ProWidgets/Bookmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Bookmark.swift -------------------------------------------------------------------------------- /ProWidgets/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Extensions.swift -------------------------------------------------------------------------------- /ProWidgets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Info.plist -------------------------------------------------------------------------------- /ProWidgets/ProWidgets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/ProWidgets.swift -------------------------------------------------------------------------------- /ProWidgets/ProWidgetsExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/ProWidgetsExtension.entitlements -------------------------------------------------------------------------------- /ProWidgets/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ProWidgets/Search.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/README.md -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFAddToHomeScreenActivityItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFAddToHomeScreenActivityItem.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFAuthenticationSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFAuthenticationSession.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFContentBlockerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFContentBlockerManager.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFContentBlockerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFContentBlockerState.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFError.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFFoundation.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFSafariApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFSafariApplication.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFSafariViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFSafariViewController.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFSafariViewControllerActivityButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFSafariViewControllerActivityButton.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFSafariViewControllerConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFSafariViewControllerConfiguration.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFSafariViewControllerDataStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFSafariViewControllerDataStore.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SFSafariViewControllerPrewarmingToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SFSafariViewControllerPrewarmingToken.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SSReadingList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SSReadingList.h -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SafariServices.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SafariServices.apinotes -------------------------------------------------------------------------------- /SafariServices.framework/Headers/SafariServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Headers/SafariServices.h -------------------------------------------------------------------------------- /SafariServices.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SafariServices.framework/SafariServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SafariServices.framework/SafariServices.tbd -------------------------------------------------------------------------------- /Scripts/JSScripts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Scripts/JSScripts.plist -------------------------------------------------------------------------------- /Scripts/Source_DoNotEmbed/ADBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Scripts/Source_DoNotEmbed/ADBlock.js -------------------------------------------------------------------------------- /Scripts/Source_DoNotEmbed/ForceDarkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/Scripts/Source_DoNotEmbed/ForceDarkMode.js -------------------------------------------------------------------------------- /SharedCode/Intents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SharedCode/Intents.swift -------------------------------------------------------------------------------- /SharedCode/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/SharedCode/Models.swift -------------------------------------------------------------------------------- /TripleQuestionmarkCore/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/Extensions.swift -------------------------------------------------------------------------------- /TripleQuestionmarkCore/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/Localizable.xcstrings -------------------------------------------------------------------------------- /TripleQuestionmarkCore/TQCViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/TQCViews.swift -------------------------------------------------------------------------------- /TripleQuestionmarkCore/TripleQuestionmarkCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/TripleQuestionmarkCore.h -------------------------------------------------------------------------------- /TripleQuestionmarkCore/___0721NeneChan.drkdatau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/___0721NeneChan.drkdatau -------------------------------------------------------------------------------- /TripleQuestionmarkCore/___KawaiiChieriChan.drkdatau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/___KawaiiChieriChan.drkdatau -------------------------------------------------------------------------------- /TripleQuestionmarkCore/___MesugakiAmane.drkdatau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/___MesugakiAmane.drkdatau -------------------------------------------------------------------------------- /TripleQuestionmarkCore/___YoutouMurasameChan.drkdatau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/TripleQuestionmarkCore/___YoutouMurasameChan.drkdatau -------------------------------------------------------------------------------- /ci_scripts/ci_post_xcodebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darock-Studio/Watch-Browser/HEAD/ci_scripts/ci_post_xcodebuild.sh -------------------------------------------------------------------------------- /ci_scripts/ci_pre_xcodebuild.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | brew install swiftlint 4 | --------------------------------------------------------------------------------