├── .github └── workflows │ └── swift.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Package.swift ├── Package@swift-5.1.swift ├── Package@swift-5.swift ├── README.md ├── Sources └── UXKit │ ├── AppKit │ ├── NSTableViewCell.swift │ ├── UXCollectionView-AppKit.swift │ ├── UXFont-AppKit.swift │ ├── UXGestures-AppKit.swift │ ├── UXGraphics-AppKit.swift │ ├── UXLayout-AppKit.swift │ ├── UXTableView-AppKit.swift │ ├── UXTargetAction-AppKit.swift │ └── UXView-AppKit.swift │ ├── Common │ ├── UXAlert.swift │ ├── UXGestureActions.swift │ ├── UXIndexPath.swift │ ├── UXObjectControl.swift │ ├── UXObjectPresentingType.swift │ ├── UXPasteboard.swift │ ├── UXTextView.swift │ ├── UXViewController.swift │ └── UXViewType.swift │ └── UIKit │ ├── NSSound.swift │ ├── UXCollectionView-UIKit.swift │ ├── UXFont-UIKit.swift │ ├── UXGestures-UIKit.swift │ ├── UXGraphics-UIKit.swift │ ├── UXLayout-UIKit.swift │ ├── UXTableView-UIKit.swift │ ├── UXTargetAction-UIKit.swift │ └── UXView-UIKit.swift ├── UXKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── UXKit-AllPlatforms.xcscheme │ ├── UXKit-AppKit.xcscheme │ └── UXKit-UIKit.xcscheme └── xcconfig ├── AppKitBase.xcconfig ├── Base.xcconfig ├── Debug.xcconfig ├── MacStaticLib.xcconfig ├── MobileStaticLib.xcconfig ├── Release.xcconfig ├── StaticLib.xcconfig └── UIKitBase.xcconfig /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Package@swift-5.1.swift -------------------------------------------------------------------------------- /Package@swift-5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Package@swift-5.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/NSTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/NSTableViewCell.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXCollectionView-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXCollectionView-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXFont-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXFont-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXGestures-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXGestures-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXGraphics-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXGraphics-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXLayout-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXLayout-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXTableView-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXTableView-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXTargetAction-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXTargetAction-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/AppKit/UXView-AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/AppKit/UXView-AppKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXAlert.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXGestureActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXGestureActions.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXIndexPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXIndexPath.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXObjectControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXObjectControl.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXObjectPresentingType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXObjectPresentingType.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXPasteboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXPasteboard.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXTextView.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXViewController.swift -------------------------------------------------------------------------------- /Sources/UXKit/Common/UXViewType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/Common/UXViewType.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/NSSound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/NSSound.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXCollectionView-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXCollectionView-UIKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXFont-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXFont-UIKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXGestures-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXGestures-UIKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXGraphics-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXGraphics-UIKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXLayout-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXLayout-UIKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXTableView-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXTableView-UIKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXTargetAction-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXTargetAction-UIKit.swift -------------------------------------------------------------------------------- /Sources/UXKit/UIKit/UXView-UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/Sources/UXKit/UIKit/UXView-UIKit.swift -------------------------------------------------------------------------------- /UXKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/UXKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UXKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/UXKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UXKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/UXKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /UXKit.xcodeproj/xcshareddata/xcschemes/UXKit-AllPlatforms.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/UXKit.xcodeproj/xcshareddata/xcschemes/UXKit-AllPlatforms.xcscheme -------------------------------------------------------------------------------- /UXKit.xcodeproj/xcshareddata/xcschemes/UXKit-AppKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/UXKit.xcodeproj/xcshareddata/xcschemes/UXKit-AppKit.xcscheme -------------------------------------------------------------------------------- /UXKit.xcodeproj/xcshareddata/xcschemes/UXKit-UIKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/UXKit.xcodeproj/xcshareddata/xcschemes/UXKit-UIKit.xcscheme -------------------------------------------------------------------------------- /xcconfig/AppKitBase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/AppKitBase.xcconfig -------------------------------------------------------------------------------- /xcconfig/Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/Base.xcconfig -------------------------------------------------------------------------------- /xcconfig/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/Debug.xcconfig -------------------------------------------------------------------------------- /xcconfig/MacStaticLib.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/MacStaticLib.xcconfig -------------------------------------------------------------------------------- /xcconfig/MobileStaticLib.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/MobileStaticLib.xcconfig -------------------------------------------------------------------------------- /xcconfig/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/Release.xcconfig -------------------------------------------------------------------------------- /xcconfig/StaticLib.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/StaticLib.xcconfig -------------------------------------------------------------------------------- /xcconfig/UIKitBase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeeZide/UXKit/HEAD/xcconfig/UIKitBase.xcconfig --------------------------------------------------------------------------------