├── .gitignore ├── CwlViews.podspec ├── CwlViews.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── CwlViews.xcscheme │ ├── CwlViewsCatalog_iOS.xcscheme │ ├── CwlViewsCatalog_macOS.xcscheme │ ├── CwlViewsConcat.xcscheme │ ├── CwlViewsTesting.xcscheme │ ├── CwlViewsUnitTests_iOS.xcscheme │ └── CwlViewsUnitTests_macOS.xcscheme ├── CwlViewsTesting.podspec ├── Dependencies └── CwlSignal │ ├── .gitignore │ ├── CwlSignal.playground │ ├── Pages │ │ ├── About CwlSignal.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Advanced behaviors - Capturing.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Advanced behaviors - continuous.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Advanced behaviors - lazy generation.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Advanced composition - loopback.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Advanced composition - nested operators.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── App scenario - dynamic view properties.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── App scenario - threadsafe key-value storage.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Basic input-signal pair.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Contents.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Parallel composition - combine.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Parallel composition - merging.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Play area.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Serial pipelines - asynchronous.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Serial pipelines - channel.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Serial pipelines - map.xcplaygroundpage │ │ │ └── Contents.swift │ │ └── Serial pipelines - transform.xcplaygroundpage │ │ │ └── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata │ ├── CwlSignal.podspec │ ├── CwlSignal.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── CwlSignal.xcscheme │ │ ├── CwlSignalConcat.xcscheme │ │ ├── CwlSignal_iOSTests.xcscheme │ │ ├── CwlSignal_macOSTests.xcscheme │ │ ├── CwlSignal_tvOSTests.xcscheme │ │ └── xcschememanagement.plist │ ├── Dependencies │ └── CwlUtils │ │ ├── .gitignore │ │ ├── CwlUtils.podspec │ │ ├── CwlUtils.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── CwlUtils.xcscheme │ │ │ ├── CwlUtilsConcat.xcscheme │ │ │ ├── CwlUtils_iOSTestApp.xcscheme │ │ │ ├── CwlUtils_iOSTests.xcscheme │ │ │ ├── CwlUtils_macOSTestApp.xcscheme │ │ │ ├── CwlUtils_macOSTests.xcscheme │ │ │ ├── CwlUtils_tvOSTests.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── Dependencies │ │ └── CwlPreconditionTesting │ │ │ ├── .gitignore │ │ │ ├── CwlPreconditionTesting.podspec │ │ │ ├── CwlPreconditionTesting.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── CwlPreconditionTesting.xcscheme │ │ │ │ ├── CwlPreconditionTesting_iOSTests.xcscheme │ │ │ │ ├── CwlPreconditionTesting_macOSTests.xcscheme │ │ │ │ └── CwlPreconditionTesting_tvOSTests.xcscheme │ │ │ ├── Dependencies │ │ │ └── CwlCatchException │ │ │ │ ├── .gitignore │ │ │ │ ├── CwlCatchException.podspec │ │ │ │ ├── CwlCatchException.xcodeproj │ │ │ │ ├── CwlCatchExceptionSupport_Info.plist │ │ │ │ ├── CwlCatchExceptionTests_Info.plist │ │ │ │ ├── CwlCatchException_Info.plist │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── CwlCatchException.xcscheme │ │ │ │ │ ├── CwlCatchException_iOSTests.xcscheme │ │ │ │ │ └── CwlCatchException_macOSTests.xcscheme │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ ├── CwlCatchException │ │ │ │ │ ├── CwlCatchException.swift │ │ │ │ │ └── Info.plist │ │ │ │ ├── CwlCatchExceptionSupport │ │ │ │ │ ├── CwlCatchException.m │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── include │ │ │ │ │ │ └── CwlCatchException.h │ │ │ │ └── CwlCatchExceptionTests.plist │ │ │ │ └── Tests │ │ │ │ └── CwlCatchExceptionTests │ │ │ │ ├── CwlCatchExceptionTests.swift │ │ │ │ └── Info.plist │ │ │ ├── LICENSE.txt │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ ├── CwlMachBadInstructionHandler │ │ │ │ ├── CwlMachBadInstructionHandler.m │ │ │ │ ├── include │ │ │ │ │ └── CwlMachBadInstructionHandler.h │ │ │ │ ├── mach_excServer.c │ │ │ │ └── mach_excServer.h │ │ │ └── CwlPreconditionTesting │ │ │ │ ├── CwlBadInstructionException.swift │ │ │ │ ├── CwlCatchBadInstruction.swift │ │ │ │ ├── CwlCatchBadInstructionPosix.swift │ │ │ │ ├── CwlDarwinDefinitions.swift │ │ │ │ ├── Info.plist │ │ │ │ └── include │ │ │ │ └── CwlPreconditionTesting.h │ │ │ └── Tests │ │ │ └── CwlPreconditionTestingTests │ │ │ ├── CwlCatchBadInstructionTests.swift │ │ │ └── Info.plist │ │ ├── LICENSE.txt │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Scripts │ │ └── CwlConcat │ │ │ └── main.swift │ │ ├── Sources │ │ ├── CwlFrameAddress │ │ │ ├── CwlFrameAddress.c │ │ │ └── include │ │ │ │ └── CwlFrameAddress.h │ │ ├── CwlUtils │ │ │ ├── CwlAddressInfo.swift │ │ │ ├── CwlCaseNameCodable.swift │ │ │ ├── CwlCollection.swift │ │ │ ├── CwlCustomExecutionContext.swift │ │ │ ├── CwlDebugContext.swift │ │ │ ├── CwlDeferredWork.swift │ │ │ ├── CwlDeque.swift │ │ │ ├── CwlDispatch.swift │ │ │ ├── CwlExec.swift │ │ │ ├── CwlExecutionType.swift │ │ │ ├── CwlFew.swift │ │ │ ├── CwlKeyValueObserver.swift │ │ │ ├── CwlLifetime.swift │ │ │ ├── CwlMutex.swift │ │ │ ├── CwlOnDelete.swift │ │ │ ├── CwlRandom.swift │ │ │ ├── CwlResult.swift │ │ │ ├── CwlScalarScanner.swift │ │ │ ├── CwlSerializingContext.swift │ │ │ ├── CwlStackFrame.swift │ │ │ ├── CwlSysctl.swift │ │ │ ├── CwlUnanticipatedError.swift │ │ │ ├── CwlUtils.h │ │ │ ├── CwlWrappers.swift │ │ │ └── Info.plist │ │ └── ReferenceRandomGenerators │ │ │ ├── include │ │ │ └── ReferenceRandomGenerators.h │ │ │ ├── mt19937-64.c │ │ │ └── xoshiro256starstar.c │ │ └── Tests │ │ ├── CwlUtilsPerformanceTests │ │ ├── CwlDequePerformanceTests.swift │ │ ├── CwlMutexPerformanceTests.swift │ │ └── CwlRandomPerformanceTests.swift │ │ ├── CwlUtilsTests │ │ ├── CwlAddressInfoTests.swift │ │ ├── CwlCaseNameCodableTests.swift │ │ ├── CwlCollectionTests.swift │ │ ├── CwlDebugContextTests.swift │ │ ├── CwlDeferredWorkTests.swift │ │ ├── CwlDequeTests.swift │ │ ├── CwlDispatchTests.swift │ │ ├── CwlExecTests.swift │ │ ├── CwlKeyValueObserverTests.swift │ │ ├── CwlMutexTests.swift │ │ ├── CwlOnDeleteTests.swift │ │ ├── CwlRandomTests.swift │ │ ├── CwlScalarScannerTests.swift │ │ ├── CwlStackFrameTests.swift │ │ ├── CwlSysctlTests.swift │ │ ├── CwlUnanticipatedErrorTests.swift │ │ ├── CwlUtilsTests-BridgingHeader.h │ │ ├── CwlWrapperTests.swift │ │ └── Info.plist │ │ ├── CwlUtils_iOSTestApp │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ │ ├── CwlUtils_iOSTestAppUITests │ │ └── CwlUtils_iOSTestAppUITests.swift │ │ ├── CwlUtils_macOSTestApp │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ │ └── CwlUtils_macOSTestAppUITests │ │ └── CwlUtils_macOSTestAppUITests.swift │ ├── LICENSE.txt │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── CwlSignal │ │ ├── CwlSignal.h │ │ ├── CwlSignal.swift │ │ ├── CwlSignalChannel.swift │ │ ├── CwlSignalCocoa.swift │ │ ├── CwlSignalExtensions.swift │ │ ├── CwlSignalReactive.swift │ │ └── Info.plist │ └── Tests │ └── CwlSignalTests │ ├── CwlSignalCocoaTests.swift │ ├── CwlSignalReactiveTests.swift │ ├── CwlSignalTests.swift │ └── Info.plist ├── LICENSE.txt ├── README.md ├── Scripts └── install_cwlviews_templates.swift ├── Sources ├── CwlViews │ ├── Core │ │ ├── Adapter │ │ │ ├── CwlAdapter+Signals.swift │ │ │ ├── CwlAdapter.swift │ │ │ ├── CwlAdapterState.swift │ │ │ ├── CwlCodableContainer.swift │ │ │ ├── CwlMasterDetail.swift │ │ │ ├── CwlModelState.swift │ │ │ ├── CwlStackAdapter.swift │ │ │ ├── CwlTempVar.swift │ │ │ ├── CwlToggleVar.swift │ │ │ └── CwlVar.swift │ │ ├── Binder │ │ │ ├── CwlAssociatedBinderStorage.swift │ │ │ ├── CwlBinder.swift │ │ │ ├── CwlBinderApplyable.swift │ │ │ ├── CwlBinderBase.swift │ │ │ ├── CwlBinderDelegate.swift │ │ │ ├── CwlBinderEmbedderConstructor.swift │ │ │ ├── CwlBinderPreparer.swift │ │ │ ├── CwlBinding.swift │ │ │ └── CwlBindingName.swift │ │ ├── BindingValues │ │ │ ├── CwlConstant.swift │ │ │ ├── CwlDynamic.swift │ │ │ ├── CwlInitialSubsequent.swift │ │ │ ├── CwlScopedValues.swift │ │ │ ├── CwlSignalCallback.swift │ │ │ └── CwlTargetAction.swift │ │ ├── Mutation │ │ │ ├── CwlIndexedMutation.swift │ │ │ ├── CwlSetMutation.swift │ │ │ ├── CwlStackMutation.swift │ │ │ ├── CwlSubrangeMutation.swift │ │ │ └── CwlTreeMutation.swift │ │ └── Utilities │ │ │ ├── CwlAnimatable.swift │ │ │ ├── CwlCoder.swift │ │ │ ├── CwlImageDrawn.swift │ │ │ ├── CwlKeyValueObservationLifetime.swift │ │ │ ├── CwlLayout.swift │ │ │ └── CwlPreferredFonts.swift │ ├── CwlViews.h │ ├── Implementations │ │ ├── Common │ │ │ ├── CwlExtendedView.swift │ │ │ ├── CwlGradientLayer.swift │ │ │ ├── CwlLayer.swift │ │ │ ├── CwlShapeLayer.swift │ │ │ ├── CwlStackView.swift │ │ │ └── CwlWebView.swift │ │ ├── iOS │ │ │ ├── CwlAlertAction_iOS.swift │ │ │ ├── CwlAlertController_iOS.swift │ │ │ ├── CwlApplication_iOS.swift │ │ │ ├── CwlBarButtonItem_iOS.swift │ │ │ ├── CwlBarItem_iOS.swift │ │ │ ├── CwlButton_iOS.swift │ │ │ ├── CwlControl_iOS.swift │ │ │ ├── CwlDatePicker_iOS.swift │ │ │ ├── CwlExtendedViewController_iOS.swift │ │ │ ├── CwlGestureRecognizer_iOS.swift │ │ │ ├── CwlImageView_iOS.swift │ │ │ ├── CwlLabel_iOS.swift │ │ │ ├── CwlLongPressGestureRecognizer_iOS.swift │ │ │ ├── CwlNavigationBar_iOS.swift │ │ │ ├── CwlNavigationController_iOS.swift │ │ │ ├── CwlNavigationItem_iOS.swift │ │ │ ├── CwlPageControl.swift │ │ │ ├── CwlPageViewController_iOS.swift │ │ │ ├── CwlPanGestureRecognizer_iOS.swift │ │ │ ├── CwlPickerView_iOS.swift │ │ │ ├── CwlPinchGestureRecognizer_iOS.swift │ │ │ ├── CwlProgressView_iOS.swift │ │ │ ├── CwlRotationGestureRecognizer_iOS.swift │ │ │ ├── CwlScreenEdgePanGestureRecognizer_iOS.swift │ │ │ ├── CwlScrollView_iOS.swift │ │ │ ├── CwlSearchBar_iOS.swift │ │ │ ├── CwlSegmentedControl_iOS.swift │ │ │ ├── CwlSlider_iOS.swift │ │ │ ├── CwlSplitViewController_iOS.swift │ │ │ ├── CwlStepper_iOS.swift │ │ │ ├── CwlSwipeGestureRecognizer_iOS.swift │ │ │ ├── CwlSwitch_iOS.swift │ │ │ ├── CwlTabBarController_iOS.swift │ │ │ ├── CwlTabBarItem_iOS.swift │ │ │ ├── CwlTabBar_iOS.swift │ │ │ ├── CwlTableViewCell_iOS.swift │ │ │ ├── CwlTableView_iOS.swift │ │ │ ├── CwlTapGestureRecognizer_iOS.swift │ │ │ ├── CwlTextField_iOS.swift │ │ │ ├── CwlTextInputTraits_iOS.swift │ │ │ ├── CwlTextView_iOS.swift │ │ │ ├── CwlToolbar_iOS.swift │ │ │ ├── CwlViewController_iOS.swift │ │ │ ├── CwlView_iOS.swift │ │ │ └── CwlWindow_iOS.swift │ │ └── macOS │ │ │ ├── CwlApplication_macOS.swift │ │ │ ├── CwlButton_macOS.swift │ │ │ ├── CwlClickGestureRecognizer_macOS.swift │ │ │ ├── CwlClipView_macOS.swift │ │ │ ├── CwlControl_macOS.swift │ │ │ ├── CwlGestureRecognizer_macOS.swift │ │ │ ├── CwlImageView_macOS.swift │ │ │ ├── CwlMagnificationGestureRecognizer_macOS.swift │ │ │ ├── CwlMenuItem_macOS.swift │ │ │ ├── CwlMenu_macOS.swift │ │ │ ├── CwlOutlineView_macOS.swift │ │ │ ├── CwlPanGestureRecognizer_macOS.swift │ │ │ ├── CwlPopUpButton_macOS.swift │ │ │ ├── CwlPressGestureRecognizer_macOS.swift │ │ │ ├── CwlRotationGestureRecognizer_macOS.swift │ │ │ ├── CwlScrollView_macOS.swift │ │ │ ├── CwlSegmentedControl_macOS.swift │ │ │ ├── CwlSlider_macOS.swift │ │ │ ├── CwlSplitView_macOS.swift │ │ │ ├── CwlTabViewItem_macOS.swift │ │ │ ├── CwlTabView_macOS.swift │ │ │ ├── CwlTableCellView_macOS.swift │ │ │ ├── CwlTableColumn_macOS.swift │ │ │ ├── CwlTableHeaderView_macOS.swift │ │ │ ├── CwlTableRowView_macOS.swift │ │ │ ├── CwlTableView_macOS.swift │ │ │ ├── CwlTextField_macOS.swift │ │ │ ├── CwlTextView_macOS.swift │ │ │ ├── CwlToolbarItem_macOS.swift │ │ │ ├── CwlToolbar_macOS.swift │ │ │ ├── CwlView_macOS.swift │ │ │ └── CwlWindow_macOS.swift │ └── Info.plist └── CwlViewsTesting │ ├── Common │ ├── CwlExtendedViewTesting.swift │ ├── CwlGradientLayerTesting.swift │ ├── CwlLayerTesting.swift │ ├── CwlShapeLayerTesting.swift │ ├── CwlStackViewTesting.swift │ └── CwlWebViewTesting.swift │ ├── Core │ └── CwlBindingParser.swift │ ├── CwlViewsTesting.h │ ├── Info.plist │ ├── iOS │ ├── CwlAlertActionTesting_iOS.swift │ ├── CwlAlertControllerTesting_iOS.swift │ ├── CwlApplicationTesting_iOS.swift │ ├── CwlBarButtonItemTesting_iOS.swift │ ├── CwlBarItemTesting_iOS.swift │ ├── CwlButtonTesting_iOS.swift │ ├── CwlControlTesting_iOS.swift │ ├── CwlDatePickerTesting_iOS.swift │ ├── CwlExtendedViewControllerTesting_iOS.swift │ ├── CwlGestureRecognizerTesting_iOS.swift │ ├── CwlImageViewTesting_iOS.swift │ ├── CwlLabelTesting_iOS.swift │ ├── CwlLongPressGestureRecognizerTesting_iOS.swift │ ├── CwlNavigationBarTesting_iOS.swift │ ├── CwlNavigationControllerTesting_iOS.swift │ ├── CwlNavigationItemTesting_iOS.swift │ ├── CwlPageControl.swift │ ├── CwlPageViewControllerTesting_iOS.swift │ ├── CwlPanGestureRecognizerTesting_iOS.swift │ ├── CwlPickerViewTesting_iOS.swift │ ├── CwlPinchGestureRecognizerTesting_iOS.swift │ ├── CwlProgressViewTesting_iOS.swift │ ├── CwlRotationGestureRecognizerTesting_iOS.swift │ ├── CwlScreenEdgePanGestureRecognizerTesting_iOS.swift │ ├── CwlScrollViewTesting_iOS.swift │ ├── CwlSearchBarTesting_iOS.swift │ ├── CwlSegmentedControlTesting_iOS.swift │ ├── CwlSliderTesting_iOS.swift │ ├── CwlSplitViewControllerTesting_iOS.swift │ ├── CwlStepperTesting_iOS.swift │ ├── CwlSwipeGestureRecognizerTesting_iOS.swift │ ├── CwlSwitchTesting_iOS.swift │ ├── CwlTabBarControllerTesting_iOS.swift │ ├── CwlTabBarItemTesting_iOS.swift │ ├── CwlTabBarTesting_iOS.swift │ ├── CwlTableViewCellTesting_iOS.swift │ ├── CwlTableViewTesting_iOS.swift │ ├── CwlTapGestureRecognizerTesting_iOS.swift │ ├── CwlTextFieldTesting_iOS.swift │ ├── CwlTextInputTraitsTesting_iOS.swift │ ├── CwlTextViewTesting_iOS.swift │ ├── CwlToolbarTesting_iOS.swift │ ├── CwlViewControllerTesting_iOS.swift │ ├── CwlViewTesting_iOS.swift │ └── CwlWindowTesting_iOS.swift │ └── macOS │ ├── CwlApplicationTesting_macOS.swift │ ├── CwlButtonTesting_macOS.swift │ ├── CwlClickGestureRecognizerTesting_macOS.swift │ ├── CwlClipViewTesting_macOS.swift │ ├── CwlControlTesting_macOS.swift │ ├── CwlGestureRecognizerTesting_macOS.swift │ ├── CwlImageViewTesting_macOS.swift │ ├── CwlMagnificationGestureRecognizerTesting_macOS.swift │ ├── CwlMenuItemTesting_macOS.swift │ ├── CwlMenuTesting_macOS.swift │ ├── CwlOutlineViewTesting_macOS.swift │ ├── CwlPanGestureRecognizerTesting_macOS.swift │ ├── CwlPopUpButtonTesting_macOS.swift │ ├── CwlPressGestureRecognizerTesting_macOS.swift │ ├── CwlRotationGestureRecognizerTesting_macOS.swift │ ├── CwlScrollViewTesting_macOS.swift │ ├── CwlSegmentedControlTesting_macOS.swift │ ├── CwlSliderTesting_macOS.swift │ ├── CwlSplitViewTesting_macOS.swift │ ├── CwlTabViewItemTesting_macOS.swift │ ├── CwlTabViewTesting_macOS.swift │ ├── CwlTableCellViewTesting_macOS.swift │ ├── CwlTableColumnTesting_macOS.swift │ ├── CwlTableHeaderViewTesting_macOS.swift │ ├── CwlTableRowViewTesting_macOS.swift │ ├── CwlTableViewTesting_macOS.swift │ ├── CwlTextFieldTesting_macOS.swift │ ├── CwlTextViewTesting_macOS.swift │ ├── CwlToolbarItemTesting_macOS.swift │ ├── CwlToolbarTesting_macOS.swift │ ├── CwlViewTesting_macOS.swift │ └── CwlWindowTesting_macOS.swift └── Tests ├── CwlViewsCatalog_iOS ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist └── Sources │ ├── AboutTab.swift │ ├── AlertView.swift │ ├── BarButtonView.swift │ ├── ButtonView.swift │ ├── CatalogTable.swift │ ├── ControlView.swift │ ├── DatePickerView.swift │ ├── GestureRecognizerView.swift │ ├── ImageView.swift │ ├── LayersView.swift │ ├── NavigationBarView.swift │ ├── PageView.swift │ ├── PickerView.swift │ ├── ProgressView.swift │ ├── SearchBarView.swift │ ├── SegmentedControlView.swift │ ├── SliderView.swift │ ├── SplitView.swift │ ├── StepperView.swift │ ├── SwitchView.swift │ ├── TabbedView.swift │ ├── TextFieldView.swift │ ├── TextView.swift │ ├── WebView.swift │ └── main.swift ├── CwlViewsCatalog_macOS ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── CwlViewsCatalog_macOS.entitlements ├── Info.plist └── Sources │ ├── AboutTab.swift │ ├── ButtonRowControl.swift │ ├── ButtonView.swift │ ├── CatalogTable.swift │ ├── ControlView.swift │ ├── GestureRecognizerView.swift │ ├── ImageView.swift │ ├── LayersView.swift │ ├── MainMenu.swift │ ├── SliderView.swift │ ├── TabButton.swift │ ├── TextFieldView.swift │ ├── TextView.swift │ ├── WebView.swift │ ├── Window.swift │ └── main.swift └── UnitTests ├── Common └── CwlLayerTests.swift ├── CwlTestableBinder.swift ├── Utils └── CwlUnanticipatedErrorTests.swift ├── iOS ├── CwlApplication_iOSTests.swift ├── CwlViewsUnitTestHarness_iOS │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── main.swift └── Info.plist └── macOS ├── CwlApplication_macOSTests.swift ├── CwlViewsUnitTestHarness_macOS ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── CwlViewsUnitTestHarness_macOS.entitlements ├── Info.plist ├── TestApplication.swift └── main.swift └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/.gitignore -------------------------------------------------------------------------------- /CwlViews.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.podspec -------------------------------------------------------------------------------- /CwlViews.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViews.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViews.xcscheme -------------------------------------------------------------------------------- /CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsCatalog_iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsCatalog_iOS.xcscheme -------------------------------------------------------------------------------- /CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsCatalog_macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsCatalog_macOS.xcscheme -------------------------------------------------------------------------------- /CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsConcat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsConcat.xcscheme -------------------------------------------------------------------------------- /CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsTesting.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsTesting.xcscheme -------------------------------------------------------------------------------- /CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsUnitTests_iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsUnitTests_iOS.xcscheme -------------------------------------------------------------------------------- /CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsUnitTests_macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViews.xcodeproj/xcshareddata/xcschemes/CwlViewsUnitTests_macOS.xcscheme -------------------------------------------------------------------------------- /CwlViewsTesting.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/CwlViewsTesting.podspec -------------------------------------------------------------------------------- /Dependencies/CwlSignal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/.gitignore -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/About CwlSignal.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/About CwlSignal.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced behaviors - Capturing.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced behaviors - Capturing.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced behaviors - continuous.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced behaviors - continuous.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced behaviors - lazy generation.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced behaviors - lazy generation.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced composition - loopback.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced composition - loopback.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced composition - nested operators.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Advanced composition - nested operators.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/App scenario - dynamic view properties.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/App scenario - dynamic view properties.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/App scenario - threadsafe key-value storage.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/App scenario - threadsafe key-value storage.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Basic input-signal pair.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Basic input-signal pair.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Contents.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Contents.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Parallel composition - combine.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Parallel composition - combine.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Parallel composition - merging.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Parallel composition - merging.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Play area.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Play area.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - asynchronous.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - asynchronous.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - channel.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - channel.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - map.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - map.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - transform.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/Pages/Serial pipelines - transform.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/contents.xcplayground -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.podspec -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignalConcat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignalConcat.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal_iOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal_iOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal_macOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal_macOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal_tvOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/CwlSignal_tvOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/CwlSignal.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/.gitignore -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.podspec -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtilsConcat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtilsConcat.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_iOSTestApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_iOSTestApp.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_iOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_iOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_macOSTestApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_macOSTestApp.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_macOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_macOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_tvOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/CwlUtils_tvOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/CwlUtils.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/.gitignore -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.podspec -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting_iOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting_iOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting_macOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting_macOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting_tvOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/CwlPreconditionTesting.xcodeproj/xcshareddata/xcschemes/CwlPreconditionTesting_tvOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | project.xcworkspace/ 3 | xcuserdata/ 4 | .build 5 | -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.podspec -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/CwlCatchExceptionSupport_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/CwlCatchExceptionSupport_Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/CwlCatchExceptionTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/CwlCatchExceptionTests_Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/CwlCatchException_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/CwlCatchException_Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/xcshareddata/xcschemes/CwlCatchException.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/xcshareddata/xcschemes/CwlCatchException.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/xcshareddata/xcschemes/CwlCatchException_iOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/xcshareddata/xcschemes/CwlCatchException_iOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/xcshareddata/xcschemes/CwlCatchException_macOSTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/CwlCatchException.xcodeproj/xcshareddata/xcschemes/CwlCatchException_macOSTests.xcscheme -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Package.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/README.md -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionTests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionTests.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Tests/CwlCatchExceptionTests/CwlCatchExceptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Tests/CwlCatchExceptionTests/CwlCatchExceptionTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Tests/CwlCatchExceptionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Dependencies/CwlCatchException/Tests/CwlCatchExceptionTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Package.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/README.md -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstructionPosix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstructionPosix.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/include/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Sources/CwlPreconditionTesting/include/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Tests/CwlPreconditionTestingTests/CwlCatchBadInstructionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Tests/CwlPreconditionTestingTests/CwlCatchBadInstructionTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Tests/CwlPreconditionTestingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Dependencies/CwlPreconditionTesting/Tests/CwlPreconditionTestingTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Package.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/README.md -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Scripts/CwlConcat/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Scripts/CwlConcat/main.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlFrameAddress/CwlFrameAddress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlFrameAddress/CwlFrameAddress.c -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlFrameAddress/include/CwlFrameAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlFrameAddress/include/CwlFrameAddress.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlAddressInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlAddressInfo.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlCaseNameCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlCaseNameCodable.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlCollection.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlCustomExecutionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlCustomExecutionContext.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDebugContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDebugContext.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDeferredWork.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDeferredWork.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDeque.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDeque.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlDispatch.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlExec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlExec.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlExecutionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlExecutionType.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlFew.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlFew.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlKeyValueObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlKeyValueObserver.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlLifetime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlLifetime.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlMutex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlMutex.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlOnDelete.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlOnDelete.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlRandom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlRandom.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlResult.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlScalarScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlScalarScanner.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlSerializingContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlSerializingContext.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlStackFrame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlStackFrame.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlSysctl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlSysctl.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlUnanticipatedError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlUnanticipatedError.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlUtils.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlWrappers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/CwlWrappers.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/CwlUtils/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/ReferenceRandomGenerators/include/ReferenceRandomGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/ReferenceRandomGenerators/include/ReferenceRandomGenerators.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/ReferenceRandomGenerators/mt19937-64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/ReferenceRandomGenerators/mt19937-64.c -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/ReferenceRandomGenerators/xoshiro256starstar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Sources/ReferenceRandomGenerators/xoshiro256starstar.c -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsPerformanceTests/CwlDequePerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsPerformanceTests/CwlDequePerformanceTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsPerformanceTests/CwlMutexPerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsPerformanceTests/CwlMutexPerformanceTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsPerformanceTests/CwlRandomPerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsPerformanceTests/CwlRandomPerformanceTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlAddressInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlAddressInfoTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlCaseNameCodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlCaseNameCodableTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlCollectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlCollectionTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDebugContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDebugContextTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDeferredWorkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDeferredWorkTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDequeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDequeTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDispatchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlDispatchTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlExecTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlExecTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlKeyValueObserverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlKeyValueObserverTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlMutexTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlMutexTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlOnDeleteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlOnDeleteTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlRandomTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlRandomTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlScalarScannerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlScalarScannerTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlStackFrameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlStackFrameTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlSysctlTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlSysctlTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlUnanticipatedErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlUnanticipatedErrorTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlUtilsTests-BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlUtilsTests-BridgingHeader.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlWrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/CwlWrapperTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtilsTests/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/AppDelegate.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestApp/ViewController.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestAppUITests/CwlUtils_iOSTestAppUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_iOSTestAppUITests/CwlUtils_iOSTestAppUITests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/AppDelegate.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestApp/ViewController.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestAppUITests/CwlUtils_macOSTestAppUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Dependencies/CwlUtils/Tests/CwlUtils_macOSTestAppUITests/CwlUtils_macOSTestAppUITests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Package.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/README.md -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Sources/CwlSignal/CwlSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Sources/CwlSignal/CwlSignal.h -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Sources/CwlSignal/CwlSignal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Sources/CwlSignal/CwlSignal.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalChannel.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalCocoa.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalCocoa.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalExtensions.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalReactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Sources/CwlSignal/CwlSignalReactive.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Sources/CwlSignal/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Sources/CwlSignal/Info.plist -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Tests/CwlSignalTests/CwlSignalCocoaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Tests/CwlSignalTests/CwlSignalCocoaTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Tests/CwlSignalTests/CwlSignalReactiveTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Tests/CwlSignalTests/CwlSignalReactiveTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Tests/CwlSignalTests/CwlSignalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Tests/CwlSignalTests/CwlSignalTests.swift -------------------------------------------------------------------------------- /Dependencies/CwlSignal/Tests/CwlSignalTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Dependencies/CwlSignal/Tests/CwlSignalTests/Info.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/install_cwlviews_templates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Scripts/install_cwlviews_templates.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlAdapter+Signals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlAdapter+Signals.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlAdapter.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlAdapterState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlAdapterState.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlCodableContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlCodableContainer.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlMasterDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlMasterDetail.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlModelState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlModelState.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlStackAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlStackAdapter.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlTempVar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlTempVar.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlToggleVar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlToggleVar.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Adapter/CwlVar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Adapter/CwlVar.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlAssociatedBinderStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlAssociatedBinderStorage.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBinder.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBinderApplyable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBinderApplyable.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBinderBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBinderBase.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBinderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBinderDelegate.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBinderEmbedderConstructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBinderEmbedderConstructor.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBinderPreparer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBinderPreparer.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBinding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBinding.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Binder/CwlBindingName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Binder/CwlBindingName.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/BindingValues/CwlConstant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/BindingValues/CwlConstant.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/BindingValues/CwlDynamic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/BindingValues/CwlDynamic.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/BindingValues/CwlInitialSubsequent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/BindingValues/CwlInitialSubsequent.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/BindingValues/CwlScopedValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/BindingValues/CwlScopedValues.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/BindingValues/CwlSignalCallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/BindingValues/CwlSignalCallback.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/BindingValues/CwlTargetAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/BindingValues/CwlTargetAction.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Mutation/CwlIndexedMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Mutation/CwlIndexedMutation.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Mutation/CwlSetMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Mutation/CwlSetMutation.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Mutation/CwlStackMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Mutation/CwlStackMutation.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Mutation/CwlSubrangeMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Mutation/CwlSubrangeMutation.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Mutation/CwlTreeMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Mutation/CwlTreeMutation.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Utilities/CwlAnimatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Utilities/CwlAnimatable.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Utilities/CwlCoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Utilities/CwlCoder.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Utilities/CwlImageDrawn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Utilities/CwlImageDrawn.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Utilities/CwlKeyValueObservationLifetime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Utilities/CwlKeyValueObservationLifetime.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Utilities/CwlLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Utilities/CwlLayout.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Core/Utilities/CwlPreferredFonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Core/Utilities/CwlPreferredFonts.swift -------------------------------------------------------------------------------- /Sources/CwlViews/CwlViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/CwlViews.h -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/Common/CwlExtendedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/Common/CwlExtendedView.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/Common/CwlGradientLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/Common/CwlGradientLayer.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/Common/CwlLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/Common/CwlLayer.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/Common/CwlShapeLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/Common/CwlShapeLayer.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/Common/CwlStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/Common/CwlStackView.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/Common/CwlWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/Common/CwlWebView.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlAlertAction_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlAlertAction_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlAlertController_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlAlertController_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlApplication_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlApplication_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlBarButtonItem_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlBarButtonItem_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlBarItem_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlBarItem_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlButton_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlButton_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlControl_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlControl_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlDatePicker_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlDatePicker_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlExtendedViewController_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlExtendedViewController_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlImageView_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlImageView_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlLabel_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlLabel_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlLongPressGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlLongPressGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlNavigationBar_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlNavigationBar_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlNavigationController_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlNavigationController_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlNavigationItem_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlNavigationItem_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlPageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlPageControl.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlPageViewController_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlPageViewController_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlPanGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlPanGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlPickerView_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlPickerView_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlPinchGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlPinchGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlProgressView_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlProgressView_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlRotationGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlRotationGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlScreenEdgePanGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlScreenEdgePanGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlScrollView_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlScrollView_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlSearchBar_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlSearchBar_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlSegmentedControl_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlSegmentedControl_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlSlider_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlSlider_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlSplitViewController_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlSplitViewController_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlStepper_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlStepper_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlSwipeGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlSwipeGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlSwitch_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlSwitch_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTabBarController_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTabBarController_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTabBarItem_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTabBarItem_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTabBar_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTabBar_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTableViewCell_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTableViewCell_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTableView_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTableView_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTapGestureRecognizer_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTapGestureRecognizer_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTextField_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTextField_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTextInputTraits_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTextInputTraits_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlTextView_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlTextView_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlToolbar_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlToolbar_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlViewController_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlViewController_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlView_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlView_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/iOS/CwlWindow_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/iOS/CwlWindow_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlApplication_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlApplication_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlButton_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlButton_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlClickGestureRecognizer_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlClickGestureRecognizer_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlClipView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlClipView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlControl_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlControl_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlGestureRecognizer_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlGestureRecognizer_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlImageView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlImageView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlMagnificationGestureRecognizer_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlMagnificationGestureRecognizer_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlMenuItem_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlMenuItem_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlMenu_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlMenu_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlOutlineView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlOutlineView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlPanGestureRecognizer_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlPanGestureRecognizer_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlPopUpButton_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlPopUpButton_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlPressGestureRecognizer_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlPressGestureRecognizer_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlRotationGestureRecognizer_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlRotationGestureRecognizer_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlScrollView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlScrollView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlSegmentedControl_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlSegmentedControl_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlSlider_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlSlider_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlSplitView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlSplitView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTabViewItem_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTabViewItem_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTabView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTabView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTableCellView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTableCellView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTableColumn_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTableColumn_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTableHeaderView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTableHeaderView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTableRowView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTableRowView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTableView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTableView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTextField_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTextField_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlTextView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlTextView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlToolbarItem_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlToolbarItem_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlToolbar_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlToolbar_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlView_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlView_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Implementations/macOS/CwlWindow_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Implementations/macOS/CwlWindow_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViews/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViews/Info.plist -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Common/CwlExtendedViewTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Common/CwlExtendedViewTesting.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Common/CwlGradientLayerTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Common/CwlGradientLayerTesting.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Common/CwlLayerTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Common/CwlLayerTesting.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Common/CwlShapeLayerTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Common/CwlShapeLayerTesting.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Common/CwlStackViewTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Common/CwlStackViewTesting.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Common/CwlWebViewTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Common/CwlWebViewTesting.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Core/CwlBindingParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Core/CwlBindingParser.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/CwlViewsTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/CwlViewsTesting.h -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/Info.plist -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlAlertActionTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlAlertActionTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlAlertControllerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlAlertControllerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlApplicationTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlApplicationTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlBarButtonItemTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlBarButtonItemTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlBarItemTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlBarItemTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlButtonTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlButtonTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlControlTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlControlTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlDatePickerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlDatePickerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlExtendedViewControllerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlExtendedViewControllerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlImageViewTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlImageViewTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlLabelTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlLabelTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlLongPressGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlLongPressGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlNavigationBarTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlNavigationBarTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlNavigationControllerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlNavigationControllerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlNavigationItemTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlNavigationItemTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlPageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlPageControl.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlPageViewControllerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlPageViewControllerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlPanGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlPanGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlPickerViewTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlPickerViewTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlPinchGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlPinchGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlProgressViewTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlProgressViewTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlRotationGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlRotationGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlScreenEdgePanGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlScreenEdgePanGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlScrollViewTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlScrollViewTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlSearchBarTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlSearchBarTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlSegmentedControlTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlSegmentedControlTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlSliderTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlSliderTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlSplitViewControllerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlSplitViewControllerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlStepperTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlStepperTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlSwipeGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlSwipeGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlSwitchTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlSwitchTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTabBarControllerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTabBarControllerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTabBarItemTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTabBarItemTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTabBarTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTabBarTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTableViewCellTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTableViewCellTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTableViewTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTableViewTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTapGestureRecognizerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTapGestureRecognizerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTextFieldTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTextFieldTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTextInputTraitsTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTextInputTraitsTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlTextViewTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlTextViewTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlToolbarTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlToolbarTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlViewControllerTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlViewControllerTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlViewTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlViewTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/iOS/CwlWindowTesting_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/iOS/CwlWindowTesting_iOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlApplicationTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlApplicationTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlButtonTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlButtonTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlClickGestureRecognizerTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlClickGestureRecognizerTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlClipViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlClipViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlControlTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlControlTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlGestureRecognizerTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlGestureRecognizerTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlImageViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlImageViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlMagnificationGestureRecognizerTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlMagnificationGestureRecognizerTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlMenuItemTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlMenuItemTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlMenuTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlMenuTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlOutlineViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlOutlineViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlPanGestureRecognizerTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlPanGestureRecognizerTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlPopUpButtonTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlPopUpButtonTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlPressGestureRecognizerTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlPressGestureRecognizerTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlRotationGestureRecognizerTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlRotationGestureRecognizerTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlScrollViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlScrollViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlSegmentedControlTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlSegmentedControlTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlSliderTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlSliderTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlSplitViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlSplitViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTabViewItemTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTabViewItemTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTabViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTabViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTableCellViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTableCellViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTableColumnTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTableColumnTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTableHeaderViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTableHeaderViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTableRowViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTableRowViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTableViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTableViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTextFieldTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTextFieldTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlTextViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlTextViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlToolbarItemTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlToolbarItemTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlToolbarTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlToolbarTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlViewTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlViewTesting_macOS.swift -------------------------------------------------------------------------------- /Sources/CwlViewsTesting/macOS/CwlWindowTesting_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Sources/CwlViewsTesting/macOS/CwlWindowTesting_macOS.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Info.plist -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/AboutTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/AboutTab.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/AlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/AlertView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/BarButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/BarButtonView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/ButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/ButtonView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/CatalogTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/CatalogTable.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/ControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/ControlView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/DatePickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/DatePickerView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/GestureRecognizerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/GestureRecognizerView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/ImageView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/LayersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/LayersView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/NavigationBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/NavigationBarView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/PageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/PageView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/PickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/PickerView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/ProgressView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/SearchBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/SearchBarView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/SegmentedControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/SegmentedControlView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/SliderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/SliderView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/SplitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/SplitView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/StepperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/StepperView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/SwitchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/SwitchView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/TabbedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/TabbedView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/TextFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/TextFieldView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/TextView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/WebView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_iOS/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_iOS/Sources/main.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/CwlViewsCatalog_macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/CwlViewsCatalog_macOS.entitlements -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Info.plist -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/AboutTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/AboutTab.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/ButtonRowControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/ButtonRowControl.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/ButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/ButtonView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/CatalogTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/CatalogTable.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/ControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/ControlView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/GestureRecognizerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/GestureRecognizerView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/ImageView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/LayersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/LayersView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/MainMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/MainMenu.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/SliderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/SliderView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/TabButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/TabButton.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/TextFieldView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/TextFieldView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/TextView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/WebView.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/Window.swift -------------------------------------------------------------------------------- /Tests/CwlViewsCatalog_macOS/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/CwlViewsCatalog_macOS/Sources/main.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Common/CwlLayerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/Common/CwlLayerTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/CwlTestableBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/CwlTestableBinder.swift -------------------------------------------------------------------------------- /Tests/UnitTests/Utils/CwlUnanticipatedErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/Utils/CwlUnanticipatedErrorTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/iOS/CwlApplication_iOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/iOS/CwlApplication_iOSTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/Info.plist -------------------------------------------------------------------------------- /Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/iOS/CwlViewsUnitTestHarness_iOS/main.swift -------------------------------------------------------------------------------- /Tests/UnitTests/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/iOS/Info.plist -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/CwlApplication_macOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/CwlApplication_macOSTests.swift -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/CwlViewsUnitTestHarness_macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/CwlViewsUnitTestHarness_macOS.entitlements -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/Info.plist -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/TestApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/TestApplication.swift -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/CwlViewsUnitTestHarness_macOS/main.swift -------------------------------------------------------------------------------- /Tests/UnitTests/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattgallagher/CwlViews/HEAD/Tests/UnitTests/macOS/Info.plist --------------------------------------------------------------------------------