├── .gitignore ├── .gitmodules ├── Demos ├── AnimationTraces │ ├── AppKitAnimationDemo.trace │ │ ├── Trace1.run │ │ │ └── 4C48231D-3012-454B-8C3F-014FEF176501-sampler.data │ │ ├── form.template │ │ ├── instrument_data │ │ │ └── 4C48231D-3012-454B-8C3F-014FEF176501 │ │ │ │ └── run_data │ │ │ │ └── 1.run.zip │ │ └── shared_data │ │ │ └── 1.run │ │ │ └── 02E3D685-9F6A-450D-93B8-B4D885AB9025.zip │ ├── README.md │ └── VelvetDemo.trace │ │ ├── Trace1.run │ │ └── 4C48231D-3012-454B-8C3F-014FEF176501-sampler.data │ │ ├── form.template │ │ ├── instrument_data │ │ └── 4C48231D-3012-454B-8C3F-014FEF176501 │ │ │ └── run_data │ │ │ └── 1.run.zip │ │ └── shared_data │ │ └── 1.run │ │ └── 2782111B-DE85-4408-889B-EB08351CCF82.zip ├── AppKitAnimationDemo │ ├── AppKitAnimationDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── AppKitAnimationDemo.xcscheme │ └── AppKitAnimationDemo │ │ ├── ADAppDelegate.h │ │ ├── ADAppDelegate.m │ │ ├── ADDraggingDestinationView.h │ │ ├── ADDraggingDestinationView.m │ │ ├── AppKitAnimationDemo-Info.plist │ │ ├── AppKitAnimationDemo-Prefix.pch │ │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ ├── lolcats.jpg │ │ └── main.m ├── Demos.xcworkspace │ └── contents.xcworkspacedata ├── TransitionTest │ ├── TransitionTest.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TransitionTest.xcscheme │ └── TransitionTest │ │ ├── Document.h │ │ ├── Document.m │ │ ├── EditorView.h │ │ ├── EditorView.m │ │ ├── Images │ │ ├── arrow.png │ │ ├── device.png │ │ ├── pattern.png │ │ └── screen.png │ │ ├── NavigationBar.h │ │ ├── NavigationBar.m │ │ ├── RotatingControl.h │ │ ├── RotatingControl.m │ │ ├── Screen.h │ │ ├── Screen.m │ │ ├── TransitionTest-Info.plist │ │ ├── TransitionTest-Prefix.pch │ │ ├── TreeView.h │ │ ├── TreeView.m │ │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── Document.xib │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ │ └── main.m └── VelvetDemo │ ├── VelvetDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── VelvetDemo.xcscheme │ ├── VelvetDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── MouseTrackingView.h │ ├── MouseTrackingView.m │ ├── SquareView.h │ ├── SquareView.m │ ├── VELDraggingDestinationView.h │ ├── VELDraggingDestinationView.m │ ├── VelvetDemo-Info.plist │ ├── VelvetDemo-Prefix.pch │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── iceberg.jpg │ ├── image.png │ ├── image@2x.png │ ├── lolcats.jpg │ └── main.m │ └── VelvetDemoTests │ ├── VelvetDemoTests-Info.plist │ ├── VelvetDemoTests.h │ ├── VelvetDemoTests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE.md ├── Libraries └── libextobjc │ ├── .gitignore │ ├── .gitmodules │ ├── README.md │ └── extobjc │ ├── Modules │ ├── EXTRuntimeExtensions.h │ ├── EXTRuntimeExtensions.m │ ├── EXTSafeCategory.h │ ├── EXTSafeCategory.m │ ├── EXTScope.h │ └── EXTScope.m │ ├── Tests │ ├── EXTRuntimeExtensionsTest.h │ ├── EXTRuntimeExtensionsTest.m │ ├── EXTSafeCategoryTest.h │ ├── EXTSafeCategoryTest.m │ ├── EXTScopeTest.h │ └── EXTScopeTest.m │ └── metamacros.h ├── README.md ├── Velvet.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Velvet.xcscheme ├── Velvet ├── AppKit+GeometryAdditions.h ├── AppKit+GeometryAdditions.m ├── CALayer+GeometryAdditions.h ├── CALayer+GeometryAdditions.m ├── CATransaction+BlockAdditions.h ├── CATransaction+BlockAdditions.m ├── CGBitmapContext+PixelFormatAdditions.h ├── CGBitmapContext+PixelFormatAdditions.m ├── CGContext+CoreAnimationAdditions.h ├── CGContext+CoreAnimationAdditions.m ├── CGGeometry+ConvenienceAdditions.h ├── CGGeometry+ConvenienceAdditions.m ├── NSCell+EditorAdditions.h ├── NSCell+EditorAdditions.m ├── NSClipView+VELScrollViewAdditions.h ├── NSClipView+VELScrollViewAdditions.m ├── NSColor+CoreGraphicsAdditions.h ├── NSColor+CoreGraphicsAdditions.m ├── NSEvent+ButtonStateAdditions.h ├── NSEvent+ButtonStateAdditions.m ├── NSImage+CoreGraphicsAdditions.h ├── NSImage+CoreGraphicsAdditions.m ├── NSImage+TransformationAdditions.h ├── NSImage+TransformationAdditions.m ├── NSObject+BindingsAdditions.h ├── NSObject+BindingsAdditions.m ├── NSPopUpButtonCell+EditorAdditions.h ├── NSPopUpButtonCell+EditorAdditions.m ├── NSResponder+ErrorPresentationAdditions.h ├── NSResponder+ErrorPresentationAdditions.m ├── NSResponder+ResponderChainAdditions.h ├── NSResponder+ResponderChainAdditions.m ├── NSScrollView+VELScrollViewAdditions.h ├── NSScrollView+VELScrollViewAdditions.m ├── NSTextView+AntialiasingAdditions.h ├── NSTextView+AntialiasingAdditions.m ├── NSVelvetHostView.h ├── NSVelvetHostView.m ├── NSVelvetView.h ├── NSVelvetView.m ├── NSVelvetViewPrivate.h ├── NSView+VELBridgedViewAdditions.h ├── NSView+VELBridgedViewAdditions.m ├── NSWindow+EventHandlingAdditions.h ├── NSWindow+EventHandlingAdditions.m ├── NSWindow+InitializationAdditions.h ├── NSWindow+InitializationAdditions.m ├── NSWindow+ResponderChainAdditions.h ├── NSWindow+ResponderChainAdditions.m ├── VELAnimationManager.h ├── VELAnimationManager.m ├── VELBridgedView.h ├── VELCAAction.h ├── VELCAAction.m ├── VELClickEventRecognizer.h ├── VELClickEventRecognizer.m ├── VELControl.h ├── VELControl.m ├── VELDragEventRecognizer.h ├── VELDragEventRecognizer.m ├── VELDraggingDestination.h ├── VELEventManager.h ├── VELEventManager.m ├── VELEventRecognizer.h ├── VELEventRecognizer.m ├── VELEventRecognizerPrivate.h ├── VELEventRecognizerProtected.h ├── VELHostView.h ├── VELHostView.m ├── VELImageView.h ├── VELImageView.m ├── VELKeyPress.h ├── VELKeyPress.m ├── VELKeyPressEventRecognizer.h ├── VELKeyPressEventRecognizer.m ├── VELLabel.h ├── VELLabel.m ├── VELNSView.h ├── VELNSView.m ├── VELNSViewController.h ├── VELNSViewController.m ├── VELNSViewLayer.h ├── VELNSViewLayer.m ├── VELNSViewPrivate.h ├── VELScrollView.h ├── VELView.h ├── VELView.m ├── VELViewController.h ├── VELViewController.m ├── VELViewLayer.h ├── VELViewLayer.m ├── VELViewPrivate.h ├── VELWindow.h ├── VELWindow.m ├── Velvet-Info.plist ├── Velvet-Prefix.pch ├── Velvet.h └── en.lproj │ └── InfoPlist.strings └── VelvetTests ├── CGGeometryAdditionsTests.m ├── NSClipViewAdditionsTests.m ├── NSImageAdditionsTests.m ├── NSObjectAdditionsTests.m ├── NSResponderAdditionsTests.m ├── NSVelvetHostViewTests.m ├── NSVelvetViewTests.m ├── NSViewAdditionsTests.m ├── NSWindowAdditionsTests.m ├── VELAppKitAdditionsTests.m ├── VELControlTests.h ├── VELControlTests.m ├── VELEventHandlingTests.m ├── VELEventRecognizerTests.m ├── VELImageViewTests.h ├── VELImageViewTests.m ├── VELKeyPressTests.m ├── VELLabelTests.h ├── VELLabelTests.m ├── VELNSViewControllerTests.m ├── VELNSViewTests.h ├── VELNSViewTests.m ├── VELViewControllerTests.m ├── VELViewDragAndDropTests.h ├── VELViewDragAndDropTests.m ├── VELViewTests.m ├── VELWindowTests.h ├── VELWindowTests.m ├── VelvetTests-Info.plist ├── VelvetTests-Prefix.pch ├── en.lproj └── InfoPlist.strings ├── high-density-test.png ├── testimage.jpg └── testnib.xib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/.gitmodules -------------------------------------------------------------------------------- /Demos/AnimationTraces/AppKitAnimationDemo.trace/Trace1.run/4C48231D-3012-454B-8C3F-014FEF176501-sampler.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/AppKitAnimationDemo.trace/Trace1.run/4C48231D-3012-454B-8C3F-014FEF176501-sampler.data -------------------------------------------------------------------------------- /Demos/AnimationTraces/AppKitAnimationDemo.trace/form.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/AppKitAnimationDemo.trace/form.template -------------------------------------------------------------------------------- /Demos/AnimationTraces/AppKitAnimationDemo.trace/instrument_data/4C48231D-3012-454B-8C3F-014FEF176501/run_data/1.run.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/AppKitAnimationDemo.trace/instrument_data/4C48231D-3012-454B-8C3F-014FEF176501/run_data/1.run.zip -------------------------------------------------------------------------------- /Demos/AnimationTraces/AppKitAnimationDemo.trace/shared_data/1.run/02E3D685-9F6A-450D-93B8-B4D885AB9025.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/AppKitAnimationDemo.trace/shared_data/1.run/02E3D685-9F6A-450D-93B8-B4D885AB9025.zip -------------------------------------------------------------------------------- /Demos/AnimationTraces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/README.md -------------------------------------------------------------------------------- /Demos/AnimationTraces/VelvetDemo.trace/Trace1.run/4C48231D-3012-454B-8C3F-014FEF176501-sampler.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/VelvetDemo.trace/Trace1.run/4C48231D-3012-454B-8C3F-014FEF176501-sampler.data -------------------------------------------------------------------------------- /Demos/AnimationTraces/VelvetDemo.trace/form.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/VelvetDemo.trace/form.template -------------------------------------------------------------------------------- /Demos/AnimationTraces/VelvetDemo.trace/instrument_data/4C48231D-3012-454B-8C3F-014FEF176501/run_data/1.run.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/VelvetDemo.trace/instrument_data/4C48231D-3012-454B-8C3F-014FEF176501/run_data/1.run.zip -------------------------------------------------------------------------------- /Demos/AnimationTraces/VelvetDemo.trace/shared_data/1.run/2782111B-DE85-4408-889B-EB08351CCF82.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AnimationTraces/VelvetDemo.trace/shared_data/1.run/2782111B-DE85-4408-889B-EB08351CCF82.zip -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo.xcodeproj/xcshareddata/xcschemes/AppKitAnimationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo.xcodeproj/xcshareddata/xcschemes/AppKitAnimationDemo.xcscheme -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADAppDelegate.h -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADAppDelegate.m -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADDraggingDestinationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADDraggingDestinationView.h -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADDraggingDestinationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/ADDraggingDestinationView.m -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/AppKitAnimationDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/AppKitAnimationDemo-Info.plist -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/AppKitAnimationDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/AppKitAnimationDemo-Prefix.pch -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/lolcats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/lolcats.jpg -------------------------------------------------------------------------------- /Demos/AppKitAnimationDemo/AppKitAnimationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/AppKitAnimationDemo/AppKitAnimationDemo/main.m -------------------------------------------------------------------------------- /Demos/Demos.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/Demos.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest.xcodeproj/xcshareddata/xcschemes/TransitionTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest.xcodeproj/xcshareddata/xcschemes/TransitionTest.xcscheme -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Document.h -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Document.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Document.m -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/EditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/EditorView.h -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/EditorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/EditorView.m -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Images/arrow.png -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Images/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Images/device.png -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Images/pattern.png -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Images/screen.png -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/NavigationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/NavigationBar.h -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/NavigationBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/NavigationBar.m -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/RotatingControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/RotatingControl.h -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/RotatingControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/RotatingControl.m -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Screen.h -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/Screen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/Screen.m -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/TransitionTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/TransitionTest-Info.plist -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/TransitionTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/TransitionTest-Prefix.pch -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/TreeView.h -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/TreeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/TreeView.m -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/en.lproj/Document.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/en.lproj/Document.xib -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Demos/TransitionTest/TransitionTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/TransitionTest/TransitionTest/main.m -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo.xcodeproj/xcshareddata/xcschemes/VelvetDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo.xcodeproj/xcshareddata/xcschemes/VelvetDemo.xcscheme -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/AppDelegate.h -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/AppDelegate.m -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/MouseTrackingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/MouseTrackingView.h -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/MouseTrackingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/MouseTrackingView.m -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/SquareView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/SquareView.h -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/SquareView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/SquareView.m -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/VELDraggingDestinationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/VELDraggingDestinationView.h -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/VELDraggingDestinationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/VELDraggingDestinationView.m -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/VelvetDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/VelvetDemo-Info.plist -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/VelvetDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/VelvetDemo-Prefix.pch -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/iceberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/iceberg.jpg -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/image.png -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/image@2x.png -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/lolcats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/lolcats.jpg -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemo/main.m -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemoTests/VelvetDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemoTests/VelvetDemoTests-Info.plist -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemoTests/VelvetDemoTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemoTests/VelvetDemoTests.h -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemoTests/VelvetDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Demos/VelvetDemo/VelvetDemoTests/VelvetDemoTests.m -------------------------------------------------------------------------------- /Demos/VelvetDemo/VelvetDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Libraries/libextobjc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/.gitignore -------------------------------------------------------------------------------- /Libraries/libextobjc/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/.gitmodules -------------------------------------------------------------------------------- /Libraries/libextobjc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/README.md -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Modules/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Modules/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Modules/EXTRuntimeExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Modules/EXTRuntimeExtensions.m -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Modules/EXTSafeCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Modules/EXTSafeCategory.h -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Modules/EXTSafeCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Modules/EXTSafeCategory.m -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Modules/EXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Modules/EXTScope.h -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Modules/EXTScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Modules/EXTScope.m -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Tests/EXTRuntimeExtensionsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Tests/EXTRuntimeExtensionsTest.h -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Tests/EXTRuntimeExtensionsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Tests/EXTRuntimeExtensionsTest.m -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Tests/EXTSafeCategoryTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Tests/EXTSafeCategoryTest.h -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Tests/EXTSafeCategoryTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Tests/EXTSafeCategoryTest.m -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Tests/EXTScopeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Tests/EXTScopeTest.h -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/Tests/EXTScopeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/Tests/EXTScopeTest.m -------------------------------------------------------------------------------- /Libraries/libextobjc/extobjc/metamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Libraries/libextobjc/extobjc/metamacros.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/README.md -------------------------------------------------------------------------------- /Velvet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Velvet.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Velvet.xcodeproj/xcshareddata/xcschemes/Velvet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet.xcodeproj/xcshareddata/xcschemes/Velvet.xcscheme -------------------------------------------------------------------------------- /Velvet/AppKit+GeometryAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/AppKit+GeometryAdditions.h -------------------------------------------------------------------------------- /Velvet/AppKit+GeometryAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/AppKit+GeometryAdditions.m -------------------------------------------------------------------------------- /Velvet/CALayer+GeometryAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CALayer+GeometryAdditions.h -------------------------------------------------------------------------------- /Velvet/CALayer+GeometryAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CALayer+GeometryAdditions.m -------------------------------------------------------------------------------- /Velvet/CATransaction+BlockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CATransaction+BlockAdditions.h -------------------------------------------------------------------------------- /Velvet/CATransaction+BlockAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CATransaction+BlockAdditions.m -------------------------------------------------------------------------------- /Velvet/CGBitmapContext+PixelFormatAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CGBitmapContext+PixelFormatAdditions.h -------------------------------------------------------------------------------- /Velvet/CGBitmapContext+PixelFormatAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CGBitmapContext+PixelFormatAdditions.m -------------------------------------------------------------------------------- /Velvet/CGContext+CoreAnimationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CGContext+CoreAnimationAdditions.h -------------------------------------------------------------------------------- /Velvet/CGContext+CoreAnimationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CGContext+CoreAnimationAdditions.m -------------------------------------------------------------------------------- /Velvet/CGGeometry+ConvenienceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CGGeometry+ConvenienceAdditions.h -------------------------------------------------------------------------------- /Velvet/CGGeometry+ConvenienceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/CGGeometry+ConvenienceAdditions.m -------------------------------------------------------------------------------- /Velvet/NSCell+EditorAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSCell+EditorAdditions.h -------------------------------------------------------------------------------- /Velvet/NSCell+EditorAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSCell+EditorAdditions.m -------------------------------------------------------------------------------- /Velvet/NSClipView+VELScrollViewAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSClipView+VELScrollViewAdditions.h -------------------------------------------------------------------------------- /Velvet/NSClipView+VELScrollViewAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSClipView+VELScrollViewAdditions.m -------------------------------------------------------------------------------- /Velvet/NSColor+CoreGraphicsAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSColor+CoreGraphicsAdditions.h -------------------------------------------------------------------------------- /Velvet/NSColor+CoreGraphicsAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSColor+CoreGraphicsAdditions.m -------------------------------------------------------------------------------- /Velvet/NSEvent+ButtonStateAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSEvent+ButtonStateAdditions.h -------------------------------------------------------------------------------- /Velvet/NSEvent+ButtonStateAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSEvent+ButtonStateAdditions.m -------------------------------------------------------------------------------- /Velvet/NSImage+CoreGraphicsAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSImage+CoreGraphicsAdditions.h -------------------------------------------------------------------------------- /Velvet/NSImage+CoreGraphicsAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSImage+CoreGraphicsAdditions.m -------------------------------------------------------------------------------- /Velvet/NSImage+TransformationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSImage+TransformationAdditions.h -------------------------------------------------------------------------------- /Velvet/NSImage+TransformationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSImage+TransformationAdditions.m -------------------------------------------------------------------------------- /Velvet/NSObject+BindingsAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSObject+BindingsAdditions.h -------------------------------------------------------------------------------- /Velvet/NSObject+BindingsAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSObject+BindingsAdditions.m -------------------------------------------------------------------------------- /Velvet/NSPopUpButtonCell+EditorAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSPopUpButtonCell+EditorAdditions.h -------------------------------------------------------------------------------- /Velvet/NSPopUpButtonCell+EditorAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSPopUpButtonCell+EditorAdditions.m -------------------------------------------------------------------------------- /Velvet/NSResponder+ErrorPresentationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSResponder+ErrorPresentationAdditions.h -------------------------------------------------------------------------------- /Velvet/NSResponder+ErrorPresentationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSResponder+ErrorPresentationAdditions.m -------------------------------------------------------------------------------- /Velvet/NSResponder+ResponderChainAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSResponder+ResponderChainAdditions.h -------------------------------------------------------------------------------- /Velvet/NSResponder+ResponderChainAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSResponder+ResponderChainAdditions.m -------------------------------------------------------------------------------- /Velvet/NSScrollView+VELScrollViewAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSScrollView+VELScrollViewAdditions.h -------------------------------------------------------------------------------- /Velvet/NSScrollView+VELScrollViewAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSScrollView+VELScrollViewAdditions.m -------------------------------------------------------------------------------- /Velvet/NSTextView+AntialiasingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSTextView+AntialiasingAdditions.h -------------------------------------------------------------------------------- /Velvet/NSTextView+AntialiasingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSTextView+AntialiasingAdditions.m -------------------------------------------------------------------------------- /Velvet/NSVelvetHostView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSVelvetHostView.h -------------------------------------------------------------------------------- /Velvet/NSVelvetHostView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSVelvetHostView.m -------------------------------------------------------------------------------- /Velvet/NSVelvetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSVelvetView.h -------------------------------------------------------------------------------- /Velvet/NSVelvetView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSVelvetView.m -------------------------------------------------------------------------------- /Velvet/NSVelvetViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSVelvetViewPrivate.h -------------------------------------------------------------------------------- /Velvet/NSView+VELBridgedViewAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSView+VELBridgedViewAdditions.h -------------------------------------------------------------------------------- /Velvet/NSView+VELBridgedViewAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSView+VELBridgedViewAdditions.m -------------------------------------------------------------------------------- /Velvet/NSWindow+EventHandlingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSWindow+EventHandlingAdditions.h -------------------------------------------------------------------------------- /Velvet/NSWindow+EventHandlingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSWindow+EventHandlingAdditions.m -------------------------------------------------------------------------------- /Velvet/NSWindow+InitializationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSWindow+InitializationAdditions.h -------------------------------------------------------------------------------- /Velvet/NSWindow+InitializationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSWindow+InitializationAdditions.m -------------------------------------------------------------------------------- /Velvet/NSWindow+ResponderChainAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSWindow+ResponderChainAdditions.h -------------------------------------------------------------------------------- /Velvet/NSWindow+ResponderChainAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/NSWindow+ResponderChainAdditions.m -------------------------------------------------------------------------------- /Velvet/VELAnimationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELAnimationManager.h -------------------------------------------------------------------------------- /Velvet/VELAnimationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELAnimationManager.m -------------------------------------------------------------------------------- /Velvet/VELBridgedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELBridgedView.h -------------------------------------------------------------------------------- /Velvet/VELCAAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELCAAction.h -------------------------------------------------------------------------------- /Velvet/VELCAAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELCAAction.m -------------------------------------------------------------------------------- /Velvet/VELClickEventRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELClickEventRecognizer.h -------------------------------------------------------------------------------- /Velvet/VELClickEventRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELClickEventRecognizer.m -------------------------------------------------------------------------------- /Velvet/VELControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELControl.h -------------------------------------------------------------------------------- /Velvet/VELControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELControl.m -------------------------------------------------------------------------------- /Velvet/VELDragEventRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELDragEventRecognizer.h -------------------------------------------------------------------------------- /Velvet/VELDragEventRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELDragEventRecognizer.m -------------------------------------------------------------------------------- /Velvet/VELDraggingDestination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELDraggingDestination.h -------------------------------------------------------------------------------- /Velvet/VELEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELEventManager.h -------------------------------------------------------------------------------- /Velvet/VELEventManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELEventManager.m -------------------------------------------------------------------------------- /Velvet/VELEventRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELEventRecognizer.h -------------------------------------------------------------------------------- /Velvet/VELEventRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELEventRecognizer.m -------------------------------------------------------------------------------- /Velvet/VELEventRecognizerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELEventRecognizerPrivate.h -------------------------------------------------------------------------------- /Velvet/VELEventRecognizerProtected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELEventRecognizerProtected.h -------------------------------------------------------------------------------- /Velvet/VELHostView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELHostView.h -------------------------------------------------------------------------------- /Velvet/VELHostView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELHostView.m -------------------------------------------------------------------------------- /Velvet/VELImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELImageView.h -------------------------------------------------------------------------------- /Velvet/VELImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELImageView.m -------------------------------------------------------------------------------- /Velvet/VELKeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELKeyPress.h -------------------------------------------------------------------------------- /Velvet/VELKeyPress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELKeyPress.m -------------------------------------------------------------------------------- /Velvet/VELKeyPressEventRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELKeyPressEventRecognizer.h -------------------------------------------------------------------------------- /Velvet/VELKeyPressEventRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELKeyPressEventRecognizer.m -------------------------------------------------------------------------------- /Velvet/VELLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELLabel.h -------------------------------------------------------------------------------- /Velvet/VELLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELLabel.m -------------------------------------------------------------------------------- /Velvet/VELNSView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELNSView.h -------------------------------------------------------------------------------- /Velvet/VELNSView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELNSView.m -------------------------------------------------------------------------------- /Velvet/VELNSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELNSViewController.h -------------------------------------------------------------------------------- /Velvet/VELNSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELNSViewController.m -------------------------------------------------------------------------------- /Velvet/VELNSViewLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELNSViewLayer.h -------------------------------------------------------------------------------- /Velvet/VELNSViewLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELNSViewLayer.m -------------------------------------------------------------------------------- /Velvet/VELNSViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELNSViewPrivate.h -------------------------------------------------------------------------------- /Velvet/VELScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELScrollView.h -------------------------------------------------------------------------------- /Velvet/VELView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELView.h -------------------------------------------------------------------------------- /Velvet/VELView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELView.m -------------------------------------------------------------------------------- /Velvet/VELViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELViewController.h -------------------------------------------------------------------------------- /Velvet/VELViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELViewController.m -------------------------------------------------------------------------------- /Velvet/VELViewLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELViewLayer.h -------------------------------------------------------------------------------- /Velvet/VELViewLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELViewLayer.m -------------------------------------------------------------------------------- /Velvet/VELViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELViewPrivate.h -------------------------------------------------------------------------------- /Velvet/VELWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELWindow.h -------------------------------------------------------------------------------- /Velvet/VELWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/VELWindow.m -------------------------------------------------------------------------------- /Velvet/Velvet-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/Velvet-Info.plist -------------------------------------------------------------------------------- /Velvet/Velvet-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/Velvet-Prefix.pch -------------------------------------------------------------------------------- /Velvet/Velvet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/Velvet/Velvet.h -------------------------------------------------------------------------------- /Velvet/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /VelvetTests/CGGeometryAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/CGGeometryAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/NSClipViewAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSClipViewAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/NSImageAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSImageAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/NSObjectAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSObjectAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/NSResponderAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSResponderAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/NSVelvetHostViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSVelvetHostViewTests.m -------------------------------------------------------------------------------- /VelvetTests/NSVelvetViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSVelvetViewTests.m -------------------------------------------------------------------------------- /VelvetTests/NSViewAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSViewAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/NSWindowAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/NSWindowAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/VELAppKitAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELAppKitAdditionsTests.m -------------------------------------------------------------------------------- /VelvetTests/VELControlTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELControlTests.h -------------------------------------------------------------------------------- /VelvetTests/VELControlTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELControlTests.m -------------------------------------------------------------------------------- /VelvetTests/VELEventHandlingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELEventHandlingTests.m -------------------------------------------------------------------------------- /VelvetTests/VELEventRecognizerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELEventRecognizerTests.m -------------------------------------------------------------------------------- /VelvetTests/VELImageViewTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELImageViewTests.h -------------------------------------------------------------------------------- /VelvetTests/VELImageViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELImageViewTests.m -------------------------------------------------------------------------------- /VelvetTests/VELKeyPressTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELKeyPressTests.m -------------------------------------------------------------------------------- /VelvetTests/VELLabelTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELLabelTests.h -------------------------------------------------------------------------------- /VelvetTests/VELLabelTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELLabelTests.m -------------------------------------------------------------------------------- /VelvetTests/VELNSViewControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELNSViewControllerTests.m -------------------------------------------------------------------------------- /VelvetTests/VELNSViewTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELNSViewTests.h -------------------------------------------------------------------------------- /VelvetTests/VELNSViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELNSViewTests.m -------------------------------------------------------------------------------- /VelvetTests/VELViewControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELViewControllerTests.m -------------------------------------------------------------------------------- /VelvetTests/VELViewDragAndDropTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELViewDragAndDropTests.h -------------------------------------------------------------------------------- /VelvetTests/VELViewDragAndDropTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELViewDragAndDropTests.m -------------------------------------------------------------------------------- /VelvetTests/VELViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELViewTests.m -------------------------------------------------------------------------------- /VelvetTests/VELWindowTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELWindowTests.h -------------------------------------------------------------------------------- /VelvetTests/VELWindowTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VELWindowTests.m -------------------------------------------------------------------------------- /VelvetTests/VelvetTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VelvetTests-Info.plist -------------------------------------------------------------------------------- /VelvetTests/VelvetTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/VelvetTests-Prefix.pch -------------------------------------------------------------------------------- /VelvetTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /VelvetTests/high-density-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/high-density-test.png -------------------------------------------------------------------------------- /VelvetTests/testimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/testimage.jpg -------------------------------------------------------------------------------- /VelvetTests/testnib.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitswift/Velvet/HEAD/VelvetTests/testnib.xib --------------------------------------------------------------------------------