├── .clang-format ├── .gitignore ├── .hgignore ├── AppKit ├── AppKit.h ├── AppKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── AppKit.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── AppKit-Windows-i386.xcscheme ├── AppKitExport.h ├── CoreData_ │ ├── NSPersistentDocument.h │ ├── NSPersistentDocument.m │ ├── _NSManagedProxy.h │ └── _NSManagedProxy.m ├── Info.plist ├── NSAccessibility.h ├── NSAccessibility.m ├── NSActionCell.h ├── NSActionCell.m ├── NSActionTemplate.ai ├── NSActionTemplate.pdf ├── NSAddTemplate.ai ├── NSAddTemplate.pdf ├── NSAdvanced.ai ├── NSAdvanced.pdf ├── NSAffineTransform.h ├── NSAffineTransform.m ├── NSAlert.h ├── NSAlert.m ├── NSAlertPanel.h ├── NSAlertPanel.m ├── NSAlertPanelExclamation.tiff ├── NSAnimation │ ├── NSAnimation.h │ ├── NSAnimation.m │ ├── NSAnimationContext.h │ ├── NSAnimationContext.m │ ├── NSViewAnimation.h │ └── NSViewAnimation.m ├── NSApplication.h ├── NSApplication.m ├── NSAttributedString.h ├── NSAttributedString.m ├── NSBezierPath.h ├── NSBezierPath.m ├── NSBitmapImageRep-Private.h ├── NSBitmapImageRep.h ├── NSBitmapImageRep.m ├── NSBox.h ├── NSBox.m ├── NSBrowser.h ├── NSBrowser.m ├── NSBrowserCell.h ├── NSBrowserCell.m ├── NSBrowserCellArrow.tiff ├── NSButton.h ├── NSButton.m ├── NSButtonCell.h ├── NSButtonCell.m ├── NSButtonCell_disclosure_highlighted.tif ├── NSButtonCell_disclosure_normal.tif ├── NSButtonCell_disclosure_selected.tif ├── NSCIImageRep.h ├── NSCIImageRep.m ├── NSCachedImageRep.h ├── NSCachedImageRep.m ├── NSCell.h ├── NSCell.m ├── NSCellUndoManager.h ├── NSCellUndoManager.m ├── NSClipView.h ├── NSClipView.m ├── NSCollectionView │ ├── NSCollectionView.h │ ├── NSCollectionView.m │ ├── NSCollectionViewItem.h │ └── NSCollectionViewItem.m ├── NSColor.subproj │ ├── NSColor.h │ ├── NSColor.m │ ├── NSColor_CGColor.h │ ├── NSColor_CGColor.m │ ├── NSColor_catalog.h │ ├── NSColor_catalog.m │ └── conversions.h ├── NSColorList.h ├── NSColorList.m ├── NSColorPanel.h ├── NSColorPanel.m ├── NSColorPicker.subproj │ ├── NSBrowserCellColorList.h │ ├── NSBrowserCellColorList.m │ ├── NSColorPicker.h │ ├── NSColorPicker.m │ ├── NSColorPickerColorList.h │ ├── NSColorPickerColorList.m │ ├── NSColorPickerColorList.tiff │ ├── NSColorPickerListIcon.png │ ├── NSColorPickerSliders.h │ ├── NSColorPickerSliders.m │ ├── NSColorPickerSlidersCMYK.tiff │ ├── NSColorPickerSlidersGray.tiff │ ├── NSColorPickerSlidersHSB.tiff │ ├── NSColorPickerSlidersIcon.png │ ├── NSColorPickerSlidersRGB.tiff │ ├── NSColorPickerWheel.h │ ├── NSColorPickerWheel.m │ ├── NSColorPickerWheelIcon.png │ ├── NSColorPickerWheelView.h │ ├── NSColorPickerWheelView.m │ ├── NSColorWheel.png │ ├── de.lproj │ │ ├── NSColorPickerColorList.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ ├── NSColorPickerSliders.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ │ └── NSColorPickerWheel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── en.lproj │ │ ├── NSColorPickerColorList.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── NSColorPickerSliders.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── NSColorPickerWheel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ └── fr.lproj │ │ ├── NSColorPickerColorList.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ │ ├── NSColorPickerSliders.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ │ └── NSColorPickerWheel.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── NSColorSpace.h ├── NSColorSpace.m ├── NSColorWell.h ├── NSColorWell.m ├── NSComboBox.h ├── NSComboBox.m ├── NSComboBoxCell.h ├── NSComboBoxCell.m ├── NSComboBoxCellDown.tiff ├── NSComboBoxView.h ├── NSComboBoxView.m ├── NSComboBoxWindow.h ├── NSComboBoxWindow.m ├── NSControl.h ├── NSControl.m ├── NSController │ ├── NSArrayController.h │ ├── NSArrayController.m │ ├── NSController.h │ ├── NSController.m │ ├── NSControllerMarker.h │ ├── NSControllerMarker.m │ ├── NSControllerSelectionProxy.h │ ├── NSControllerSelectionProxy.m │ ├── NSDictionaryController.h │ ├── NSDictionaryController.m │ ├── NSObjectController.h │ ├── NSObjectController.m │ ├── NSObservationProxy.h │ ├── NSObservationProxy.m │ ├── NSTreeController.h │ ├── NSTreeController.m │ ├── NSUserDefaultsController.h │ ├── NSUserDefaultsController.m │ ├── NSUserDefaultsControllerProxy.h │ ├── NSUserDefaultsControllerProxy.m │ ├── _NSControllerArray.h │ └── _NSControllerArray.m ├── NSCursor.h ├── NSCursor.m ├── NSCursorRect.h ├── NSCursorRect.m ├── NSCustomImageRep.h ├── NSCustomImageRep.m ├── NSDatePicker.h ├── NSDatePicker.m ├── NSDatePickerCell.h ├── NSDatePickerCell.m ├── NSDisplay.h ├── NSDisplay.m ├── NSDockTile.h ├── NSDockTile.m ├── NSDocument.h ├── NSDocument.m ├── NSDocumentController.h ├── NSDocumentController.m ├── NSDragging.h ├── NSDraggingManager.h ├── NSDraggingManager.m ├── NSDrawer.subproj │ ├── NSDrawer.h │ ├── NSDrawer.m │ ├── NSDrawerWindow.h │ └── NSDrawerWindow.m ├── NSEPSImageRep.h ├── NSEPSImageRep.m ├── NSEnterFullScreenTemplate.ai ├── NSEnterFullScreenTemplate.pdf ├── NSErrors.h ├── NSEvent.subproj │ ├── NSEvent.h │ ├── NSEvent.m │ ├── NSEvent_CoreGraphics.h │ ├── NSEvent_CoreGraphics.m │ ├── NSEvent_keyboard.h │ ├── NSEvent_keyboard.m │ ├── NSEvent_mouse.h │ ├── NSEvent_mouse.m │ ├── NSEvent_other.h │ ├── NSEvent_other.m │ ├── NSEvent_periodic.h │ └── NSEvent_periodic.m ├── NSExitFullScreenTemplate.ai ├── NSExitFullScreenTemplate.pdf ├── NSFileWrapper.h ├── NSFileWrapper.m ├── NSFont.h ├── NSFont.m ├── NSFontDescriptor.h ├── NSFontDescriptor.m ├── NSFontFamily.h ├── NSFontFamily.m ├── NSFontManager.h ├── NSFontManager.m ├── NSFontMetric.h ├── NSFontMetric.m ├── NSFontPanel.h ├── NSFontPanel.m ├── NSFontPanelCell.h ├── NSFontPanelCell.m ├── NSFontTypeface.h ├── NSFontTypeface.m ├── NSForm.h ├── NSForm.m ├── NSFormCell.h ├── NSFormCell.m ├── NSGlyphGenerator.h ├── NSGlyphGenerator.m ├── NSGlyphInfo.h ├── NSGlyphInfo.m ├── NSGoLeftTemplate.ai ├── NSGoLeftTemplate.pdf ├── NSGoRightTemplate.ai ├── NSGoRightTemplate.pdf ├── NSGradient.h ├── NSGradient.m ├── NSGraphics.h ├── NSGraphics.m ├── NSGraphicsContext.h ├── NSGraphicsContext.m ├── NSGraphicsContextFunctions.h ├── NSHelpManager.h ├── NSHelpManager.m ├── NSHighlightedBrowserCellArrow.tiff ├── NSHighlightedRadioButton.tiff ├── NSHighlightedSwitch.tiff ├── NSImage.h ├── NSImage.m ├── NSImageCell.h ├── NSImageCell.m ├── NSImageRep.h ├── NSImageRep.m ├── NSImageView.h ├── NSImageView.m ├── NSInfo.ai ├── NSInfo.pdf ├── NSInterfacePart │ ├── NSGraphicsStyle.h │ ├── NSGraphicsStyle.m │ ├── NSInterfaceGraphics.h │ ├── NSInterfaceGraphics.m │ ├── NSInterfacePart.h │ ├── NSInterfacePart.m │ ├── NSInterfacePartAttributedString.h │ ├── NSInterfacePartAttributedString.m │ ├── NSInterfacePartDisabledAttributedString.h │ └── NSInterfacePartDisabledAttributedString.m ├── NSInterfaceStyle.h ├── NSInterfaceStyle.m ├── NSInvalidDataFreestandingTemplate.ai ├── NSInvalidDataFreestandingTemplate.pdf ├── NSKeyValueBinding │ ├── NSBinder.h │ ├── NSBinder.m │ ├── NSCachingBinder.h │ ├── NSCachingBinder.m │ ├── NSKVOBinder.h │ ├── NSKVOBinder.m │ ├── NSMultipleValueBinder.h │ ├── NSMultipleValueBinder.m │ ├── NSObject+BindingSupport.h │ ├── NSObject+BindingSupport.m │ ├── NSTextBinder.h │ ├── NSTextBinder.m │ ├── NSTextFieldBinder.h │ ├── NSTextFieldBinder.m │ └── defaultBindingOptions.plist ├── NSKeyboardBinding │ ├── NSKeyboardBinding.h │ ├── NSKeyboardBinding.m │ ├── NSKeyboardBindingManager.h │ ├── NSKeyboardBindingManager.m │ └── StandardKeyBindings.keybindings ├── NSLevelIndicator.h ├── NSLevelIndicator.m ├── NSLevelIndicatorCell.h ├── NSLevelIndicatorCell.m ├── NSLockLockedTemplate.ai ├── NSLockLockedTemplate.pdf ├── NSLockUnlockedTemplate.ai ├── NSLockUnlockedTemplate.pdf ├── NSMatrix.h ├── NSMatrix.m ├── NSMeasurementUnit.h ├── NSMeasurementUnit.m ├── NSMenu.subproj │ ├── NSMainMenuView.h │ ├── NSMainMenuView.m │ ├── NSMenu.h │ ├── NSMenu.m │ ├── NSMenuArrow.tiff │ ├── NSMenuItem.h │ ├── NSMenuItem.m │ ├── NSMenuView.h │ ├── NSMenuView.m │ ├── NSMenuViewDoubleRightArrow.tiff │ ├── NSMenuViewDoubleRightArrowGray.tiff │ ├── NSMenuWindow.h │ ├── NSMenuWindow.m │ ├── NSOverflowMenuView.h │ ├── NSOverflowMenuView.m │ ├── NSSubmenuView.h │ └── NSSubmenuView.m ├── NSModalSessionX.h ├── NSModalSessionX.m ├── NSMutableAttributedString.h ├── NSMutableAttributedString.m ├── NSMutableParagraphStyle.h ├── NSMutableParagraphStyle.m ├── NSOpenGL │ ├── NSOpenGL.h │ ├── NSOpenGLContext.h │ ├── NSOpenGLContext.m │ ├── NSOpenGLDrawable.h │ ├── NSOpenGLDrawable.m │ ├── NSOpenGLPixelBuffer.h │ ├── NSOpenGLPixelBuffer.m │ ├── NSOpenGLPixelFormat.h │ ├── NSOpenGLPixelFormat.m │ ├── NSOpenGLView.h │ └── NSOpenGLView.m ├── NSOpenPanel.h ├── NSOpenPanel.m ├── NSOutlineView.h ├── NSOutlineView.m ├── NSPDFImageRep.h ├── NSPDFImageRep.m ├── NSPageLayout.h ├── NSPageLayout.m ├── NSPanel.h ├── NSPanel.m ├── NSParagraphStyle.h ├── NSParagraphStyle.m ├── NSPasteboard.h ├── NSPasteboard.m ├── NSPathCell.h ├── NSPathCell.m ├── NSPathComponentCell.h ├── NSPathComponentCell.m ├── NSPathControl.h ├── NSPathControl.m ├── NSPoof.png ├── NSPoofAnimation.h ├── NSPoofAnimation.m ├── NSPopUpButton.h ├── NSPopUpButton.m ├── NSPopUpButtonCell.h ├── NSPopUpButtonCell.m ├── NSPopUpButtonCellPopUp.tiff ├── NSPopUpButtonCellPullDown.tiff ├── NSPopUpView.h ├── NSPopUpView.m ├── NSPopUpWindow.h ├── NSPopUpWindow.m ├── NSPredicateEditor.h ├── NSPredicateEditor.m ├── NSPredicateEditorRowTemplate.h ├── NSPredicateEditorRowTemplate.m ├── NSPreferencesGeneral.ai ├── NSPreferencesGeneral.pdf ├── NSPrintInfo.h ├── NSPrintInfo.m ├── NSPrintOperation.h ├── NSPrintOperation.m ├── NSPrintPanel.h ├── NSPrintPanel.m ├── NSPrintProgressPanelController.h ├── NSPrintProgressPanelController.m ├── NSPrinter.h ├── NSPrinter.m ├── NSProgressIndicator.h ├── NSProgressIndicator.m ├── NSRadioButton.tiff ├── NSRefreshTemplate.ai ├── NSRefreshTemplate.pdf ├── NSRemoveTemplate.ai ├── NSRemoveTemplate.pdf ├── NSResponder.h ├── NSResponder.m ├── NSRuleEditor.h ├── NSRuleEditor.m ├── NSRuleEditorButtonCell.h ├── NSRuleEditorButtonCell.m ├── NSRuleEditorViewSliceRow.h ├── NSRuleEditorViewSliceRow.m ├── NSRulerMarker.h ├── NSRulerMarker.m ├── NSRulerMarkerTab.tiff ├── NSRulerView.h ├── NSRulerView.m ├── NSSavePanel.h ├── NSSavePanel.m ├── NSScreen.h ├── NSScreen.m ├── NSScrollView.h ├── NSScrollView.m ├── NSScroller.h ├── NSScroller.m ├── NSSearchField.h ├── NSSearchField.m ├── NSSearchFieldCell.h ├── NSSearchFieldCell.m ├── NSSearchGlass.ai ├── NSSearchGlass.pdf ├── NSSecureTextField.h ├── NSSecureTextField.m ├── NSSecureTextFieldCell.h ├── NSSecureTextFieldCell.m ├── NSSegmentedControl │ ├── NSSegmentItem.h │ ├── NSSegmentItem.m │ ├── NSSegmentedCell.h │ ├── NSSegmentedCell.m │ ├── NSSegmentedControl.h │ └── NSSegmentedControl.m ├── NSShadow.h ├── NSShadow.m ├── NSSheetContext.h ├── NSSheetContext.m ├── NSSlider.h ├── NSSlider.m ├── NSSliderCell.h ├── NSSliderCell.m ├── NSSound.h ├── NSSound.m ├── NSSpellChecker.h ├── NSSpellChecker.m ├── NSSpellCheckerTagData.h ├── NSSpellCheckerTagData.m ├── NSSpellProtocol.h ├── NSSpellingViewController.h ├── NSSpellingViewController.m ├── NSSplitView.h ├── NSSplitView.m ├── NSSplitViewHDimple.tiff ├── NSSplitViewVDimple.tiff ├── NSStatusBar.h ├── NSStatusBar.m ├── NSStatusBar_(Private).h ├── NSStatusItem+Private.h ├── NSStatusItem.h ├── NSStatusItem.m ├── NSStepper.h ├── NSStepper.m ├── NSStepperCell.h ├── NSStepperCell.m ├── NSStopProgressFreestandingTemplate.ai ├── NSStopProgressFreestandingTemplate.pdf ├── NSStopProgressTemplate.ai ├── NSStopProgressTemplate.pdf ├── NSStringDrawer.h ├── NSStringDrawer.m ├── NSStringDrawing.h ├── NSStringDrawing.m ├── NSSwitch.tiff ├── NSSystemInfoPanel │ ├── NSApplicationIcon.tiff │ ├── NSSystemInfoPanel.h │ ├── NSSystemInfoPanel.m │ ├── de.lproj │ │ └── NSSystemInfoPanel.nib │ │ │ ├── designable.nib │ │ │ └── keyedobjects.nib │ ├── en.lproj │ │ └── NSSystemInfoPanel.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ └── fr.lproj │ │ └── NSSystemInfoPanel.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib ├── NSTabView.h ├── NSTabView.m ├── NSTabViewItem.h ├── NSTabViewItem.m ├── NSTableColumn.h ├── NSTableColumn.m ├── NSTableCornerView.h ├── NSTableCornerView.m ├── NSTableHeaderCell.h ├── NSTableHeaderCell.m ├── NSTableHeaderView.h ├── NSTableHeaderView.m ├── NSTableView.h ├── NSTableView.m ├── NSText.h ├── NSText.m ├── NSTextAttachment.h ├── NSTextAttachment.m ├── NSTextAttachmentCell.h ├── NSTextAttachmentCell.m ├── NSTextField.h ├── NSTextField.m ├── NSTextFieldCell.h ├── NSTextFieldCell.m ├── NSTextList.h ├── NSTextList.m ├── NSTextTable │ ├── NSTextBlock.h │ ├── NSTextBlock.m │ ├── NSTextTable.h │ ├── NSTextTable.m │ ├── NSTextTableBlock.h │ └── NSTextTableBlock.m ├── NSTextView.subproj │ ├── NSBidiHelper.h │ ├── NSBidiHelper.m │ ├── NSLayoutManager.h │ ├── NSLayoutManager.m │ ├── NSRangeArray.h │ ├── NSRangeArray.m │ ├── NSRulerMarker+NSTextExtensions.h │ ├── NSRulerMarker+NSTextExtensions.m │ ├── NSSecureLayoutManager.h │ ├── NSSecureLayoutManager.m │ ├── NSSecureTextView.h │ ├── NSSecureTextView.m │ ├── NSTextContainer.h │ ├── NSTextContainer.m │ ├── NSTextInput.h │ ├── NSTextStorage.h │ ├── NSTextStorage.m │ ├── NSTextStorage_concrete.h │ ├── NSTextStorage_concrete.m │ ├── NSTextTab.h │ ├── NSTextTab.m │ ├── NSTextView.h │ ├── NSTextView.m │ ├── NSTextViewSharedData.h │ ├── NSTextViewSharedData.m │ ├── NSTypesetter.h │ ├── NSTypesetter.m │ ├── NSTypesetter_concrete.h │ ├── NSTypesetter_concrete.m │ ├── NSUndoTextOperation.h │ └── NSUndoTextOperation.m ├── NSThemeFrame.h ├── NSThemeFrame.m ├── NSTokenAttachmentCell.h ├── NSTokenAttachmentCell.m ├── NSTokenField.h ├── NSTokenField.m ├── NSTokenFieldCell.h ├── NSTokenFieldCell.m ├── NSToolTipWindow.h ├── NSToolTipWindow.m ├── NSToolbar.subproj │ ├── NSToolbar.h │ ├── NSToolbar.m │ ├── NSToolbarCustomizationPalette.h │ ├── NSToolbarCustomizationPalette.m │ ├── NSToolbarCustomizationView.h │ ├── NSToolbarCustomizationView.m │ ├── NSToolbarCustomizeToolbarItem.tiff │ ├── NSToolbarItem.h │ ├── NSToolbarItem.m │ ├── NSToolbarItemGroup.h │ ├── NSToolbarItemGroup.m │ ├── NSToolbarItemView.h │ ├── NSToolbarItemView.m │ ├── NSToolbarMoreToolbarItems.tiff │ ├── NSToolbarOverflowArrow.pdf │ ├── NSToolbarOverflowArrow.tiff │ ├── NSToolbarPrintItem.tiff │ ├── NSToolbarShowColorsItem.tiff │ ├── NSToolbarShowFontsItem.tiff │ ├── NSToolbarView.h │ └── NSToolbarView.m ├── NSTrackingArea.h ├── NSTrackingArea.m ├── NSTreeNode.h ├── NSTreeNode.m ├── NSUser.ai ├── NSUser.pdf ├── NSUserInterfaceValidation.h ├── NSView.h ├── NSView.m ├── NSViewBackingLayer.h ├── NSViewBackingLayer.m ├── NSViewController.h ├── NSViewController.m ├── NSWindow-Drag.h ├── NSWindow-Drag.m ├── NSWindow-Private.h ├── NSWindow.h ├── NSWindow.m ├── NSWindowAnimationContext.h ├── NSWindowAnimationContext.m ├── NSWindowController.h ├── NSWindowController.m ├── NSWindowScripting.h ├── NSWindowScripting.m ├── NSWorkspace.h ├── NSWorkspace.m ├── RTF.subproj │ ├── NSRichTextReader.h │ ├── NSRichTextReader.m │ ├── NSRichTextWriter.h │ └── NSRichTextWriter.m ├── UNIDATA │ ├── BidiMirroring.txt │ └── UnicodeData.txt ├── Win32.subproj │ ├── CGLContext.m │ ├── KTFont_gdi.h │ ├── KTFont_gdi.m │ ├── NSGraphicsStyle_uxtheme.h │ ├── NSGraphicsStyle_uxtheme.m │ ├── NSOpenPanel-Win32.h │ ├── NSOpenPanel-Win32.m │ ├── NSSavePanel-Win32.h │ ├── NSSavePanel-Win32.m │ ├── NSSound_DirectShow.h │ ├── NSSound_DirectShow.m │ ├── NSSound_win32.h │ ├── NSSound_win32.m │ ├── O2Context_gdi+AppKit.h │ ├── O2Context_gdi+AppKit.m │ ├── Win32Cursor.h │ ├── Win32Cursor.m │ ├── Win32DeviceContextPrinter.h │ ├── Win32DeviceContextPrinter.m │ ├── Win32DeviceContextWindow.h │ ├── Win32DeviceContextWindow.m │ ├── Win32Display.h │ ├── Win32Display.m │ ├── Win32DraggingManager.subproj │ │ ├── NSDragView.h │ │ ├── NSDragView.m │ │ ├── Win32DragSession.h │ │ ├── Win32DragSession.m │ │ ├── Win32DraggingManager.h │ │ ├── Win32DraggingManager.m │ │ ├── Win32DropPasteboard.h │ │ ├── Win32DropPasteboard.m │ │ ├── Win32FORMATETC.h │ │ ├── Win32FORMATETC.m │ │ ├── Win32GeneralPasteboard.h │ │ ├── Win32GeneralPasteboard.m │ │ ├── Win32IDataObjectClient.h │ │ ├── Win32IDataObjectClient.m │ │ ├── Win32IDataObjectServer.h │ │ ├── Win32IDataObjectServer.m │ │ ├── Win32IDropSourceServer.h │ │ ├── Win32IDropSourceServer.m │ │ ├── Win32IDropTargetServer.h │ │ ├── Win32IDropTargetServer.m │ │ ├── Win32IEnumFORMATETCServer.h │ │ ├── Win32IEnumFORMATETCServer.m │ │ ├── Win32IStreamClient.h │ │ ├── Win32IStreamClient.m │ │ ├── Win32IUnknownServer.h │ │ ├── Win32IUnknownServer.m │ │ ├── Win32Pasteboard.h │ │ ├── Win32Pasteboard.m │ │ ├── Win32TypesAndOwner.h │ │ ├── Win32TypesAndOwner.m │ │ ├── Win32Window-Drag.h │ │ └── Win32Window-Drag.m │ ├── Win32Event.h │ ├── Win32Event.m │ ├── Win32EventInputSource.h │ ├── Win32EventInputSource.m │ ├── Win32RunningCopyPipe.h │ ├── Win32RunningCopyPipe.m │ ├── Win32Window.h │ ├── Win32Window.m │ ├── Win32Workspace.h │ ├── Win32Workspace.m │ ├── dllmain.m │ ├── glweak.m │ ├── opengl_dll.h │ └── opengl_dll.m ├── X11.subproj │ ├── CGLContext.m │ ├── KTFont_FT.h │ ├── KTFont_FT.m │ ├── NSOpenGLDrawable_X11.h │ ├── NSOpenGLDrawable_X11.m │ ├── O2Context_builtin_FT.h │ ├── O2Context_builtin_FT.m │ ├── O2Context_cairo.h │ ├── O2Context_cairo.m │ ├── O2FontState_cairo.h │ ├── O2FontState_cairo.m │ ├── O2Font_FT.h │ ├── O2Font_FT.m │ ├── O2Surface_cairo.h │ ├── O2Surface_cairo.m │ ├── X11Display.h │ ├── X11Display.m │ ├── X11Event.h │ ├── X11Event.m │ ├── X11Window.h │ └── X11Window.m ├── _NSRuleEditorViewSliceHolder.h ├── _NSRuleEditorViewSliceHolder.m ├── de.lproj │ ├── Localizable.strings │ ├── NSColorPanel.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ ├── NSFontPanel.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ ├── NSSpellingViewController.xib │ └── NSToolbarCustomizationPalette.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib ├── en.lproj │ ├── Localizable.strings │ ├── NSColorPanel.nib │ │ ├── classes.nib │ │ ├── designable.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ ├── NSFontPanel.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ ├── NSMenu.plist │ ├── NSPrintProgressPanel.xib │ ├── NSSpellingViewController.xib │ └── NSToolbarCustomizationPalette.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ ├── keyedobjects.nib │ │ └── objects.nib ├── fr.lproj │ ├── Localizable.strings │ ├── NSColorPanel.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ ├── NSFontPanel.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ ├── NSMenu.plist │ ├── NSSpellingViewController.xib │ └── NSToolbarCustomizationPalette.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib └── nib.subproj │ ├── NSButtonImageSource.h │ ├── NSButtonImageSource.m │ ├── NSClassSwapper.h │ ├── NSClassSwapper.m │ ├── NSCustomObject.h │ ├── NSCustomObject.m │ ├── NSCustomResource.h │ ├── NSCustomResource.m │ ├── NSCustomView.h │ ├── NSCustomView.m │ ├── NSIBObjectData.h │ ├── NSIBObjectData.m │ ├── NSNib.h │ ├── NSNib.m │ ├── NSNibAXRelationshipConnector.h │ ├── NSNibAXRelationshipConnector.m │ ├── NSNibBindingConnector.h │ ├── NSNibBindingConnector.m │ ├── NSNibConnector.h │ ├── NSNibConnector.m │ ├── NSNibControlConnector.h │ ├── NSNibControlConnector.m │ ├── NSNibHelpConnector.h │ ├── NSNibHelpConnector.m │ ├── NSNibLoading.h │ ├── NSNibLoading.m │ ├── NSNibOutletConnector.h │ ├── NSNibOutletConnector.m │ ├── NSWindowTemplate.h │ └── NSWindowTemplate.m ├── ApplicationServices ├── ApplicationServices.h ├── ApplicationServices.xcodeproj │ └── project.pbxproj └── Info.plist ├── CFNetwork ├── CFHost.h ├── CFHost.m ├── CFNetServices.h ├── CFNetServices.m ├── CFNetwork.h ├── CFNetwork.xcodeproj │ └── project.pbxproj ├── CFNetworkExport.h ├── CFSocketStream.h ├── CFSocketStream.m ├── English.lproj │ └── InfoPlist.strings └── Info.plist ├── CFSSLHandler_openssl ├── CFSSLHandler_openssl.h ├── CFSSLHandler_openssl.m ├── CFSSLHandler_openssl.xcodeproj │ └── project.pbxproj ├── English.lproj │ └── InfoPlist.strings └── Info.plist ├── Carbon ├── Carbon.h ├── Carbon.xcodeproj │ └── project.pbxproj ├── English.lproj │ └── InfoPlist.strings └── Info.plist ├── Cocoa ├── Cocoa.h ├── Cocoa.m ├── Cocoa.xcodeproj │ └── project.pbxproj └── Info.plist ├── Cocotron └── Cocotron.xcodeproj │ └── project.pbxproj ├── CommonCrypto ├── CommonCrypto.xcodeproj │ └── project.pbxproj ├── CommonCryptoExport.h ├── CommonCryptor.h ├── CommonCryptor.m ├── CommonDigest.h ├── CommonDigest.m ├── CommonHMAC.h ├── CommonHMAC.m ├── English.lproj │ └── InfoPlist.strings ├── Info.plist └── dllmain.m ├── CoreData ├── CoreData.h ├── CoreData.xcodeproj │ └── project.pbxproj ├── CoreDataErrors.h ├── CoreDataErrors.m ├── CoreDataExports.h ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── Linux │ └── CoreData.h ├── NSAtomicStore.h ├── NSAtomicStore.m ├── NSAtomicStoreCacheNode.h ├── NSAtomicStoreCacheNode.m ├── NSAttributeDescription.h ├── NSAttributeDescription.m ├── NSEntityDescription-Private.h ├── NSEntityDescription.h ├── NSEntityDescription.m ├── NSFetchRequest.h ├── NSFetchRequest.m ├── NSFetchedPropertyDescription.h ├── NSFetchedPropertyDescription.m ├── NSInMemoryPersistentStore.h ├── NSInMemoryPersistentStore.m ├── NSManagedObject-Private.h ├── NSManagedObject.h ├── NSManagedObject.m ├── NSManagedObjectContext-Private.h ├── NSManagedObjectContext.h ├── NSManagedObjectContext.m ├── NSManagedObjectID-Private.h ├── NSManagedObjectID.h ├── NSManagedObjectID.m ├── NSManagedObjectModel.h ├── NSManagedObjectModel.m ├── NSManagedObjectMutableSet.h ├── NSManagedObjectMutableSet.m ├── NSManagedObjectSet.h ├── NSManagedObjectSet.m ├── NSManagedObjectSetEnumerator.h ├── NSManagedObjectSetEnumerator.m ├── NSPersistentStore.h ├── NSPersistentStore.m ├── NSPersistentStoreCoordinator-Private.h ├── NSPersistentStoreCoordinator.h ├── NSPersistentStoreCoordinator.m ├── NSPropertyDescription.h ├── NSPropertyDescription.m ├── NSRelationshipDescription.h ├── NSRelationshipDescription.m ├── NSXMLPersistentStore.h ├── NSXMLPersistentStore.m └── dllmain.m ├── CoreFoundation ├── CFArray.h ├── CFArray.m ├── CFAttributedString.h ├── CFAttributedString.m ├── CFBag.h ├── CFBag.m ├── CFBase.h ├── CFBase.m ├── CFBinaryHeap.h ├── CFBinaryHeap.m ├── CFBitVector.h ├── CFBitVector.m ├── CFBundle.h ├── CFBundle.m ├── CFByteOrder.h ├── CFByteOrder.m ├── CFCalendar.h ├── CFCalendar.m ├── CFCharacterSet.h ├── CFCharacterSet.m ├── CFData.h ├── CFData.m ├── CFDate.h ├── CFDate.m ├── CFDateFormatter.h ├── CFDateFormatter.m ├── CFDictionary.h ├── CFDictionary.m ├── CFError.h ├── CFError.m ├── CFFileDescriptor.h ├── CFFileDescriptor.m ├── CFLocale.h ├── CFLocale.m ├── CFMachPort.h ├── CFMachPort.m ├── CFMessagePort.h ├── CFMessagePort.m ├── CFNotificationCenter.h ├── CFNotificationCenter.m ├── CFNumber.h ├── CFNumber.m ├── CFNumberFormatter.h ├── CFNumberFormatter.m ├── CFPlugIn.h ├── CFPlugIn.m ├── CFPreferences.h ├── CFPreferences.m ├── CFPropertyList.h ├── CFPropertyList.m ├── CFRunLoop.h ├── CFRunLoop.m ├── CFSet.h ├── CFSet.m ├── CFSocket.h ├── CFSocket.m ├── CFStream.h ├── CFStream.m ├── CFString.h ├── CFString.m ├── CFStringEncodingExt.h ├── CFStringTokenizer.h ├── CFStringTokenizer.m ├── CFTimeZone.h ├── CFTimeZone.m ├── CFTree.h ├── CFTree.m ├── CFURL.h ├── CFURL.m ├── CFUUID.h ├── CFUUID.m ├── CFUserNotification.h ├── CFUserNotification.m ├── CFXMLNode.h ├── CFXMLNode.m ├── CFXMLParser.h ├── CFXMLParser.m ├── CoreFoundation.h ├── CoreFoundation.xcodeproj │ └── project.pbxproj ├── English.lproj │ └── InfoPlist.strings └── Info.plist ├── CoreGraphics ├── CGAffineTransform.h ├── CGAffineTransform.m ├── CGBitmapContext.h ├── CGBitmapContext.m ├── CGColor.h ├── CGColor.m ├── CGColorSpace.h ├── CGColorSpace.m ├── CGContext.h ├── CGContext.m ├── CGConversions.h ├── CGDataConsumer.h ├── CGDataConsumer.m ├── CGDataProvider.h ├── CGDataProvider.m ├── CGDirectDisplay.h ├── CGDirectDisplay.m ├── CGError.h ├── CGEvent.h ├── CGEvent.m ├── CGFont.h ├── CGFont.m ├── CGFunction.h ├── CGFunction.m ├── CGGeometry.h ├── CGGeometry.m ├── CGGradient.h ├── CGGradient.m ├── CGImage.h ├── CGImage.m ├── CGImageDestination.h ├── CGImageDestination.m ├── CGImageProperties.h ├── CGImageProperties.m ├── CGImageSource.h ├── CGImageSource.m ├── CGLPixelSurface.h ├── CGLPixelSurface.m ├── CGLayer.h ├── CGLayer.m ├── CGPDFContext.h ├── CGPDFContext.m ├── CGPDFDocument.h ├── CGPDFDocument.m ├── CGPDFPage.h ├── CGPDFPage.m ├── CGPath.h ├── CGPath.m ├── CGPattern.h ├── CGPattern.m ├── CGShading.h ├── CGShading.m ├── CGWindow.h ├── CGWindow.m ├── CGWindowLevel.h ├── CoreGraphics.h ├── CoreGraphics.xcodeproj │ └── project.pbxproj ├── CoreGraphicsExport.h ├── CoreText.h ├── Info.plist ├── KTFont+PDF.h └── KTFont+PDF.m ├── CoreServices ├── CoreServices.h ├── CoreServices.xcodeproj │ └── project.pbxproj ├── English.lproj │ └── InfoPlist.strings └── Info.plist ├── CoreText ├── CTFont.h ├── CTFont.m ├── CoreText.h ├── CoreText.xcodeproj │ └── project.pbxproj ├── CoreTextExport.h ├── Info.plist ├── KTFont.h └── KTFont.m ├── CoreVideo ├── CVBase.h ├── CVDisplayLink.h ├── CVDisplayLink.m ├── CVReturn.h ├── CoreVideo.h ├── CoreVideo.xcodeproj │ └── project.pbxproj ├── English.lproj │ └── InfoPlist.strings └── Info.plist ├── Examples ├── CGShadingCreate │ ├── CGShadingCreate.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── CGShadingCreate-Mac.xcscheme │ │ │ └── CGShadingCreate-Windows.xcscheme │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── GradientView.h │ ├── GradientView.m │ ├── Info.plist │ └── main.m ├── Examples.xcworkspace │ └── contents.xcworkspacedata ├── NSOpenGLView │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable-windows.strings │ │ ├── Localizable.strings │ │ └── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyOpenGLView.h │ ├── MyOpenGLView.m │ ├── NSOpenGLView.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── NSOpenGLView-Mac.xcscheme │ │ │ └── NSOpenGLView-Windows.xcscheme │ └── main.m └── TextEditor │ ├── English.lproj │ ├── Credits.rtf │ ├── MainMenu.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ └── MyDocument.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── MyDocument.h │ ├── MyDocument.m │ ├── TextEditor.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── TextEditor-Mac.xcscheme │ │ └── TextEditor-Windows.xcscheme │ └── main.m ├── Foundation ├── English.lproj │ └── NSUserDefaults.plist ├── Foundation.h ├── Foundation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Foundation-Darwin-i386.xcscheme │ │ ├── Foundation-Darwin-x86_64.xcscheme │ │ ├── Foundation-FreeBSD-i386.xcscheme │ │ ├── Foundation-Linux-i386.xcscheme │ │ └── Foundation-Windows-i386.xcscheme ├── FoundationErrors.h ├── Info.plist ├── NSAffineTransform.h ├── NSAffineTransform.m ├── NSArchiver.h ├── NSArchiver.m ├── NSArray │ ├── NSArray.h │ ├── NSArray.m │ ├── NSArray_concrete.h │ ├── NSArray_concrete.m │ ├── NSArray_placeholder.h │ ├── NSArray_placeholder.m │ ├── NSEnumerator_array.h │ ├── NSEnumerator_array.m │ ├── NSEnumerator_arrayReverse.h │ ├── NSEnumerator_arrayReverse.m │ ├── NSMutableArray.h │ ├── NSMutableArray.m │ ├── NSMutableArray_concrete.h │ └── NSMutableArray_concrete.m ├── NSAssertionHandler.h ├── NSAssertionHandler.m ├── NSAtomicCompareAndSwap.h ├── NSAttributedString │ ├── NSAttributedString.h │ ├── NSAttributedString.m │ ├── NSAttributedString_manyAttributes.h │ ├── NSAttributedString_manyAttributes.m │ ├── NSAttributedString_nilAttributes.h │ ├── NSAttributedString_nilAttributes.m │ ├── NSAttributedString_oneAttribute.h │ ├── NSAttributedString_oneAttribute.m │ ├── NSAttributedString_placeholder.h │ ├── NSAttributedString_placeholder.m │ ├── NSMutableAttributedString.h │ ├── NSMutableAttributedString.m │ ├── NSMutableAttributedString_concrete.h │ ├── NSMutableAttributedString_concrete.m │ ├── NSMutableString_proxyToMutableAttributedString.h │ ├── NSMutableString_proxyToMutableAttributedString.m │ ├── NSRangeEntries.h │ └── NSRangeEntries.m ├── NSAutoreleasePool │ ├── NSAutoreleasePool-private.h │ ├── NSAutoreleasePool.h │ └── NSAutoreleasePool.m ├── NSBlocks.m ├── NSBundle.h ├── NSBundle.m ├── NSByteOrder.h ├── NSByteOrder.m ├── NSCFTypeID.h ├── NSCharacterSet │ ├── NSCharacterSet.h │ ├── NSCharacterSet.m │ ├── NSCharacterSet_bitmap.h │ ├── NSCharacterSet_bitmap.m │ ├── NSCharacterSet_range.h │ ├── NSCharacterSet_range.m │ ├── NSCharacterSet_rangeInverted.h │ ├── NSCharacterSet_rangeInverted.m │ ├── NSCharacterSet_string.h │ ├── NSCharacterSet_string.m │ ├── NSMutableCharacterSet.h │ ├── NSMutableCharacterSet.m │ ├── NSMutableCharacterSet_bitmap.h │ ├── NSMutableCharacterSet_bitmap.m │ ├── alphanumericCharacterSet.bitmap │ ├── bitmapRepresentation.h │ ├── controlCharacterSet.bitmap │ ├── decimalDigitCharacterSet.bitmap │ ├── illegalCharacterSet.bitmap │ ├── letterCharacterSet.bitmap │ ├── lowercaseLetterCharacterSet.bitmap │ ├── punctuationCharacterSet.bitmap │ ├── uppercaseLetterCharacterSet.bitmap │ ├── whitespaceAndNewlineCharacterSet.bitmap │ └── whitespaceCharacterSet.bitmap ├── NSClassDescription.h ├── NSClassDescription.m ├── NSCoder.h ├── NSCoder.m ├── NSConcreteDirectoryEnumerator.h ├── NSConcreteDirectoryEnumerator.m ├── NSConnection │ ├── NSConnection.h │ ├── NSConnection.m │ ├── NSDistantObject.h │ ├── NSDistantObject.m │ ├── NSMessagePort.h │ ├── NSMessagePort.m │ ├── NSPort.h │ ├── NSPort.m │ ├── NSPortCoder.h │ ├── NSPortCoder.m │ ├── NSPortMessage.h │ ├── NSPortMessage.m │ ├── NSProtocolChecker.h │ ├── NSProtocolChecker.m │ ├── NSSocketPort.h │ └── NSSocketPort.m ├── NSData │ ├── NSData.h │ ├── NSData.m │ ├── NSData_concrete.h │ ├── NSData_concrete.m │ ├── NSData_mapped.h │ ├── NSData_mapped.m │ ├── NSMutableData.h │ ├── NSMutableData.m │ ├── NSMutableData_concrete.h │ └── NSMutableData_concrete.m ├── NSDate │ ├── NSCalendar.h │ ├── NSCalendar.m │ ├── NSCalendarDate.h │ ├── NSCalendarDate.m │ ├── NSDate.h │ ├── NSDate.m │ ├── NSDateComponents.h │ ├── NSDateComponents.m │ ├── NSDateFormatter.h │ ├── NSDateFormatter.m │ ├── NSDate_timeInterval.h │ └── NSDate_timeInterval.m ├── NSDebug.h ├── NSDebug.m ├── NSDecimal │ ├── NSDecimal.h │ ├── NSDecimal.m │ ├── NSDecimalNumber.h │ ├── NSDecimalNumber.m │ ├── NSDecimalNumberPlaceholder.h │ └── NSDecimalNumberPlaceholder.m ├── NSDictionary │ ├── NSDictionary.h │ ├── NSDictionary.m │ ├── NSDictionary_mapTable.h │ ├── NSDictionary_mapTable.m │ ├── NSEnumerator_dictionaryKeys.h │ ├── NSEnumerator_dictionaryKeys.m │ ├── NSEnumerator_dictionaryObjects.h │ ├── NSEnumerator_dictionaryObjects.m │ ├── NSMutableDictionary.h │ ├── NSMutableDictionary.m │ ├── NSMutableDictionary_mapTable.h │ └── NSMutableDictionary_mapTable.m ├── NSDirectoryEnumerator.h ├── NSDirectoryEnumerator.m ├── NSDistributedLock.h ├── NSDistributedLock.m ├── NSDistributedNotificationCenter.h ├── NSDistributedNotificationCenter.m ├── NSEnumerator.h ├── NSEnumerator.m ├── NSError.h ├── NSError.m ├── NSException │ ├── NSException.h │ ├── NSException.m │ ├── NSRaise.h │ ├── NSRaise.m │ ├── NSRaiseException.h │ ├── debugHelpers.h │ └── debugHelpers.m ├── NSFileManager.h ├── NSFileManager.m ├── NSFormatter.h ├── NSFormatter.m ├── NSGarbageCollector.h ├── NSGarbageCollector.m ├── NSGeometry.h ├── NSGeometry.m ├── NSHTTPCookie │ ├── NSHTTPCookie.h │ ├── NSHTTPCookie.m │ ├── NSHTTPCookieStorage.h │ └── NSHTTPCookieStorage.m ├── NSHashTable.h ├── NSHashTable.m ├── NSHost.h ├── NSHost.m ├── NSIndexPath.h ├── NSIndexPath.m ├── NSIndexSet │ ├── NSIndexSet.h │ ├── NSIndexSet.m │ ├── NSMutableIndexSet.h │ └── NSMutableIndexSet.m ├── NSInvocation.h ├── NSInvocation.m ├── NSKeyValueCoding │ ├── NSArray+KVC.m │ ├── NSDictionary+KVC.m │ ├── NSKVCMutableArray.h │ ├── NSKVCMutableArray.m │ ├── NSKVOInfoPerObject.h │ ├── NSKVOInfoPerObject.m │ ├── NSKeyObserver.h │ ├── NSKeyObserver.m │ ├── NSKeyPathObserver.h │ ├── NSKeyPathObserver.m │ ├── NSKeyValueCoding.h │ ├── NSKeyValueCoding.m │ ├── NSKeyValueObserving-Private.h │ ├── NSKeyValueObserving.h │ ├── NSKeyValueObserving.m │ ├── NSString+KVCAdditions.h │ └── NSString+KVCAdditions.m ├── NSKeyedArchiving │ ├── NSKeyedArchiver.h │ ├── NSKeyedArchiver.m │ ├── NSKeyedUnarchiver.h │ └── NSKeyedUnarchiver.m ├── NSLocale.h ├── NSLocale.m ├── NSLock │ ├── NSCondition.m │ ├── NSConditionLock.h │ ├── NSConditionLock.m │ ├── NSLock.h │ ├── NSLock.m │ ├── NSRecursiveLock.h │ ├── NSRecursiveLock.m │ ├── NSSynchronization.h │ └── NSSynchronization.m ├── NSMapTable.h ├── NSMapTable.m ├── NSMetadata │ ├── NSMetadataItem.h │ ├── NSMetadataItem.m │ ├── NSMetadataQuery.h │ ├── NSMetadataQuery.m │ ├── NSMetadataQueryAttributeValueTuple.h │ ├── NSMetadataQueryAttributeValueTuple.m │ ├── NSMetadataQueryResultGroup.h │ └── NSMetadataQueryResultGroup.m ├── NSMethodSignature.h ├── NSMethodSignature.m ├── NSNetService │ ├── NSNetServices.h │ ├── NSNetServices.m │ ├── bonjour.h │ └── bonjour.m ├── NSNotification │ ├── NSNotification.h │ ├── NSNotification.m │ ├── NSNotification_concrete.h │ └── NSNotification_concrete.m ├── NSNotificationCenter │ ├── NSNotificationCenter.h │ ├── NSNotificationCenter.m │ ├── NSNotificationObserver.h │ ├── NSNotificationObserver.m │ ├── NSObjectToObservers.h │ └── NSObjectToObservers.m ├── NSNotificationQueue │ ├── NSNotificationAndModes.h │ ├── NSNotificationAndModes.m │ ├── NSNotificationQueue-Private.h │ ├── NSNotificationQueue.h │ └── NSNotificationQueue.m ├── NSNull.h ├── NSNull.m ├── NSNumber │ ├── NSConstObject.h │ ├── NSNumber.h │ ├── NSNumber.m │ ├── NSNumber_BOOL.h │ ├── NSNumber_BOOL.m │ ├── NSNumber_BOOL_const.h │ ├── NSNumber_BOOL_const.m │ ├── NSNumber_BOOL_const_impl.h │ ├── NSNumber_CF.h │ ├── NSNumber_CF.m │ ├── NSNumber_char.h │ ├── NSNumber_char.m │ ├── NSNumber_double.h │ ├── NSNumber_double.m │ ├── NSNumber_double_const.h │ ├── NSNumber_float.h │ ├── NSNumber_float.m │ ├── NSNumber_int.h │ ├── NSNumber_int.m │ ├── NSNumber_long.h │ ├── NSNumber_long.m │ ├── NSNumber_longLong.h │ ├── NSNumber_longLong.m │ ├── NSNumber_placeholder.h │ ├── NSNumber_placeholder.m │ ├── NSNumber_short.h │ ├── NSNumber_short.m │ ├── NSNumber_unsignedChar.h │ ├── NSNumber_unsignedChar.m │ ├── NSNumber_unsignedInt.h │ ├── NSNumber_unsignedInt.m │ ├── NSNumber_unsignedLong.h │ ├── NSNumber_unsignedLong.m │ ├── NSNumber_unsignedLongLong.h │ ├── NSNumber_unsignedLongLong.m │ ├── NSNumber_unsignedShort.h │ └── NSNumber_unsignedShort.m ├── NSNumberFormatter.h ├── NSNumberFormatter.m ├── NSObjCRuntime.h ├── NSObjCRuntime.m ├── NSObject │ ├── NSObject.h │ ├── NSObject.m │ ├── NSZombieObject.h │ ├── NSZombieObject.m │ ├── forwarding.h │ ├── forwarding.m │ ├── objc_forward_ffi.h │ ├── objc_forward_ffi.m │ ├── objc_msg_sendv-Disabled.m │ ├── objc_size_alignment.h │ ├── objc_size_alignment.m │ ├── platform_linux │ │ ├── msgSendv-linux.s │ │ ├── msgSendv-linux_x86_64.s │ │ ├── msgSendv-x64.m │ │ └── msgSendv-x64.s │ ├── platform_solaris │ │ └── msgSendv-solaris.m │ └── platform_windows │ │ └── msgSendv-windows.s ├── NSOperation │ ├── NSAtomicList.h │ ├── NSAtomicList.m │ ├── NSOperation.h │ ├── NSOperation.m │ ├── NSOperationQueue.h │ └── NSOperationQueue.m ├── NSOrthography.h ├── NSOrthography.m ├── NSPipe.h ├── NSPipe.m ├── NSPlatform.h ├── NSPlatform.m ├── NSPointerArray.h ├── NSPointerArray.m ├── NSPointerFunctions.h ├── NSPointerFunctions.m ├── NSPortNameServer │ ├── NSMessagePortNameServer.h │ ├── NSMessagePortNameServer.m │ ├── NSPortNameServer.h │ ├── NSPortNameServer.m │ ├── NSSocketPortNameServer.h │ └── NSSocketPortNameServer.m ├── NSPredicate │ ├── NSComparisonPredicate.h │ ├── NSComparisonPredicate.m │ ├── NSCompoundPredicate.h │ ├── NSCompoundPredicate.m │ ├── NSExpression.h │ ├── NSExpression.m │ ├── NSExpression_array.h │ ├── NSExpression_array.m │ ├── NSExpression_assignment.h │ ├── NSExpression_assignment.m │ ├── NSExpression_constant.h │ ├── NSExpression_constant.m │ ├── NSExpression_function.h │ ├── NSExpression_function.m │ ├── NSExpression_keypath.h │ ├── NSExpression_keypath.m │ ├── NSExpression_operator.h │ ├── NSExpression_operator.m │ ├── NSExpression_self.h │ ├── NSExpression_self.m │ ├── NSExpression_variable.h │ ├── NSExpression_variable.m │ ├── NSPredicate.h │ ├── NSPredicate.m │ ├── NSPredicate_BOOL.h │ └── NSPredicate_BOOL.m ├── NSProcessInfo.h ├── NSProcessInfo.m ├── NSPropertyList │ ├── CFUID.h │ ├── CFUID.m │ ├── NSOldXMLAttribute.h │ ├── NSOldXMLAttribute.m │ ├── NSOldXMLDocument.h │ ├── NSOldXMLDocument.m │ ├── NSOldXMLElement.h │ ├── NSOldXMLElement.m │ ├── NSOldXMLReader.h │ ├── NSOldXMLReader.m │ ├── NSPropertyList.h │ ├── NSPropertyList.m │ ├── NSPropertyListReader.h │ ├── NSPropertyListReader.m │ ├── NSPropertyListReader_binary1.h │ ├── NSPropertyListReader_binary1.m │ ├── NSPropertyListReader_vintage.h │ ├── NSPropertyListReader_vintage.m │ ├── NSPropertyListReader_xml1.h │ ├── NSPropertyListReader_xml1.m │ ├── NSPropertyListWriter_vintage.h │ ├── NSPropertyListWriter_vintage.m │ ├── NSPropertyListWriter_xml1.h │ └── NSPropertyListWriter_xml1.m ├── NSProxy.h ├── NSProxy.m ├── NSRange.h ├── NSRange.m ├── NSRunLoop │ ├── NSDelayedPerform.h │ ├── NSDelayedPerform.m │ ├── NSInputSource.h │ ├── NSInputSource.m │ ├── NSInputSourceSet.h │ ├── NSInputSourceSet.m │ ├── NSOrderedPerform.h │ ├── NSOrderedPerform.m │ ├── NSRunLoop-InputSource.h │ ├── NSRunLoop.h │ ├── NSRunLoop.m │ ├── NSRunLoopState.h │ └── NSRunLoopState.m ├── NSScanner │ ├── NSScanner.h │ ├── NSScanner.m │ ├── NSScanner_concrete.h │ └── NSScanner_concrete.m ├── NSScript │ ├── NSScriptWhoseTests.h │ └── NSScriptWhoseTests.m ├── NSSet │ ├── NSCountedSet.h │ ├── NSCountedSet.m │ ├── NSEnumerator_set.h │ ├── NSEnumerator_set.m │ ├── NSInlineSetTable.h │ ├── NSInlineSetTable.m │ ├── NSMutableSet.h │ ├── NSMutableSet.m │ ├── NSMutableSet_concrete.h │ ├── NSMutableSet_concrete.m │ ├── NSSet.h │ ├── NSSet.m │ ├── NSSet_concrete.h │ ├── NSSet_concrete.m │ ├── NSSet_placeholder.h │ └── NSSet_placeholder.m ├── NSSortDescriptor.h ├── NSSortDescriptor.m ├── NSSpellEngine.h ├── NSSpellEngine.m ├── NSSpellServer.h ├── NSSpellServer.m ├── NSStream │ ├── CFSSLHandler.h │ ├── CFSSLHandler.m │ ├── NSFileHandle.h │ ├── NSFileHandle.m │ ├── NSFileHandle_stream.h │ ├── NSFileHandle_stream.m │ ├── NSInputStream.h │ ├── NSInputStream.m │ ├── NSInputStream_data.h │ ├── NSInputStream_data.m │ ├── NSInputStream_file.h │ ├── NSInputStream_file.m │ ├── NSInputStream_socket.h │ ├── NSInputStream_socket.m │ ├── NSOutputStream.h │ ├── NSOutputStream.m │ ├── NSOutputStream_buffer.h │ ├── NSOutputStream_buffer.m │ ├── NSOutputStream_data.h │ ├── NSOutputStream_data.m │ ├── NSOutputStream_file.h │ ├── NSOutputStream_file.m │ ├── NSOutputStream_socket.h │ ├── NSOutputStream_socket.m │ ├── NSSelectInputSource.h │ ├── NSSelectInputSource.m │ ├── NSSelectInputSourceSet.h │ ├── NSSelectInputSourceSet.m │ ├── NSSelectSet.h │ ├── NSSelectSet.m │ ├── NSSocket.h │ ├── NSSocket.m │ ├── NSStream.h │ └── NSStream.m ├── NSString │ ├── Encoding │ │ ├── 8859-1.h │ │ ├── 8859-10.h │ │ ├── 8859-11.h │ │ ├── 8859-13.h │ │ ├── 8859-14.h │ │ ├── 8859-15.h │ │ ├── 8859-16.h │ │ ├── 8859-2.h │ │ ├── 8859-3.h │ │ ├── 8859-4.h │ │ ├── 8859-5.h │ │ ├── 8859-6.h │ │ ├── 8859-7.h │ │ ├── 8859-8.h │ │ ├── 8859-9.h │ │ ├── CP1250.h │ │ ├── CP1251.h │ │ ├── CP1252.h │ │ ├── CP1253.h │ │ ├── CP1254.h │ │ ├── CP1255.h │ │ ├── CP1256.h │ │ ├── CP1257.h │ │ ├── CP1258.h │ │ ├── CP874.h │ │ ├── CP932.h │ │ ├── CP936.h │ │ ├── CP949.h │ │ └── CP950.h │ ├── English.lproj │ │ └── NSStringEncodingNames.plist │ ├── NSConstantString-Impl.m │ ├── NSDarwinString.h │ ├── NSDarwinString.m │ ├── NSMutableString.h │ ├── NSMutableString.m │ ├── NSMutableString_unicodePtr.h │ ├── NSMutableString_unicodePtr.m │ ├── NSPathUtilities.h │ ├── NSPathUtilities.m │ ├── NSString.h │ ├── NSString.m │ ├── NSStringEncoder.h │ ├── NSStringEncoder.m │ ├── NSStringFileIO.h │ ├── NSStringFileIO.m │ ├── NSStringFormatter.h │ ├── NSStringFormatter.m │ ├── NSStringHashing.h │ ├── NSStringSymbol.h │ ├── NSStringSymbol.m │ ├── NSStringUTF8.h │ ├── NSStringUTF8.m │ ├── NSString_cString.h │ ├── NSString_cString.m │ ├── NSString_defaultEncoding.h │ ├── NSString_isoLatin1.h │ ├── NSString_isoLatin1.m │ ├── NSString_isoLatin2.h │ ├── NSString_isoLatin2.m │ ├── NSString_macOSRoman.h │ ├── NSString_macOSRoman.m │ ├── NSString_nextstep.h │ ├── NSString_nextstep.m │ ├── NSString_nextstepCString.h │ ├── NSString_nextstepCString.m │ ├── NSString_placeholder.h │ ├── NSString_placeholder.m │ ├── NSString_unicode.h │ ├── NSString_unicode.m │ ├── NSString_unicodePtr.h │ ├── NSString_unicodePtr.m │ ├── NSString_win1252.h │ ├── NSString_win1252.m │ ├── NSUnicodeCaseMapping.h │ ├── NSUnicodeCaseMapping.m │ ├── unibuffer.h │ └── unibuffer.m ├── NSStringsFileFormat │ ├── NSStringsFileParser.h │ └── NSStringsFileParser.m ├── NSTask.h ├── NSTask.m ├── NSTextCheckingResult.h ├── NSTextCheckingResult.m ├── NSThread │ ├── NSThread-Private.h │ ├── NSThread.h │ └── NSThread.m ├── NSTimeZone │ ├── NSTimeZone.h │ ├── NSTimeZone.m │ ├── NSTimeZoneAbbreviations.plist │ ├── NSTimeZoneRegions.plist │ ├── NSTimeZoneTransition.h │ ├── NSTimeZoneTransition.m │ ├── NSTimeZoneType.h │ ├── NSTimeZoneType.m │ ├── NSTimeZoneWindowsZones.plist │ ├── NSTimeZone_absolute.h │ └── NSTimeZone_absolute.m ├── NSTimer │ ├── NSTimer.h │ ├── NSTimer.m │ ├── NSTimer_concrete.h │ ├── NSTimer_concrete.m │ ├── NSTimer_invocation.h │ ├── NSTimer_invocation.m │ ├── NSTimer_targetAction.h │ └── NSTimer_targetAction.m ├── NSURL │ ├── NSCachedURLResponse.h │ ├── NSCachedURLResponse.m │ ├── NSHTTPURLResponse.h │ ├── NSHTTPURLResponse.m │ ├── NSMutableURLRequest.h │ ├── NSMutableURLRequest.m │ ├── NSURL.h │ ├── NSURL.m │ ├── NSURLAuthenticationChallenge.h │ ├── NSURLAuthenticationChallenge.m │ ├── NSURLCache.h │ ├── NSURLCache.m │ ├── NSURLConnection.h │ ├── NSURLConnection.m │ ├── NSURLConnectionState.h │ ├── NSURLConnectionState.m │ ├── NSURLCredential.h │ ├── NSURLCredential.m │ ├── NSURLCredentialStorage.h │ ├── NSURLCredentialStorage.m │ ├── NSURLDownload.h │ ├── NSURLDownload.m │ ├── NSURLError.h │ ├── NSURLError.m │ ├── NSURLHandle.h │ ├── NSURLHandle.m │ ├── NSURLProtectionSpace.h │ ├── NSURLProtectionSpace.m │ ├── NSURLProtocol.h │ ├── NSURLProtocol.m │ ├── NSURLProtocol_http.h │ ├── NSURLProtocol_http.m │ ├── NSURLRequest.h │ ├── NSURLRequest.m │ ├── NSURLResponse.h │ └── NSURLResponse.m ├── NSUnarchiver.h ├── NSUnarchiver.m ├── NSUndoManager │ ├── NSUndoGroup.h │ ├── NSUndoGroup.m │ ├── NSUndoManager.h │ └── NSUndoManager.m ├── NSUserDefaults │ ├── NSPersistantDomain.h │ ├── NSPersistantDomain.m │ ├── NSUserDefaults.h │ └── NSUserDefaults.m ├── NSValue │ ├── NSValue.h │ ├── NSValue.m │ ├── NSValue_concrete.h │ ├── NSValue_concrete.m │ ├── NSValue_nonRetainedObject.h │ ├── NSValue_nonRetainedObject.m │ ├── NSValue_placeholder.h │ ├── NSValue_placeholder.m │ ├── NSValue_pointer.h │ └── NSValue_pointer.m ├── NSValueTransformer │ ├── NSValueTransformer.h │ ├── NSValueTransformer.m │ ├── NSValueTransformer_IsNil.h │ ├── NSValueTransformer_IsNil.m │ ├── NSValueTransformer_IsNotNil.h │ ├── NSValueTransformer_IsNotNil.m │ ├── NSValueTransformer_KeyedUnarchiveFromData.h │ ├── NSValueTransformer_KeyedUnarchiveFromData.m │ ├── NSValueTransformer_NegateBoolean.h │ ├── NSValueTransformer_NegateBoolean.m │ ├── NSValueTransformer_UnarchiveFromData.h │ └── NSValueTransformer_UnarchiveFromData.m ├── NSZone │ ├── NSVirtualMemory.m │ ├── NSZone.h │ └── NSZone.m ├── platform_bsd │ ├── NSMemoryFunctions_bsd.m │ ├── NSPlatform_bsd.h │ ├── NSPlatform_bsd.m │ └── libmain.m ├── platform_darwin │ ├── DarwinMemoryFunctions.m │ ├── NSPlatform_darwin.h │ ├── NSPlatform_darwin.m │ ├── NSString_defaultEncoding_darwin.m │ └── libmain.m ├── platform_linux │ ├── NSMemoryFunctions_linux.m │ ├── NSPlatform_linux.h │ ├── NSPlatform_linux.m │ └── libmain.m ├── platform_posix │ ├── NSCancelInputSource_posix.h │ ├── NSCancelInputSource_posix.m │ ├── NSConditionLock_posix.h │ ├── NSConditionLock_posix.m │ ├── NSCondition_posix.h │ ├── NSCondition_posix.m │ ├── NSConstantString.m │ ├── NSFileHandle_posix.h │ ├── NSFileHandle_posix.m │ ├── NSFileManager_posix.h │ ├── NSFileManager_posix.m │ ├── NSLock_posix.h │ ├── NSLock_posix.m │ ├── NSMemoryFunctions_posix.m │ ├── NSPersistantDomain_posix.h │ ├── NSPersistantDomain_posix.m │ ├── NSPipe_posix.h │ ├── NSPipe_posix.m │ ├── NSPlatform_posix.h │ ├── NSPlatform_posix.m │ ├── NSRecursiveLock_posix.h │ ├── NSRecursiveLock_posix.m │ ├── NSRunLoopState_posix.h │ ├── NSRunLoopState_posix.m │ ├── NSSelectSet_bsd.h │ ├── NSSelectSet_bsd.m │ ├── NSSocketPort_posix.h │ ├── NSSocketPort_posix.m │ ├── NSSocket_bsd.h │ ├── NSSocket_bsd.m │ ├── NSString_defaultEncoding_posix.m │ ├── NSTask_posix.h │ ├── NSTask_posix.m │ ├── NSTimeZone_posix.h │ └── NSTimeZone_posix.m ├── platform_solaris │ ├── NSBacktraceFunctions_solaris.m │ ├── NSPlatform_solaris.h │ ├── NSPlatform_solaris.m │ ├── SolarisMemoryFunctions.m │ └── libmain.m ├── platform_windows │ ├── NSBacktraceFunctions_win32.m │ ├── NSCancelInputSource_win32.h │ ├── NSCancelInputSource_win32.m │ ├── NSConditionLock_win32.h │ ├── NSConditionLock_win32.m │ ├── NSCondition_win32.h │ ├── NSCondition_win32.m │ ├── NSFileHandle_win32.h │ ├── NSFileHandle_win32.m │ ├── NSFileManager_win32.h │ ├── NSFileManager_win32.m │ ├── NSHandleMonitorSet_win32.h │ ├── NSHandleMonitorSet_win32.m │ ├── NSHandleMonitor_win32.h │ ├── NSHandleMonitor_win32.m │ ├── NSLocale+windows.h │ ├── NSLocale+windows.m │ ├── NSLock_win32.h │ ├── NSLock_win32.m │ ├── NSMemoryFunctions_win32.m │ ├── NSParentDeathMonitor_win32.h │ ├── NSParentDeathMonitor_win32.m │ ├── NSPersistantDomain_win32.h │ ├── NSPersistantDomain_win32.m │ ├── NSPipe_win32.h │ ├── NSPipe_win32.m │ ├── NSPlatform_win32.h │ ├── NSPlatform_win32.m │ ├── NSReadInBackground_win32.h │ ├── NSReadInBackground_win32.m │ ├── NSRecursiveLock_win32.h │ ├── NSRecursiveLock_win32.m │ ├── NSRunLoopState_windows.h │ ├── NSRunLoopState_windows.m │ ├── NSSelectSet_windows.h │ ├── NSSelectSet_windows.m │ ├── NSSocket_windows.h │ ├── NSSocket_windows.m │ ├── NSString_defaultEncoding_windows.m │ ├── NSString_win32.h │ ├── NSString_win32.m │ ├── NSTask_win32.h │ ├── NSTask_win32.m │ ├── NSTimeZone_win32.h │ ├── NSTimeZone_win32.m │ └── dllmain.m └── xml │ ├── NSXMLDTD.h │ ├── NSXMLDTD.m │ ├── NSXMLDTDNode.h │ ├── NSXMLDTDNode.m │ ├── NSXMLDocument.h │ ├── NSXMLDocument.m │ ├── NSXMLElement.h │ ├── NSXMLElement.m │ ├── NSXMLNode.h │ ├── NSXMLNode.m │ ├── NSXMLNodeOptions.h │ ├── NSXMLParser.h │ └── NSXMLParser.m ├── IOKit ├── English.lproj │ └── InfoPlist.strings ├── IOKit.xcodeproj │ └── project.pbxproj ├── IOKitLib.h ├── IOKitLib.m ├── IOTypes.h ├── Info.plist └── network │ ├── IOEthernetController.h │ ├── IOEthernetInterface.h │ ├── IONetworkController.h │ └── IONetworkInterface.h ├── ImageKit ├── English.lproj │ └── InfoPlist.strings ├── IKImageBrowserCell.h ├── IKImageBrowserCell.m ├── IKImageBrowserView.h ├── IKImageBrowserView.m ├── ImageKit.h ├── ImageKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ImageKit-Windows-i386.xcscheme ├── ImageKitExport.h ├── ImageKit_Framework.m ├── Info.plist └── dllmain.m ├── InstallCDT ├── Resources │ ├── Specifications │ │ ├── Windows.pbfilespec │ │ ├── gcc-4.3.1.pbcompspec │ │ ├── gcc-default.pbcompspec │ │ ├── llvm-clang-default.pbcompspec │ │ └── llvm-clang-trunk.pbcompspec │ ├── scripts │ │ ├── createSpecifications.sh │ │ ├── downloadFilesIfNeeded.sh │ │ └── unarchiveFiles.sh │ └── tools │ │ └── retargetBundle.m ├── install.sh ├── install_AntiGrain.sh ├── install_FreeType.sh ├── install_GLUT.sh ├── install_OpenSSL.sh ├── install_hunspell.sh ├── install_libjpeg-turbo.sh ├── install_libjpeg.sh ├── install_libtiff.sh ├── install_plibc.sh ├── install_png.sh ├── install_pthread.sh ├── install_sqlite.sh ├── install_xml2.sh ├── install_zlib.sh └── install_zlib_src.sh ├── LICENSE.txt ├── NSSpellEngine_hunspell ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── NSSpellEngine_hunspell.h ├── NSSpellEngine_hunspell.mm ├── NSSpellEngine_hunspell.xcodeproj │ └── project.pbxproj ├── NSSpellEngine_hunspellDictionary.h └── NSSpellEngine_hunspellDictionary.mm ├── O2Context_AntiGrain ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── O2Context_AntiGrain.h ├── O2Context_AntiGrain.mm ├── O2Context_AntiGrain.xcodeproj │ └── project.pbxproj ├── agg_font_cache_manager.h ├── agg_font_win32_tt.h ├── agg_font_win32_tt.mm ├── o2agg_pixfmt_rgba.h ├── o2agg_span_image_filter_rgba.h └── partial_stack_blur.h ├── Onyx2D ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── O2AffineTransform.h ├── O2AffineTransform.m ├── O2BitmapContext.h ├── O2BitmapContext.m ├── O2Blending.h ├── O2ClipMask.h ├── O2ClipMask.m ├── O2ClipPhase.h ├── O2ClipPhase.m ├── O2ClipState.h ├── O2ClipState.m ├── O2Color.h ├── O2Color.m ├── O2ColorSpace+PDF.h ├── O2ColorSpace+PDF.m ├── O2ColorSpace.h ├── O2ColorSpace.m ├── O2Context.h ├── O2Context.m ├── O2Context_builtin.h ├── O2Context_builtin.m ├── O2Context_distill.h ├── O2Context_distill.m ├── O2DataConsumer.h ├── O2DataConsumer.m ├── O2DataProvider.h ├── O2DataProvider.m ├── O2Decoder_TIFF.h ├── O2Decoder_TIFF.m ├── O2Defines_libjpeg.h ├── O2EXIFDecoder.h ├── O2EXIFDecoder.m ├── O2Encoder_JPG.h ├── O2Encoder_JPG.m ├── O2Encoder_PNG.h ├── O2Encoder_PNG.m ├── O2Encoder_TIFF.h ├── O2Encoder_TIFF.m ├── O2Encoding.h ├── O2Encoding.m ├── O2Exceptions.h ├── O2Font+PDF.h ├── O2Font+PDF.m ├── O2Font.h ├── O2Font.m ├── O2Font_freetype.h ├── O2Font_freetype.m ├── O2Font_ttf.h ├── O2Font_ttf.m ├── O2Function+PDF.h ├── O2Function+PDF.m ├── O2Function.h ├── O2Function.m ├── O2Geometry.h ├── O2Geometry.m ├── O2GlyphStencil.h ├── O2GlyphStencil.m ├── O2GraphicsState.h ├── O2GraphicsState.m ├── O2Image+PDF.h ├── O2Image+PDF.m ├── O2Image.h ├── O2Image.m ├── O2ImageDecoder.h ├── O2ImageDecoder.m ├── O2ImageDecoder_JPEG_libjpeg.h ├── O2ImageDecoder_JPEG_libjpeg.m ├── O2ImageDecoder_JPEG_stb.h ├── O2ImageDecoder_JPEG_stb.m ├── O2ImageDestination.h ├── O2ImageDestination.m ├── O2ImageSource.h ├── O2ImageSource.m ├── O2ImageSource_BMP.h ├── O2ImageSource_BMP.m ├── O2ImageSource_GIF.h ├── O2ImageSource_GIF.m ├── O2ImageSource_ICNS.h ├── O2ImageSource_ICNS.m ├── O2ImageSource_JPEG.h ├── O2ImageSource_JPEG.m ├── O2ImageSource_PNG.h ├── O2ImageSource_PNG.m ├── O2ImageSource_TIFF.h ├── O2ImageSource_TIFF.m ├── O2LZW.h ├── O2LZW.m ├── O2Layer.h ├── O2Layer.m ├── O2MutablePath.h ├── O2MutablePath.m ├── O2PDFArray.h ├── O2PDFArray.m ├── O2PDFBlock.h ├── O2PDFBlock.m ├── O2PDFCharWidths.h ├── O2PDFCharWidths.m ├── O2PDFContentStream.h ├── O2PDFContentStream.m ├── O2PDFContext.h ├── O2PDFContext.m ├── O2PDFDictionary.h ├── O2PDFDictionary.m ├── O2PDFDocument.h ├── O2PDFDocument.m ├── O2PDFFilter.h ├── O2PDFFilter.m ├── O2PDFFont.h ├── O2PDFFont.m ├── O2PDFFunction_Type0.h ├── O2PDFFunction_Type0.m ├── O2PDFFunction_Type2.h ├── O2PDFFunction_Type2.m ├── O2PDFFunction_Type3.h ├── O2PDFFunction_Type3.m ├── O2PDFFunction_Type4.h ├── O2PDFFunction_Type4.m ├── O2PDFObject.h ├── O2PDFObject.m ├── O2PDFObject_Boolean.h ├── O2PDFObject_Boolean.m ├── O2PDFObject_Integer.h ├── O2PDFObject_Integer.m ├── O2PDFObject_Name.h ├── O2PDFObject_Name.m ├── O2PDFObject_R.h ├── O2PDFObject_R.m ├── O2PDFObject_Real.h ├── O2PDFObject_Real.m ├── O2PDFObject_const.h ├── O2PDFObject_const.m ├── O2PDFObject_identifier.h ├── O2PDFObject_identifier.m ├── O2PDFOperatorTable.h ├── O2PDFOperatorTable.m ├── O2PDFOperators.h ├── O2PDFOperators.m ├── O2PDFPage.h ├── O2PDFPage.m ├── O2PDFScanner.h ├── O2PDFScanner.m ├── O2PDFStream.h ├── O2PDFStream.m ├── O2PDFString.h ├── O2PDFString.m ├── O2PDFxref.h ├── O2PDFxref.m ├── O2PDFxrefEntry.h ├── O2PDFxrefEntry.m ├── O2Paint.h ├── O2Paint.m ├── O2Paint_axialGradient.h ├── O2Paint_axialGradient.m ├── O2Paint_color.h ├── O2Paint_color.m ├── O2Paint_image.h ├── O2Paint_image.m ├── O2Paint_pattern.h ├── O2Paint_pattern.m ├── O2Paint_radialGradient.h ├── O2Paint_radialGradient.m ├── O2Paint_ramp.h ├── O2Paint_ramp.m ├── O2Path.h ├── O2Path.m ├── O2Pattern.h ├── O2Pattern.m ├── O2Shading+PDF.h ├── O2Shading+PDF.m ├── O2Shading.h ├── O2Shading.m ├── O2Surface.h ├── O2Surface.m ├── O2TIFFImageDirectory.h ├── O2TIFFImageDirectory.m ├── O2TTFDecoder.h ├── O2TTFDecoder.m ├── O2argb32f.h ├── O2argb32f.m ├── O2argb8u.h ├── O2argb8u.m ├── O2zlib.h ├── O2zlib.m ├── Onyx2D.xcodeproj │ └── project.pbxproj ├── VGPath.h ├── VGPath.m ├── VGmath.h ├── gif_lib.h ├── gif_lib.m └── platform_Windows │ ├── O2Context_builtin_gdi.h │ ├── O2Context_builtin_gdi.m │ ├── O2Context_gdi.h │ ├── O2Context_gdi.m │ ├── O2DeviceContext_gdi.h │ ├── O2DeviceContext_gdi.m │ ├── O2DeviceContext_gdiDIBSection.h │ ├── O2DeviceContext_gdiDIBSection.m │ ├── O2Font_gdi.h │ ├── O2Font_gdi.m │ ├── O2Surface_DIBSection.h │ ├── O2Surface_DIBSection.m │ ├── Win32Font.h │ └── Win32Font.m ├── OpenGL ├── CGLCurrent.h ├── CGLTypes.h ├── Info.plist ├── OpenGL.h ├── OpenGL.m ├── OpenGL.xcodeproj │ └── project.pbxproj ├── gl.h ├── glext.h ├── glu.h ├── glweak.h └── wglext.h ├── PDFKit ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── PDFDocument.h ├── PDFDocument.m ├── PDFDocumentView.h ├── PDFDocumentView.m ├── PDFKit.h ├── PDFKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── PDFKit-Windows-i386.xcscheme ├── PDFKitExport.h ├── PDFKit_Framework.m ├── PDFPage.h ├── PDFPage.m ├── PDFPageView.h ├── PDFPageView.m ├── PDFSelectedRange.h ├── PDFSelectedRange.m ├── PDFSelection.h ├── PDFSelection.m ├── PDFView.h └── PDFView.m ├── Quartz ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── Quartz.h └── Quartz.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ └── Quartz-Windows-i386.xcscheme ├── QuartzCore ├── CAAction.h ├── CAAnimation.h ├── CAAnimation.m ├── CAAnimationGroup.h ├── CAAnimationGroup.m ├── CABase.h ├── CABase.m ├── CABasicAnimation.h ├── CABasicAnimation.m ├── CALayer.h ├── CALayer.m ├── CALayerContext.h ├── CALayerContext.m ├── CAMediaTiming.h ├── CAMediaTimingFunction.h ├── CAMediaTimingFunction.m ├── CAPropertyAnimation.h ├── CAPropertyAnimation.m ├── CARenderer.h ├── CARenderer.m ├── CATransaction.h ├── CATransaction.m ├── CATransactionGroup.h ├── CATransactionGroup.m ├── CATransform3D.h ├── CATransform3D.m ├── CATransition.h ├── CATransition.m ├── CAValueFunction.h ├── CAValueFunction.m ├── CAWindowOpenGLContext.h ├── CAWindowOpenGLContext.m ├── CIAffineTransform.h ├── CIAffineTransform.m ├── CIBloom.h ├── CIBloom.m ├── CIBoxBlur.h ├── CIBoxBlur.m ├── CIColor.h ├── CIColor.m ├── CIContext.h ├── CIContext.m ├── CIFilter.h ├── CIFilter.m ├── CIImage.h ├── CIImage.m ├── CILinearGradient.h ├── CILinearGradient.m ├── CIVector.h ├── CIVector.m ├── CoreAnimation.h ├── CoreImage.h ├── CoreVideo.h ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── QuartzCore.h └── QuartzCore.xcodeproj │ └── project.pbxproj ├── README ├── ScriptingBridge ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── SBApplication.h ├── SBApplication.m ├── SBElementArray.h ├── SBElementArray.m ├── SBObject.h ├── SBObject.m ├── ScriptingBridge.h ├── ScriptingBridge.xcodeproj │ └── project.pbxproj └── dllmain.m ├── Security ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── SecAccess.h ├── SecAccess.m ├── SecBase.h ├── SecBase.m ├── SecKeychain.h ├── SecKeychain.m ├── SecKeychainCursor.h ├── SecKeychainCursor.m ├── SecKeychainItem.h ├── SecKeychainItem.m ├── SecKeychainSearch.h ├── SecKeychainSearch.m ├── SecTrustedApplication.h ├── SecTrustedApplication.m ├── Security.h ├── Security.xcodeproj │ └── project.pbxproj └── version.plist ├── makefiles ├── Foundation │ ├── Makefile │ └── rsc │ │ ├── NSTimeZoneAbbreviations.plist │ │ └── NSUserDefaults.plist ├── Makefile ├── Makefiles │ ├── Makefile.app │ ├── Makefile.common │ └── Makefile.framework ├── README.txt └── test │ ├── Makefile │ └── src │ └── test.m ├── objc ├── Info.plist ├── ObjCArray.c ├── ObjCArray.h ├── ObjCDynamicModule.c ├── ObjCDynamicModule.h ├── ObjCHashTable.c ├── ObjCHashTable.h ├── ObjCModule.c ├── ObjCModule.h ├── Object.h ├── Object.m ├── Protocol.h ├── Protocol.m ├── deprecated.h ├── dyld.c ├── dyld.h ├── message.h ├── objc-auto.h ├── objc-class.h ├── objc-export.h ├── objc-runtime.h ├── objc.h ├── objc.m ├── objc.xcodeproj │ └── project.pbxproj ├── objc_arc.c ├── objc_arc.h ├── objc_association.m ├── objc_cache.h ├── objc_class.c ├── objc_class.h ├── objc_debugHelpers.h ├── objc_debugHelpers.m ├── objc_exception.m ├── objc_functions.c ├── objc_ivar.c ├── objc_lock.h ├── objc_log.c ├── objc_log.h ├── objc_malloc.c ├── objc_malloc.h ├── objc_method.c ├── objc_msg_lookup.c ├── objc_object.c ├── objc_object.h ├── objc_property.c ├── objc_protocol.c ├── objc_protocol.h ├── objc_sel.c ├── objc_sel.h ├── objc_tls.c ├── objc_tls.h ├── platform_darwin │ ├── OBJCRegisterModule_Darwin.h │ ├── OBJCRegisterModule_Darwin.m │ ├── objc_msgSend-darwin-i386.s │ └── objc_msgSend-darwin-ppc.s ├── platform_linux │ ├── objc-msgsend-x86_64.s │ └── objc-msgsend.s ├── platform_windows │ └── objc-msgsend.s └── runtime.h ├── pthread ├── pthread.h ├── pthread.m ├── pthread.xcodeproj │ └── project.pbxproj └── sched.h ├── testing ├── Examples │ ├── CGShadingCreate │ │ ├── CGShadingCreate.xcodeproj │ │ │ └── project.pbxproj │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ ├── GradientView.h │ │ ├── GradientView.m │ │ ├── Info.plist │ │ └── main.m │ ├── CGShadingCreateAxial │ │ ├── CGShadingCreateAxial.xcodeproj │ │ │ └── project.pbxproj │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ ├── GradientView.h │ │ ├── GradientView.m │ │ ├── Info.plist │ │ └── main.m │ ├── NSOpenGLView │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable-windows.strings │ │ │ ├── Localizable.strings │ │ │ └── MainMenu.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ ├── MyOpenGLView.h │ │ ├── MyOpenGLView.m │ │ ├── NSOpenGLView.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.m │ ├── Quartz2D │ │ ├── Demo.h │ │ ├── Demo.m │ │ ├── DemoAffineImages.h │ │ ├── DemoAffineImages.m │ │ ├── DemoAntialias.h │ │ ├── DemoAntialias.m │ │ ├── DemoGradient.h │ │ ├── DemoGradient.m │ │ ├── DemoJoinCapDash.h │ │ ├── DemoJoinCapDash.m │ │ ├── DemoPaths.h │ │ ├── DemoPaths.m │ │ ├── DemoPattern.h │ │ ├── DemoPattern.m │ │ ├── DemoPorterDuff.h │ │ ├── DemoPorterDuff.m │ │ ├── DemoSoftMask.h │ │ ├── DemoSoftMask.m │ │ ├── DemoView.h │ │ ├── DemoView.m │ │ ├── DemoWindingRules.h │ │ ├── DemoWindingRules.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Quartz2D-Info.plist │ │ ├── Quartz2D.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Quartz2DAppDelegate.h │ │ ├── Quartz2DAppDelegate.m │ │ ├── Quartz2D_Prefix.pch │ │ ├── main.m │ │ ├── pattern.png │ │ └── stankard.png │ └── TextEditor │ │ ├── English.lproj │ │ ├── Credits.rtf │ │ ├── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── MyDocument.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ ├── MyDocument.h │ │ ├── MyDocument.m │ │ ├── TextEditor.xcodeproj │ │ └── project.pbxproj │ │ └── main.m ├── FoundationTest │ ├── FoundationTest.xcodeproj │ │ └── project.pbxproj │ └── FoundationTest │ │ └── main.m ├── OnyxPDFRasterizer │ ├── OnyxPDFRasterizer.m │ └── OnyxPDFRasterizer.xcodeproj │ │ └── project.pbxproj ├── SWRender │ ├── CoreGraphics_KG.h │ ├── DemoCGContext.m │ ├── DemoContext.h │ ├── DemoContext.m │ ├── DemoKGContext.m │ ├── DemosTemplate.m │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ │ ├── classes.nib │ │ │ ├── designable.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ ├── Info.plist │ ├── KGImageView.h │ ├── KGImageView.m │ ├── KGRender.h │ ├── KGRender.m │ ├── KGRenderController.h │ ├── KGRenderController.m │ ├── O2Font_CG.h │ ├── O2Font_CG.m │ ├── README.txt │ ├── SWRender.xcodeproj │ │ └── project.pbxproj │ ├── main.m │ ├── overlay.jpg │ ├── overlay.png │ ├── pattern.jpg │ └── redLZWSquare.tif └── UnitTests │ ├── Apple.bplist.keyedArchive │ ├── Array.h │ ├── Array.m │ ├── Bindings │ ├── NibBasedTest.h │ ├── NibBasedTest.m │ ├── ObjectController.h │ ├── ObjectController.m │ ├── ObjectController.xib │ ├── ObservableArray.h │ ├── ObservableArray.m │ ├── TableViewTest.h │ ├── TableViewTest.m │ ├── TableViewTest.xib │ ├── TextFieldBindings.h │ ├── TextFieldBindings.m │ └── TextFieldBindings.xib │ ├── Cocotron.keyedArchive │ ├── CrashCatcher.m │ ├── English.lproj │ └── InfoPlist.strings │ ├── FileHandle.h │ ├── FileHandle.m │ ├── ForEach.h │ ├── ForEach.m │ ├── Forwarding.h │ ├── Forwarding.m │ ├── Info.plist │ ├── KVC.h │ ├── KVC.m │ ├── KVO.h │ ├── KVO.m │ ├── KeyedArchiving.h │ ├── KeyedArchiving.m │ ├── MessageBenchmark.h │ ├── MessageBenchmark.m │ ├── MessageSend.m │ ├── MessageSendTorture.h │ ├── MessageSendTorture.m │ ├── NewStyleExceptions.h │ ├── NewStyleExceptions.m │ ├── ObjCXXExceptions.h │ ├── ObjCXXExceptions.mm │ ├── OperationQueueTests.h │ ├── OperationQueueTests.m │ ├── Predicate.h │ ├── Predicate.m │ ├── Properties.h │ ├── Properties.m │ ├── PropertyListUnarchiving.h │ ├── PropertyListUnarchiving.m │ ├── README │ ├── Resources │ ├── Binary.plist │ └── XML.plist │ ├── RetainRelease.h │ ├── RetainRelease.m │ ├── Runloop.h │ ├── Runloop.m │ ├── SenTestingKit-Projects │ ├── SenTestingKit.xcodeproj │ │ └── project.pbxproj │ └── otest.xcodeproj │ │ └── project.pbxproj │ ├── SizeAndAlignment.h │ ├── SizeAndAlignment.m │ ├── TestingHarness.xcodeproj │ └── project.pbxproj │ ├── URLTest.h │ ├── URLTest.m │ ├── UnitTests-i386-Darwin-Info.plist │ ├── UnitTests.xcodeproj │ └── project.pbxproj │ ├── UnitTests_Prefix.pch │ ├── local_server_config_example.sh │ └── main.m └── xcconfig ├── darwin-i386-Foundation.xcconfig ├── darwin-i386-framework.xcconfig ├── darwin-i386.xcconfig ├── darwin-ppc-framework.xcconfig ├── darwin-ppc.xcconfig ├── darwin-x86_64-Foundation.xcconfig ├── darwin-x86_64-framework.xcconfig ├── darwin-x86_64.xcconfig ├── darwin.xcconfig ├── freebsd-i386-Foundation.xcconfig ├── freebsd-i386-framework.xcconfig ├── freebsd-i386.xcconfig ├── freebsd.xcconfig ├── linux-arm-Foundation.xcconfig ├── linux-arm-framework.xcconfig ├── linux-arm.xcconfig ├── linux-i386-Foundation.xcconfig ├── linux-i386-framework.xcconfig ├── linux-i386.xcconfig ├── linux-ppc-framework.xcconfig ├── linux-ppc.xcconfig ├── linux.xcconfig ├── platform-framework.xcconfig ├── platform.xcconfig ├── solaris-sparc-Foundation.xcconfig ├── solaris-sparc-framework.xcconfig ├── solaris-sparc.xcconfig ├── solaris.xcconfig ├── windows-i386-AppKit.xcconfig ├── windows-i386-Foundation.xcconfig ├── windows-i386-bundle.xcconfig ├── windows-i386-clang.xcconfig ├── windows-i386-framework.xcconfig ├── windows-i386.xcconfig └── windows.xcconfig /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/.hgignore -------------------------------------------------------------------------------- /AppKit/AppKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/AppKit.h -------------------------------------------------------------------------------- /AppKit/AppKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/AppKitExport.h -------------------------------------------------------------------------------- /AppKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/Info.plist -------------------------------------------------------------------------------- /AppKit/NSAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAccessibility.h -------------------------------------------------------------------------------- /AppKit/NSAccessibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAccessibility.m -------------------------------------------------------------------------------- /AppKit/NSActionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSActionCell.h -------------------------------------------------------------------------------- /AppKit/NSActionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSActionCell.m -------------------------------------------------------------------------------- /AppKit/NSActionTemplate.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSActionTemplate.ai -------------------------------------------------------------------------------- /AppKit/NSActionTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSActionTemplate.pdf -------------------------------------------------------------------------------- /AppKit/NSAddTemplate.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAddTemplate.ai -------------------------------------------------------------------------------- /AppKit/NSAddTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAddTemplate.pdf -------------------------------------------------------------------------------- /AppKit/NSAdvanced.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAdvanced.ai -------------------------------------------------------------------------------- /AppKit/NSAdvanced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAdvanced.pdf -------------------------------------------------------------------------------- /AppKit/NSAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAffineTransform.h -------------------------------------------------------------------------------- /AppKit/NSAffineTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAffineTransform.m -------------------------------------------------------------------------------- /AppKit/NSAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAlert.h -------------------------------------------------------------------------------- /AppKit/NSAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAlert.m -------------------------------------------------------------------------------- /AppKit/NSAlertPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAlertPanel.h -------------------------------------------------------------------------------- /AppKit/NSAlertPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAlertPanel.m -------------------------------------------------------------------------------- /AppKit/NSApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSApplication.h -------------------------------------------------------------------------------- /AppKit/NSApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSApplication.m -------------------------------------------------------------------------------- /AppKit/NSAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAttributedString.h -------------------------------------------------------------------------------- /AppKit/NSAttributedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSAttributedString.m -------------------------------------------------------------------------------- /AppKit/NSBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBezierPath.h -------------------------------------------------------------------------------- /AppKit/NSBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBezierPath.m -------------------------------------------------------------------------------- /AppKit/NSBitmapImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBitmapImageRep.h -------------------------------------------------------------------------------- /AppKit/NSBitmapImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBitmapImageRep.m -------------------------------------------------------------------------------- /AppKit/NSBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBox.h -------------------------------------------------------------------------------- /AppKit/NSBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBox.m -------------------------------------------------------------------------------- /AppKit/NSBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBrowser.h -------------------------------------------------------------------------------- /AppKit/NSBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBrowser.m -------------------------------------------------------------------------------- /AppKit/NSBrowserCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBrowserCell.h -------------------------------------------------------------------------------- /AppKit/NSBrowserCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSBrowserCell.m -------------------------------------------------------------------------------- /AppKit/NSButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSButton.h -------------------------------------------------------------------------------- /AppKit/NSButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSButton.m -------------------------------------------------------------------------------- /AppKit/NSButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSButtonCell.h -------------------------------------------------------------------------------- /AppKit/NSButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSButtonCell.m -------------------------------------------------------------------------------- /AppKit/NSCIImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCIImageRep.h -------------------------------------------------------------------------------- /AppKit/NSCIImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCIImageRep.m -------------------------------------------------------------------------------- /AppKit/NSCachedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCachedImageRep.h -------------------------------------------------------------------------------- /AppKit/NSCachedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCachedImageRep.m -------------------------------------------------------------------------------- /AppKit/NSCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCell.h -------------------------------------------------------------------------------- /AppKit/NSCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCell.m -------------------------------------------------------------------------------- /AppKit/NSCellUndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCellUndoManager.h -------------------------------------------------------------------------------- /AppKit/NSCellUndoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCellUndoManager.m -------------------------------------------------------------------------------- /AppKit/NSClipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSClipView.h -------------------------------------------------------------------------------- /AppKit/NSClipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSClipView.m -------------------------------------------------------------------------------- /AppKit/NSColorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorList.h -------------------------------------------------------------------------------- /AppKit/NSColorList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorList.m -------------------------------------------------------------------------------- /AppKit/NSColorPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorPanel.h -------------------------------------------------------------------------------- /AppKit/NSColorPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorPanel.m -------------------------------------------------------------------------------- /AppKit/NSColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorSpace.h -------------------------------------------------------------------------------- /AppKit/NSColorSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorSpace.m -------------------------------------------------------------------------------- /AppKit/NSColorWell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorWell.h -------------------------------------------------------------------------------- /AppKit/NSColorWell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSColorWell.m -------------------------------------------------------------------------------- /AppKit/NSComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBox.h -------------------------------------------------------------------------------- /AppKit/NSComboBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBox.m -------------------------------------------------------------------------------- /AppKit/NSComboBoxCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBoxCell.h -------------------------------------------------------------------------------- /AppKit/NSComboBoxCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBoxCell.m -------------------------------------------------------------------------------- /AppKit/NSComboBoxView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBoxView.h -------------------------------------------------------------------------------- /AppKit/NSComboBoxView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBoxView.m -------------------------------------------------------------------------------- /AppKit/NSComboBoxWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBoxWindow.h -------------------------------------------------------------------------------- /AppKit/NSComboBoxWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSComboBoxWindow.m -------------------------------------------------------------------------------- /AppKit/NSControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSControl.h -------------------------------------------------------------------------------- /AppKit/NSControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSControl.m -------------------------------------------------------------------------------- /AppKit/NSCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCursor.h -------------------------------------------------------------------------------- /AppKit/NSCursor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCursor.m -------------------------------------------------------------------------------- /AppKit/NSCursorRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCursorRect.h -------------------------------------------------------------------------------- /AppKit/NSCursorRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCursorRect.m -------------------------------------------------------------------------------- /AppKit/NSCustomImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCustomImageRep.h -------------------------------------------------------------------------------- /AppKit/NSCustomImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSCustomImageRep.m -------------------------------------------------------------------------------- /AppKit/NSDatePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDatePicker.h -------------------------------------------------------------------------------- /AppKit/NSDatePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDatePicker.m -------------------------------------------------------------------------------- /AppKit/NSDatePickerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDatePickerCell.h -------------------------------------------------------------------------------- /AppKit/NSDatePickerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDatePickerCell.m -------------------------------------------------------------------------------- /AppKit/NSDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDisplay.h -------------------------------------------------------------------------------- /AppKit/NSDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDisplay.m -------------------------------------------------------------------------------- /AppKit/NSDockTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDockTile.h -------------------------------------------------------------------------------- /AppKit/NSDockTile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDockTile.m -------------------------------------------------------------------------------- /AppKit/NSDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDocument.h -------------------------------------------------------------------------------- /AppKit/NSDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDocument.m -------------------------------------------------------------------------------- /AppKit/NSDocumentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDocumentController.h -------------------------------------------------------------------------------- /AppKit/NSDocumentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDocumentController.m -------------------------------------------------------------------------------- /AppKit/NSDragging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDragging.h -------------------------------------------------------------------------------- /AppKit/NSDraggingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDraggingManager.h -------------------------------------------------------------------------------- /AppKit/NSDraggingManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSDraggingManager.m -------------------------------------------------------------------------------- /AppKit/NSEPSImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSEPSImageRep.h -------------------------------------------------------------------------------- /AppKit/NSEPSImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSEPSImageRep.m -------------------------------------------------------------------------------- /AppKit/NSErrors.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppKit/NSFileWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFileWrapper.h -------------------------------------------------------------------------------- /AppKit/NSFileWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFileWrapper.m -------------------------------------------------------------------------------- /AppKit/NSFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFont.h -------------------------------------------------------------------------------- /AppKit/NSFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFont.m -------------------------------------------------------------------------------- /AppKit/NSFontDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontDescriptor.h -------------------------------------------------------------------------------- /AppKit/NSFontDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontDescriptor.m -------------------------------------------------------------------------------- /AppKit/NSFontFamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontFamily.h -------------------------------------------------------------------------------- /AppKit/NSFontFamily.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontFamily.m -------------------------------------------------------------------------------- /AppKit/NSFontManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontManager.h -------------------------------------------------------------------------------- /AppKit/NSFontManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontManager.m -------------------------------------------------------------------------------- /AppKit/NSFontMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontMetric.h -------------------------------------------------------------------------------- /AppKit/NSFontMetric.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontMetric.m -------------------------------------------------------------------------------- /AppKit/NSFontPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontPanel.h -------------------------------------------------------------------------------- /AppKit/NSFontPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontPanel.m -------------------------------------------------------------------------------- /AppKit/NSFontPanelCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontPanelCell.h -------------------------------------------------------------------------------- /AppKit/NSFontPanelCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontPanelCell.m -------------------------------------------------------------------------------- /AppKit/NSFontTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontTypeface.h -------------------------------------------------------------------------------- /AppKit/NSFontTypeface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFontTypeface.m -------------------------------------------------------------------------------- /AppKit/NSForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSForm.h -------------------------------------------------------------------------------- /AppKit/NSForm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSForm.m -------------------------------------------------------------------------------- /AppKit/NSFormCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFormCell.h -------------------------------------------------------------------------------- /AppKit/NSFormCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSFormCell.m -------------------------------------------------------------------------------- /AppKit/NSGlyphGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGlyphGenerator.h -------------------------------------------------------------------------------- /AppKit/NSGlyphGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGlyphGenerator.m -------------------------------------------------------------------------------- /AppKit/NSGlyphInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGlyphInfo.h -------------------------------------------------------------------------------- /AppKit/NSGlyphInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGlyphInfo.m -------------------------------------------------------------------------------- /AppKit/NSGoLeftTemplate.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGoLeftTemplate.ai -------------------------------------------------------------------------------- /AppKit/NSGoLeftTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGoLeftTemplate.pdf -------------------------------------------------------------------------------- /AppKit/NSGoRightTemplate.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGoRightTemplate.ai -------------------------------------------------------------------------------- /AppKit/NSGoRightTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGoRightTemplate.pdf -------------------------------------------------------------------------------- /AppKit/NSGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGradient.h -------------------------------------------------------------------------------- /AppKit/NSGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGradient.m -------------------------------------------------------------------------------- /AppKit/NSGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGraphics.h -------------------------------------------------------------------------------- /AppKit/NSGraphics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGraphics.m -------------------------------------------------------------------------------- /AppKit/NSGraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGraphicsContext.h -------------------------------------------------------------------------------- /AppKit/NSGraphicsContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSGraphicsContext.m -------------------------------------------------------------------------------- /AppKit/NSHelpManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSHelpManager.h -------------------------------------------------------------------------------- /AppKit/NSHelpManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSHelpManager.m -------------------------------------------------------------------------------- /AppKit/NSImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImage.h -------------------------------------------------------------------------------- /AppKit/NSImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImage.m -------------------------------------------------------------------------------- /AppKit/NSImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImageCell.h -------------------------------------------------------------------------------- /AppKit/NSImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImageCell.m -------------------------------------------------------------------------------- /AppKit/NSImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImageRep.h -------------------------------------------------------------------------------- /AppKit/NSImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImageRep.m -------------------------------------------------------------------------------- /AppKit/NSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImageView.h -------------------------------------------------------------------------------- /AppKit/NSImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSImageView.m -------------------------------------------------------------------------------- /AppKit/NSInfo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSInfo.ai -------------------------------------------------------------------------------- /AppKit/NSInfo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSInfo.pdf -------------------------------------------------------------------------------- /AppKit/NSInterfaceStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSInterfaceStyle.h -------------------------------------------------------------------------------- /AppKit/NSInterfaceStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSInterfaceStyle.m -------------------------------------------------------------------------------- /AppKit/NSLevelIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSLevelIndicator.h -------------------------------------------------------------------------------- /AppKit/NSLevelIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSLevelIndicator.m -------------------------------------------------------------------------------- /AppKit/NSLevelIndicatorCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSLevelIndicatorCell.h -------------------------------------------------------------------------------- /AppKit/NSLevelIndicatorCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSLevelIndicatorCell.m -------------------------------------------------------------------------------- /AppKit/NSMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSMatrix.h -------------------------------------------------------------------------------- /AppKit/NSMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSMatrix.m -------------------------------------------------------------------------------- /AppKit/NSMeasurementUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSMeasurementUnit.h -------------------------------------------------------------------------------- /AppKit/NSMeasurementUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSMeasurementUnit.m -------------------------------------------------------------------------------- /AppKit/NSModalSessionX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSModalSessionX.h -------------------------------------------------------------------------------- /AppKit/NSModalSessionX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSModalSessionX.m -------------------------------------------------------------------------------- /AppKit/NSOpenGL/NSOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSOpenGL/NSOpenGL.h -------------------------------------------------------------------------------- /AppKit/NSOpenPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSOpenPanel.h -------------------------------------------------------------------------------- /AppKit/NSOpenPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSOpenPanel.m -------------------------------------------------------------------------------- /AppKit/NSOutlineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSOutlineView.h -------------------------------------------------------------------------------- /AppKit/NSOutlineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSOutlineView.m -------------------------------------------------------------------------------- /AppKit/NSPDFImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPDFImageRep.h -------------------------------------------------------------------------------- /AppKit/NSPDFImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPDFImageRep.m -------------------------------------------------------------------------------- /AppKit/NSPageLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPageLayout.h -------------------------------------------------------------------------------- /AppKit/NSPageLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPageLayout.m -------------------------------------------------------------------------------- /AppKit/NSPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPanel.h -------------------------------------------------------------------------------- /AppKit/NSPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPanel.m -------------------------------------------------------------------------------- /AppKit/NSParagraphStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSParagraphStyle.h -------------------------------------------------------------------------------- /AppKit/NSParagraphStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSParagraphStyle.m -------------------------------------------------------------------------------- /AppKit/NSPasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPasteboard.h -------------------------------------------------------------------------------- /AppKit/NSPasteboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPasteboard.m -------------------------------------------------------------------------------- /AppKit/NSPathCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPathCell.h -------------------------------------------------------------------------------- /AppKit/NSPathCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPathCell.m -------------------------------------------------------------------------------- /AppKit/NSPathComponentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPathComponentCell.h -------------------------------------------------------------------------------- /AppKit/NSPathComponentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPathComponentCell.m -------------------------------------------------------------------------------- /AppKit/NSPathControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPathControl.h -------------------------------------------------------------------------------- /AppKit/NSPathControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPathControl.m -------------------------------------------------------------------------------- /AppKit/NSPoof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPoof.png -------------------------------------------------------------------------------- /AppKit/NSPoofAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPoofAnimation.h -------------------------------------------------------------------------------- /AppKit/NSPoofAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPoofAnimation.m -------------------------------------------------------------------------------- /AppKit/NSPopUpButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpButton.h -------------------------------------------------------------------------------- /AppKit/NSPopUpButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpButton.m -------------------------------------------------------------------------------- /AppKit/NSPopUpButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpButtonCell.h -------------------------------------------------------------------------------- /AppKit/NSPopUpButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpButtonCell.m -------------------------------------------------------------------------------- /AppKit/NSPopUpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpView.h -------------------------------------------------------------------------------- /AppKit/NSPopUpView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpView.m -------------------------------------------------------------------------------- /AppKit/NSPopUpWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpWindow.h -------------------------------------------------------------------------------- /AppKit/NSPopUpWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPopUpWindow.m -------------------------------------------------------------------------------- /AppKit/NSPredicateEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPredicateEditor.h -------------------------------------------------------------------------------- /AppKit/NSPredicateEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPredicateEditor.m -------------------------------------------------------------------------------- /AppKit/NSPrintInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrintInfo.h -------------------------------------------------------------------------------- /AppKit/NSPrintInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrintInfo.m -------------------------------------------------------------------------------- /AppKit/NSPrintOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrintOperation.h -------------------------------------------------------------------------------- /AppKit/NSPrintOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrintOperation.m -------------------------------------------------------------------------------- /AppKit/NSPrintPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrintPanel.h -------------------------------------------------------------------------------- /AppKit/NSPrintPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrintPanel.m -------------------------------------------------------------------------------- /AppKit/NSPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrinter.h -------------------------------------------------------------------------------- /AppKit/NSPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSPrinter.m -------------------------------------------------------------------------------- /AppKit/NSProgressIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSProgressIndicator.h -------------------------------------------------------------------------------- /AppKit/NSProgressIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSProgressIndicator.m -------------------------------------------------------------------------------- /AppKit/NSRadioButton.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRadioButton.tiff -------------------------------------------------------------------------------- /AppKit/NSRefreshTemplate.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRefreshTemplate.ai -------------------------------------------------------------------------------- /AppKit/NSRefreshTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRefreshTemplate.pdf -------------------------------------------------------------------------------- /AppKit/NSRemoveTemplate.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRemoveTemplate.ai -------------------------------------------------------------------------------- /AppKit/NSRemoveTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRemoveTemplate.pdf -------------------------------------------------------------------------------- /AppKit/NSResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSResponder.h -------------------------------------------------------------------------------- /AppKit/NSResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSResponder.m -------------------------------------------------------------------------------- /AppKit/NSRuleEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRuleEditor.h -------------------------------------------------------------------------------- /AppKit/NSRuleEditor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRuleEditor.m -------------------------------------------------------------------------------- /AppKit/NSRulerMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRulerMarker.h -------------------------------------------------------------------------------- /AppKit/NSRulerMarker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRulerMarker.m -------------------------------------------------------------------------------- /AppKit/NSRulerMarkerTab.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRulerMarkerTab.tiff -------------------------------------------------------------------------------- /AppKit/NSRulerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRulerView.h -------------------------------------------------------------------------------- /AppKit/NSRulerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSRulerView.m -------------------------------------------------------------------------------- /AppKit/NSSavePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSavePanel.h -------------------------------------------------------------------------------- /AppKit/NSSavePanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSavePanel.m -------------------------------------------------------------------------------- /AppKit/NSScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSScreen.h -------------------------------------------------------------------------------- /AppKit/NSScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSScreen.m -------------------------------------------------------------------------------- /AppKit/NSScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSScrollView.h -------------------------------------------------------------------------------- /AppKit/NSScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSScrollView.m -------------------------------------------------------------------------------- /AppKit/NSScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSScroller.h -------------------------------------------------------------------------------- /AppKit/NSScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSScroller.m -------------------------------------------------------------------------------- /AppKit/NSSearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSearchField.h -------------------------------------------------------------------------------- /AppKit/NSSearchField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSearchField.m -------------------------------------------------------------------------------- /AppKit/NSSearchFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSearchFieldCell.h -------------------------------------------------------------------------------- /AppKit/NSSearchFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSearchFieldCell.m -------------------------------------------------------------------------------- /AppKit/NSSearchGlass.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSearchGlass.ai -------------------------------------------------------------------------------- /AppKit/NSSearchGlass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSearchGlass.pdf -------------------------------------------------------------------------------- /AppKit/NSSecureTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSecureTextField.h -------------------------------------------------------------------------------- /AppKit/NSSecureTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSecureTextField.m -------------------------------------------------------------------------------- /AppKit/NSShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSShadow.h -------------------------------------------------------------------------------- /AppKit/NSShadow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSShadow.m -------------------------------------------------------------------------------- /AppKit/NSSheetContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSheetContext.h -------------------------------------------------------------------------------- /AppKit/NSSheetContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSheetContext.m -------------------------------------------------------------------------------- /AppKit/NSSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSlider.h -------------------------------------------------------------------------------- /AppKit/NSSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSlider.m -------------------------------------------------------------------------------- /AppKit/NSSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSliderCell.h -------------------------------------------------------------------------------- /AppKit/NSSliderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSliderCell.m -------------------------------------------------------------------------------- /AppKit/NSSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSound.h -------------------------------------------------------------------------------- /AppKit/NSSound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSound.m -------------------------------------------------------------------------------- /AppKit/NSSpellChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSpellChecker.h -------------------------------------------------------------------------------- /AppKit/NSSpellChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSpellChecker.m -------------------------------------------------------------------------------- /AppKit/NSSpellProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSpellProtocol.h -------------------------------------------------------------------------------- /AppKit/NSSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSplitView.h -------------------------------------------------------------------------------- /AppKit/NSSplitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSplitView.m -------------------------------------------------------------------------------- /AppKit/NSStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStatusBar.h -------------------------------------------------------------------------------- /AppKit/NSStatusBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStatusBar.m -------------------------------------------------------------------------------- /AppKit/NSStatusItem+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStatusItem+Private.h -------------------------------------------------------------------------------- /AppKit/NSStatusItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStatusItem.h -------------------------------------------------------------------------------- /AppKit/NSStatusItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStatusItem.m -------------------------------------------------------------------------------- /AppKit/NSStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStepper.h -------------------------------------------------------------------------------- /AppKit/NSStepper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStepper.m -------------------------------------------------------------------------------- /AppKit/NSStepperCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStepperCell.h -------------------------------------------------------------------------------- /AppKit/NSStepperCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStepperCell.m -------------------------------------------------------------------------------- /AppKit/NSStringDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStringDrawer.h -------------------------------------------------------------------------------- /AppKit/NSStringDrawer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStringDrawer.m -------------------------------------------------------------------------------- /AppKit/NSStringDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStringDrawing.h -------------------------------------------------------------------------------- /AppKit/NSStringDrawing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSStringDrawing.m -------------------------------------------------------------------------------- /AppKit/NSSwitch.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSSwitch.tiff -------------------------------------------------------------------------------- /AppKit/NSTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTabView.h -------------------------------------------------------------------------------- /AppKit/NSTabView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTabView.m -------------------------------------------------------------------------------- /AppKit/NSTabViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTabViewItem.h -------------------------------------------------------------------------------- /AppKit/NSTabViewItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTabViewItem.m -------------------------------------------------------------------------------- /AppKit/NSTableColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableColumn.h -------------------------------------------------------------------------------- /AppKit/NSTableColumn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableColumn.m -------------------------------------------------------------------------------- /AppKit/NSTableCornerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableCornerView.h -------------------------------------------------------------------------------- /AppKit/NSTableCornerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableCornerView.m -------------------------------------------------------------------------------- /AppKit/NSTableHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableHeaderCell.h -------------------------------------------------------------------------------- /AppKit/NSTableHeaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableHeaderCell.m -------------------------------------------------------------------------------- /AppKit/NSTableHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableHeaderView.h -------------------------------------------------------------------------------- /AppKit/NSTableHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableHeaderView.m -------------------------------------------------------------------------------- /AppKit/NSTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableView.h -------------------------------------------------------------------------------- /AppKit/NSTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTableView.m -------------------------------------------------------------------------------- /AppKit/NSText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSText.h -------------------------------------------------------------------------------- /AppKit/NSText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSText.m -------------------------------------------------------------------------------- /AppKit/NSTextAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextAttachment.h -------------------------------------------------------------------------------- /AppKit/NSTextAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextAttachment.m -------------------------------------------------------------------------------- /AppKit/NSTextAttachmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextAttachmentCell.h -------------------------------------------------------------------------------- /AppKit/NSTextAttachmentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextAttachmentCell.m -------------------------------------------------------------------------------- /AppKit/NSTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextField.h -------------------------------------------------------------------------------- /AppKit/NSTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextField.m -------------------------------------------------------------------------------- /AppKit/NSTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextFieldCell.h -------------------------------------------------------------------------------- /AppKit/NSTextFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextFieldCell.m -------------------------------------------------------------------------------- /AppKit/NSTextList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextList.h -------------------------------------------------------------------------------- /AppKit/NSTextList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTextList.m -------------------------------------------------------------------------------- /AppKit/NSThemeFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSThemeFrame.h -------------------------------------------------------------------------------- /AppKit/NSThemeFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSThemeFrame.m -------------------------------------------------------------------------------- /AppKit/NSTokenField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTokenField.h -------------------------------------------------------------------------------- /AppKit/NSTokenField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTokenField.m -------------------------------------------------------------------------------- /AppKit/NSTokenFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTokenFieldCell.h -------------------------------------------------------------------------------- /AppKit/NSTokenFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTokenFieldCell.m -------------------------------------------------------------------------------- /AppKit/NSToolTipWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSToolTipWindow.h -------------------------------------------------------------------------------- /AppKit/NSToolTipWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSToolTipWindow.m -------------------------------------------------------------------------------- /AppKit/NSTrackingArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTrackingArea.h -------------------------------------------------------------------------------- /AppKit/NSTrackingArea.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSTrackingArea.m -------------------------------------------------------------------------------- /AppKit/NSTreeNode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppKit/NSTreeNode.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppKit/NSUser.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSUser.ai -------------------------------------------------------------------------------- /AppKit/NSUser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSUser.pdf -------------------------------------------------------------------------------- /AppKit/NSView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSView.h -------------------------------------------------------------------------------- /AppKit/NSView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSView.m -------------------------------------------------------------------------------- /AppKit/NSViewBackingLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSViewBackingLayer.h -------------------------------------------------------------------------------- /AppKit/NSViewBackingLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSViewBackingLayer.m -------------------------------------------------------------------------------- /AppKit/NSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSViewController.h -------------------------------------------------------------------------------- /AppKit/NSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSViewController.m -------------------------------------------------------------------------------- /AppKit/NSWindow-Drag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindow-Drag.h -------------------------------------------------------------------------------- /AppKit/NSWindow-Drag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindow-Drag.m -------------------------------------------------------------------------------- /AppKit/NSWindow-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindow-Private.h -------------------------------------------------------------------------------- /AppKit/NSWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindow.h -------------------------------------------------------------------------------- /AppKit/NSWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindow.m -------------------------------------------------------------------------------- /AppKit/NSWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindowController.h -------------------------------------------------------------------------------- /AppKit/NSWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindowController.m -------------------------------------------------------------------------------- /AppKit/NSWindowScripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindowScripting.h -------------------------------------------------------------------------------- /AppKit/NSWindowScripting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWindowScripting.m -------------------------------------------------------------------------------- /AppKit/NSWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWorkspace.h -------------------------------------------------------------------------------- /AppKit/NSWorkspace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/NSWorkspace.m -------------------------------------------------------------------------------- /AppKit/Win32.subproj/glweak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/Win32.subproj/glweak.m -------------------------------------------------------------------------------- /AppKit/X11.subproj/X11Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/X11.subproj/X11Event.h -------------------------------------------------------------------------------- /AppKit/X11.subproj/X11Event.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/X11.subproj/X11Event.m -------------------------------------------------------------------------------- /AppKit/en.lproj/NSMenu.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/en.lproj/NSMenu.plist -------------------------------------------------------------------------------- /AppKit/fr.lproj/NSMenu.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/fr.lproj/NSMenu.plist -------------------------------------------------------------------------------- /AppKit/nib.subproj/NSNib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/nib.subproj/NSNib.h -------------------------------------------------------------------------------- /AppKit/nib.subproj/NSNib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/AppKit/nib.subproj/NSNib.m -------------------------------------------------------------------------------- /CFNetwork/CFHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/CFHost.h -------------------------------------------------------------------------------- /CFNetwork/CFHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/CFHost.m -------------------------------------------------------------------------------- /CFNetwork/CFNetServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/CFNetServices.h -------------------------------------------------------------------------------- /CFNetwork/CFNetServices.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CFNetwork/CFNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/CFNetwork.h -------------------------------------------------------------------------------- /CFNetwork/CFNetworkExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/CFNetworkExport.h -------------------------------------------------------------------------------- /CFNetwork/CFSocketStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/CFSocketStream.h -------------------------------------------------------------------------------- /CFNetwork/CFSocketStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/CFSocketStream.m -------------------------------------------------------------------------------- /CFNetwork/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CFNetwork/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CFNetwork/Info.plist -------------------------------------------------------------------------------- /CFSSLHandler_openssl/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Carbon/Carbon.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Carbon/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Carbon/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Carbon/Info.plist -------------------------------------------------------------------------------- /Cocoa/Cocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Cocoa/Cocoa.h -------------------------------------------------------------------------------- /Cocoa/Cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Cocoa/Cocoa.m -------------------------------------------------------------------------------- /Cocoa/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Cocoa/Info.plist -------------------------------------------------------------------------------- /CommonCrypto/CommonCryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CommonCrypto/CommonCryptor.h -------------------------------------------------------------------------------- /CommonCrypto/CommonCryptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CommonCrypto/CommonCryptor.m -------------------------------------------------------------------------------- /CommonCrypto/CommonDigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CommonCrypto/CommonDigest.h -------------------------------------------------------------------------------- /CommonCrypto/CommonDigest.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommonCrypto/CommonHMAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CommonCrypto/CommonHMAC.h -------------------------------------------------------------------------------- /CommonCrypto/CommonHMAC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CommonCrypto/CommonHMAC.m -------------------------------------------------------------------------------- /CommonCrypto/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CommonCrypto/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CommonCrypto/Info.plist -------------------------------------------------------------------------------- /CommonCrypto/dllmain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CommonCrypto/dllmain.m -------------------------------------------------------------------------------- /CoreData/CoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/CoreData.h -------------------------------------------------------------------------------- /CoreData/CoreDataErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/CoreDataErrors.h -------------------------------------------------------------------------------- /CoreData/CoreDataErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/CoreDataErrors.m -------------------------------------------------------------------------------- /CoreData/CoreDataExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/CoreDataExports.h -------------------------------------------------------------------------------- /CoreData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/Info.plist -------------------------------------------------------------------------------- /CoreData/Linux/CoreData.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CoreData/NSAtomicStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSAtomicStore.h -------------------------------------------------------------------------------- /CoreData/NSAtomicStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSAtomicStore.m -------------------------------------------------------------------------------- /CoreData/NSFetchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSFetchRequest.h -------------------------------------------------------------------------------- /CoreData/NSFetchRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSFetchRequest.m -------------------------------------------------------------------------------- /CoreData/NSManagedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSManagedObject.h -------------------------------------------------------------------------------- /CoreData/NSManagedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSManagedObject.m -------------------------------------------------------------------------------- /CoreData/NSManagedObjectID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSManagedObjectID.h -------------------------------------------------------------------------------- /CoreData/NSManagedObjectID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSManagedObjectID.m -------------------------------------------------------------------------------- /CoreData/NSManagedObjectSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSManagedObjectSet.h -------------------------------------------------------------------------------- /CoreData/NSManagedObjectSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSManagedObjectSet.m -------------------------------------------------------------------------------- /CoreData/NSPersistentStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSPersistentStore.h -------------------------------------------------------------------------------- /CoreData/NSPersistentStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/NSPersistentStore.m -------------------------------------------------------------------------------- /CoreData/dllmain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreData/dllmain.m -------------------------------------------------------------------------------- /CoreFoundation/CFArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFArray.h -------------------------------------------------------------------------------- /CoreFoundation/CFArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFArray.m -------------------------------------------------------------------------------- /CoreFoundation/CFBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBag.h -------------------------------------------------------------------------------- /CoreFoundation/CFBag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBag.m -------------------------------------------------------------------------------- /CoreFoundation/CFBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBase.h -------------------------------------------------------------------------------- /CoreFoundation/CFBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBase.m -------------------------------------------------------------------------------- /CoreFoundation/CFBinaryHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBinaryHeap.h -------------------------------------------------------------------------------- /CoreFoundation/CFBinaryHeap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBinaryHeap.m -------------------------------------------------------------------------------- /CoreFoundation/CFBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBitVector.h -------------------------------------------------------------------------------- /CoreFoundation/CFBitVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBitVector.m -------------------------------------------------------------------------------- /CoreFoundation/CFBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBundle.h -------------------------------------------------------------------------------- /CoreFoundation/CFBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFBundle.m -------------------------------------------------------------------------------- /CoreFoundation/CFByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFByteOrder.h -------------------------------------------------------------------------------- /CoreFoundation/CFByteOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFByteOrder.m -------------------------------------------------------------------------------- /CoreFoundation/CFCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFCalendar.h -------------------------------------------------------------------------------- /CoreFoundation/CFCalendar.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFData.h -------------------------------------------------------------------------------- /CoreFoundation/CFData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFData.m -------------------------------------------------------------------------------- /CoreFoundation/CFDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFDate.h -------------------------------------------------------------------------------- /CoreFoundation/CFDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFDate.m -------------------------------------------------------------------------------- /CoreFoundation/CFDateFormatter.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFDictionary.h -------------------------------------------------------------------------------- /CoreFoundation/CFDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFDictionary.m -------------------------------------------------------------------------------- /CoreFoundation/CFError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFError.h -------------------------------------------------------------------------------- /CoreFoundation/CFError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFError.m -------------------------------------------------------------------------------- /CoreFoundation/CFFileDescriptor.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFLocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFLocale.h -------------------------------------------------------------------------------- /CoreFoundation/CFLocale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFLocale.m -------------------------------------------------------------------------------- /CoreFoundation/CFMachPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFMachPort.h -------------------------------------------------------------------------------- /CoreFoundation/CFMachPort.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFMessagePort.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFNumber.h -------------------------------------------------------------------------------- /CoreFoundation/CFNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFNumber.m -------------------------------------------------------------------------------- /CoreFoundation/CFPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFPlugIn.h -------------------------------------------------------------------------------- /CoreFoundation/CFPlugIn.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFPropertyList.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFRunLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFRunLoop.h -------------------------------------------------------------------------------- /CoreFoundation/CFRunLoop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFRunLoop.m -------------------------------------------------------------------------------- /CoreFoundation/CFSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFSet.h -------------------------------------------------------------------------------- /CoreFoundation/CFSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFSet.m -------------------------------------------------------------------------------- /CoreFoundation/CFSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFSocket.h -------------------------------------------------------------------------------- /CoreFoundation/CFSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFSocket.m -------------------------------------------------------------------------------- /CoreFoundation/CFStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFStream.h -------------------------------------------------------------------------------- /CoreFoundation/CFStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFStream.m -------------------------------------------------------------------------------- /CoreFoundation/CFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFString.h -------------------------------------------------------------------------------- /CoreFoundation/CFString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFString.m -------------------------------------------------------------------------------- /CoreFoundation/CFStringTokenizer.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFTimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFTimeZone.h -------------------------------------------------------------------------------- /CoreFoundation/CFTimeZone.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFTree.h -------------------------------------------------------------------------------- /CoreFoundation/CFTree.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFURL.h -------------------------------------------------------------------------------- /CoreFoundation/CFURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFURL.m -------------------------------------------------------------------------------- /CoreFoundation/CFUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFUUID.h -------------------------------------------------------------------------------- /CoreFoundation/CFUUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFUUID.m -------------------------------------------------------------------------------- /CoreFoundation/CFXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFXMLNode.h -------------------------------------------------------------------------------- /CoreFoundation/CFXMLNode.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/CFXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/CFXMLParser.h -------------------------------------------------------------------------------- /CoreFoundation/CFXMLParser.m: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreFoundation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreFoundation/Info.plist -------------------------------------------------------------------------------- /CoreGraphics/CGColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGColor.h -------------------------------------------------------------------------------- /CoreGraphics/CGColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGColor.m -------------------------------------------------------------------------------- /CoreGraphics/CGColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGColorSpace.h -------------------------------------------------------------------------------- /CoreGraphics/CGColorSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGColorSpace.m -------------------------------------------------------------------------------- /CoreGraphics/CGContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGContext.h -------------------------------------------------------------------------------- /CoreGraphics/CGContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGContext.m -------------------------------------------------------------------------------- /CoreGraphics/CGConversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGConversions.h -------------------------------------------------------------------------------- /CoreGraphics/CGDataConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGDataConsumer.h -------------------------------------------------------------------------------- /CoreGraphics/CGDataConsumer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGDataConsumer.m -------------------------------------------------------------------------------- /CoreGraphics/CGDataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGDataProvider.h -------------------------------------------------------------------------------- /CoreGraphics/CGDataProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGDataProvider.m -------------------------------------------------------------------------------- /CoreGraphics/CGError.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | typedef int32_t CGError; 4 | -------------------------------------------------------------------------------- /CoreGraphics/CGEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGEvent.h -------------------------------------------------------------------------------- /CoreGraphics/CGEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGEvent.m -------------------------------------------------------------------------------- /CoreGraphics/CGFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGFont.h -------------------------------------------------------------------------------- /CoreGraphics/CGFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGFont.m -------------------------------------------------------------------------------- /CoreGraphics/CGFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGFunction.h -------------------------------------------------------------------------------- /CoreGraphics/CGFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGFunction.m -------------------------------------------------------------------------------- /CoreGraphics/CGGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGGeometry.h -------------------------------------------------------------------------------- /CoreGraphics/CGGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGGeometry.m -------------------------------------------------------------------------------- /CoreGraphics/CGGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGGradient.h -------------------------------------------------------------------------------- /CoreGraphics/CGGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGGradient.m -------------------------------------------------------------------------------- /CoreGraphics/CGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGImage.h -------------------------------------------------------------------------------- /CoreGraphics/CGImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGImage.m -------------------------------------------------------------------------------- /CoreGraphics/CGImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGImageSource.h -------------------------------------------------------------------------------- /CoreGraphics/CGImageSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGImageSource.m -------------------------------------------------------------------------------- /CoreGraphics/CGLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGLayer.h -------------------------------------------------------------------------------- /CoreGraphics/CGLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGLayer.m -------------------------------------------------------------------------------- /CoreGraphics/CGPDFContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPDFContext.h -------------------------------------------------------------------------------- /CoreGraphics/CGPDFContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPDFContext.m -------------------------------------------------------------------------------- /CoreGraphics/CGPDFDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPDFDocument.h -------------------------------------------------------------------------------- /CoreGraphics/CGPDFDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPDFDocument.m -------------------------------------------------------------------------------- /CoreGraphics/CGPDFPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPDFPage.h -------------------------------------------------------------------------------- /CoreGraphics/CGPDFPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPDFPage.m -------------------------------------------------------------------------------- /CoreGraphics/CGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPath.h -------------------------------------------------------------------------------- /CoreGraphics/CGPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPath.m -------------------------------------------------------------------------------- /CoreGraphics/CGPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPattern.h -------------------------------------------------------------------------------- /CoreGraphics/CGPattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGPattern.m -------------------------------------------------------------------------------- /CoreGraphics/CGShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGShading.h -------------------------------------------------------------------------------- /CoreGraphics/CGShading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGShading.m -------------------------------------------------------------------------------- /CoreGraphics/CGWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGWindow.h -------------------------------------------------------------------------------- /CoreGraphics/CGWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGWindow.m -------------------------------------------------------------------------------- /CoreGraphics/CGWindowLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CGWindowLevel.h -------------------------------------------------------------------------------- /CoreGraphics/CoreGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CoreGraphics.h -------------------------------------------------------------------------------- /CoreGraphics/CoreText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/CoreText.h -------------------------------------------------------------------------------- /CoreGraphics/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/Info.plist -------------------------------------------------------------------------------- /CoreGraphics/KTFont+PDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/KTFont+PDF.h -------------------------------------------------------------------------------- /CoreGraphics/KTFont+PDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreGraphics/KTFont+PDF.m -------------------------------------------------------------------------------- /CoreServices/CoreServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreServices/CoreServices.h -------------------------------------------------------------------------------- /CoreServices/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreServices/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreServices/Info.plist -------------------------------------------------------------------------------- /CoreText/CTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreText/CTFont.h -------------------------------------------------------------------------------- /CoreText/CTFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreText/CTFont.m -------------------------------------------------------------------------------- /CoreText/CoreText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreText/CoreText.h -------------------------------------------------------------------------------- /CoreText/CoreTextExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreText/CoreTextExport.h -------------------------------------------------------------------------------- /CoreText/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreText/Info.plist -------------------------------------------------------------------------------- /CoreText/KTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreText/KTFont.h -------------------------------------------------------------------------------- /CoreText/KTFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreText/KTFont.m -------------------------------------------------------------------------------- /CoreVideo/CVBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreVideo/CVBase.h -------------------------------------------------------------------------------- /CoreVideo/CVDisplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreVideo/CVDisplayLink.h -------------------------------------------------------------------------------- /CoreVideo/CVDisplayLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreVideo/CVDisplayLink.m -------------------------------------------------------------------------------- /CoreVideo/CVReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreVideo/CVReturn.h -------------------------------------------------------------------------------- /CoreVideo/CoreVideo.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /CoreVideo/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreVideo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/CoreVideo/Info.plist -------------------------------------------------------------------------------- /Examples/NSOpenGLView/English.lproj/Localizable-windows.strings: -------------------------------------------------------------------------------- 1 | "WindowTitle"="Cocotron NSOpenGLView"; 2 | -------------------------------------------------------------------------------- /Examples/NSOpenGLView/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "WindowTitle"="Cocoa NSOpenGLView"; 2 | 3 | 4 | -------------------------------------------------------------------------------- /Examples/NSOpenGLView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Examples/NSOpenGLView/main.m -------------------------------------------------------------------------------- /Examples/TextEditor/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Examples/TextEditor/main.m -------------------------------------------------------------------------------- /Foundation/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/Foundation.h -------------------------------------------------------------------------------- /Foundation/FoundationErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/FoundationErrors.h -------------------------------------------------------------------------------- /Foundation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/Info.plist -------------------------------------------------------------------------------- /Foundation/NSArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSArchiver.h -------------------------------------------------------------------------------- /Foundation/NSArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSArchiver.m -------------------------------------------------------------------------------- /Foundation/NSArray/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSArray/NSArray.h -------------------------------------------------------------------------------- /Foundation/NSArray/NSArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSArray/NSArray.m -------------------------------------------------------------------------------- /Foundation/NSBlocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSBlocks.m -------------------------------------------------------------------------------- /Foundation/NSBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSBundle.h -------------------------------------------------------------------------------- /Foundation/NSBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSBundle.m -------------------------------------------------------------------------------- /Foundation/NSByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSByteOrder.h -------------------------------------------------------------------------------- /Foundation/NSByteOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSByteOrder.m -------------------------------------------------------------------------------- /Foundation/NSCFTypeID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSCFTypeID.h -------------------------------------------------------------------------------- /Foundation/NSCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSCoder.h -------------------------------------------------------------------------------- /Foundation/NSCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSCoder.m -------------------------------------------------------------------------------- /Foundation/NSData/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSData/NSData.h -------------------------------------------------------------------------------- /Foundation/NSData/NSData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSData/NSData.m -------------------------------------------------------------------------------- /Foundation/NSDate/NSDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSDate/NSDate.h -------------------------------------------------------------------------------- /Foundation/NSDate/NSDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSDate/NSDate.m -------------------------------------------------------------------------------- /Foundation/NSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSDebug.h -------------------------------------------------------------------------------- /Foundation/NSDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSDebug.m -------------------------------------------------------------------------------- /Foundation/NSEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSEnumerator.h -------------------------------------------------------------------------------- /Foundation/NSEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSEnumerator.m -------------------------------------------------------------------------------- /Foundation/NSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSError.h -------------------------------------------------------------------------------- /Foundation/NSError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSError.m -------------------------------------------------------------------------------- /Foundation/NSFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSFileManager.h -------------------------------------------------------------------------------- /Foundation/NSFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSFileManager.m -------------------------------------------------------------------------------- /Foundation/NSFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSFormatter.h -------------------------------------------------------------------------------- /Foundation/NSFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSFormatter.m -------------------------------------------------------------------------------- /Foundation/NSGarbageCollector.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Foundation/NSGarbageCollector.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Foundation/NSGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSGeometry.h -------------------------------------------------------------------------------- /Foundation/NSGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSGeometry.m -------------------------------------------------------------------------------- /Foundation/NSHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSHashTable.h -------------------------------------------------------------------------------- /Foundation/NSHashTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSHashTable.m -------------------------------------------------------------------------------- /Foundation/NSHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSHost.h -------------------------------------------------------------------------------- /Foundation/NSHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSHost.m -------------------------------------------------------------------------------- /Foundation/NSIndexPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSIndexPath.h -------------------------------------------------------------------------------- /Foundation/NSIndexPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSIndexPath.m -------------------------------------------------------------------------------- /Foundation/NSInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSInvocation.h -------------------------------------------------------------------------------- /Foundation/NSInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSInvocation.m -------------------------------------------------------------------------------- /Foundation/NSLocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSLocale.h -------------------------------------------------------------------------------- /Foundation/NSLocale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSLocale.m -------------------------------------------------------------------------------- /Foundation/NSLock/NSLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSLock/NSLock.h -------------------------------------------------------------------------------- /Foundation/NSLock/NSLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSLock/NSLock.m -------------------------------------------------------------------------------- /Foundation/NSMapTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSMapTable.h -------------------------------------------------------------------------------- /Foundation/NSMapTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSMapTable.m -------------------------------------------------------------------------------- /Foundation/NSNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSNull.h -------------------------------------------------------------------------------- /Foundation/NSNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSNull.m -------------------------------------------------------------------------------- /Foundation/NSObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSObjCRuntime.h -------------------------------------------------------------------------------- /Foundation/NSObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSObjCRuntime.m -------------------------------------------------------------------------------- /Foundation/NSOrthography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSOrthography.h -------------------------------------------------------------------------------- /Foundation/NSOrthography.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSOrthography.m -------------------------------------------------------------------------------- /Foundation/NSPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSPipe.h -------------------------------------------------------------------------------- /Foundation/NSPipe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSPipe.m -------------------------------------------------------------------------------- /Foundation/NSPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSPlatform.h -------------------------------------------------------------------------------- /Foundation/NSPlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSPlatform.m -------------------------------------------------------------------------------- /Foundation/NSPointerArray.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Foundation/NSPointerArray.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Foundation/NSPointerFunctions.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Foundation/NSPointerFunctions.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Foundation/NSProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSProcessInfo.h -------------------------------------------------------------------------------- /Foundation/NSProcessInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSProcessInfo.m -------------------------------------------------------------------------------- /Foundation/NSProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSProxy.h -------------------------------------------------------------------------------- /Foundation/NSProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSProxy.m -------------------------------------------------------------------------------- /Foundation/NSRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSRange.h -------------------------------------------------------------------------------- /Foundation/NSRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSRange.m -------------------------------------------------------------------------------- /Foundation/NSSet/NSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSet/NSSet.h -------------------------------------------------------------------------------- /Foundation/NSSet/NSSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSet/NSSet.m -------------------------------------------------------------------------------- /Foundation/NSSortDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSortDescriptor.h -------------------------------------------------------------------------------- /Foundation/NSSortDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSortDescriptor.m -------------------------------------------------------------------------------- /Foundation/NSSpellEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSpellEngine.h -------------------------------------------------------------------------------- /Foundation/NSSpellEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSpellEngine.m -------------------------------------------------------------------------------- /Foundation/NSSpellServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSpellServer.h -------------------------------------------------------------------------------- /Foundation/NSSpellServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSSpellServer.m -------------------------------------------------------------------------------- /Foundation/NSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSTask.h -------------------------------------------------------------------------------- /Foundation/NSTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSTask.m -------------------------------------------------------------------------------- /Foundation/NSTimer/NSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSTimer/NSTimer.h -------------------------------------------------------------------------------- /Foundation/NSTimer/NSTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSTimer/NSTimer.m -------------------------------------------------------------------------------- /Foundation/NSURL/NSURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSURL/NSURL.h -------------------------------------------------------------------------------- /Foundation/NSURL/NSURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSURL/NSURL.m -------------------------------------------------------------------------------- /Foundation/NSURL/NSURLCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSURL/NSURLCache.h -------------------------------------------------------------------------------- /Foundation/NSUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSUnarchiver.h -------------------------------------------------------------------------------- /Foundation/NSUnarchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSUnarchiver.m -------------------------------------------------------------------------------- /Foundation/NSZone/NSZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSZone/NSZone.h -------------------------------------------------------------------------------- /Foundation/NSZone/NSZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/NSZone/NSZone.m -------------------------------------------------------------------------------- /Foundation/xml/NSXMLDTD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/xml/NSXMLDTD.h -------------------------------------------------------------------------------- /Foundation/xml/NSXMLDTD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/xml/NSXMLDTD.m -------------------------------------------------------------------------------- /Foundation/xml/NSXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/xml/NSXMLNode.h -------------------------------------------------------------------------------- /Foundation/xml/NSXMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Foundation/xml/NSXMLNode.m -------------------------------------------------------------------------------- /IOKit/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /IOKit/IOKitLib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/IOKit/IOKitLib.m -------------------------------------------------------------------------------- /IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/IOKit/IOTypes.h -------------------------------------------------------------------------------- /IOKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/IOKit/Info.plist -------------------------------------------------------------------------------- /ImageKit/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ImageKit/IKImageBrowserCell.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImageKit/IKImageBrowserCell.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImageKit/ImageKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ImageKit/ImageKit.h -------------------------------------------------------------------------------- /ImageKit/ImageKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ImageKit/ImageKitExport.h -------------------------------------------------------------------------------- /ImageKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ImageKit/Info.plist -------------------------------------------------------------------------------- /ImageKit/dllmain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ImageKit/dllmain.m -------------------------------------------------------------------------------- /InstallCDT/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/InstallCDT/install.sh -------------------------------------------------------------------------------- /InstallCDT/install_GLUT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/InstallCDT/install_GLUT.sh -------------------------------------------------------------------------------- /InstallCDT/install_plibc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/InstallCDT/install_plibc.sh -------------------------------------------------------------------------------- /InstallCDT/install_png.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/InstallCDT/install_png.sh -------------------------------------------------------------------------------- /InstallCDT/install_xml2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/InstallCDT/install_xml2.sh -------------------------------------------------------------------------------- /InstallCDT/install_zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/InstallCDT/install_zlib.sh -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Onyx2D/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Onyx2D/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/Info.plist -------------------------------------------------------------------------------- /Onyx2D/O2AffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2AffineTransform.h -------------------------------------------------------------------------------- /Onyx2D/O2AffineTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2AffineTransform.m -------------------------------------------------------------------------------- /Onyx2D/O2BitmapContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2BitmapContext.h -------------------------------------------------------------------------------- /Onyx2D/O2BitmapContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2BitmapContext.m -------------------------------------------------------------------------------- /Onyx2D/O2Blending.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Onyx2D/O2ClipMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ClipMask.h -------------------------------------------------------------------------------- /Onyx2D/O2ClipMask.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Onyx2D/O2ClipPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ClipPhase.h -------------------------------------------------------------------------------- /Onyx2D/O2ClipPhase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ClipPhase.m -------------------------------------------------------------------------------- /Onyx2D/O2ClipState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ClipState.h -------------------------------------------------------------------------------- /Onyx2D/O2ClipState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ClipState.m -------------------------------------------------------------------------------- /Onyx2D/O2Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Color.h -------------------------------------------------------------------------------- /Onyx2D/O2Color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Color.m -------------------------------------------------------------------------------- /Onyx2D/O2ColorSpace+PDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ColorSpace+PDF.h -------------------------------------------------------------------------------- /Onyx2D/O2ColorSpace+PDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ColorSpace+PDF.m -------------------------------------------------------------------------------- /Onyx2D/O2ColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ColorSpace.h -------------------------------------------------------------------------------- /Onyx2D/O2ColorSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ColorSpace.m -------------------------------------------------------------------------------- /Onyx2D/O2Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Context.h -------------------------------------------------------------------------------- /Onyx2D/O2Context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Context.m -------------------------------------------------------------------------------- /Onyx2D/O2Context_builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Context_builtin.h -------------------------------------------------------------------------------- /Onyx2D/O2Context_builtin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Context_builtin.m -------------------------------------------------------------------------------- /Onyx2D/O2Context_distill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Context_distill.h -------------------------------------------------------------------------------- /Onyx2D/O2Context_distill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Context_distill.m -------------------------------------------------------------------------------- /Onyx2D/O2DataConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2DataConsumer.h -------------------------------------------------------------------------------- /Onyx2D/O2DataConsumer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2DataConsumer.m -------------------------------------------------------------------------------- /Onyx2D/O2DataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2DataProvider.h -------------------------------------------------------------------------------- /Onyx2D/O2DataProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2DataProvider.m -------------------------------------------------------------------------------- /Onyx2D/O2Decoder_TIFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Decoder_TIFF.h -------------------------------------------------------------------------------- /Onyx2D/O2Decoder_TIFF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Decoder_TIFF.m -------------------------------------------------------------------------------- /Onyx2D/O2Defines_libjpeg.h: -------------------------------------------------------------------------------- 1 | //#define LIBJPEG_PRESENT 1 -------------------------------------------------------------------------------- /Onyx2D/O2EXIFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2EXIFDecoder.h -------------------------------------------------------------------------------- /Onyx2D/O2EXIFDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2EXIFDecoder.m -------------------------------------------------------------------------------- /Onyx2D/O2Encoder_JPG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoder_JPG.h -------------------------------------------------------------------------------- /Onyx2D/O2Encoder_JPG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoder_JPG.m -------------------------------------------------------------------------------- /Onyx2D/O2Encoder_PNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoder_PNG.h -------------------------------------------------------------------------------- /Onyx2D/O2Encoder_PNG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoder_PNG.m -------------------------------------------------------------------------------- /Onyx2D/O2Encoder_TIFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoder_TIFF.h -------------------------------------------------------------------------------- /Onyx2D/O2Encoder_TIFF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoder_TIFF.m -------------------------------------------------------------------------------- /Onyx2D/O2Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoding.h -------------------------------------------------------------------------------- /Onyx2D/O2Encoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Encoding.m -------------------------------------------------------------------------------- /Onyx2D/O2Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Exceptions.h -------------------------------------------------------------------------------- /Onyx2D/O2Font+PDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font+PDF.h -------------------------------------------------------------------------------- /Onyx2D/O2Font+PDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font+PDF.m -------------------------------------------------------------------------------- /Onyx2D/O2Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font.h -------------------------------------------------------------------------------- /Onyx2D/O2Font.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font.m -------------------------------------------------------------------------------- /Onyx2D/O2Font_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font_freetype.h -------------------------------------------------------------------------------- /Onyx2D/O2Font_freetype.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font_freetype.m -------------------------------------------------------------------------------- /Onyx2D/O2Font_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font_ttf.h -------------------------------------------------------------------------------- /Onyx2D/O2Font_ttf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Font_ttf.m -------------------------------------------------------------------------------- /Onyx2D/O2Function+PDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Function+PDF.h -------------------------------------------------------------------------------- /Onyx2D/O2Function+PDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Function+PDF.m -------------------------------------------------------------------------------- /Onyx2D/O2Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Function.h -------------------------------------------------------------------------------- /Onyx2D/O2Function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Function.m -------------------------------------------------------------------------------- /Onyx2D/O2Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Geometry.h -------------------------------------------------------------------------------- /Onyx2D/O2Geometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Geometry.m -------------------------------------------------------------------------------- /Onyx2D/O2GlyphStencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2GlyphStencil.h -------------------------------------------------------------------------------- /Onyx2D/O2GlyphStencil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2GlyphStencil.m -------------------------------------------------------------------------------- /Onyx2D/O2GraphicsState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2GraphicsState.h -------------------------------------------------------------------------------- /Onyx2D/O2GraphicsState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2GraphicsState.m -------------------------------------------------------------------------------- /Onyx2D/O2Image+PDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Image+PDF.h -------------------------------------------------------------------------------- /Onyx2D/O2Image+PDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Image+PDF.m -------------------------------------------------------------------------------- /Onyx2D/O2Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Image.h -------------------------------------------------------------------------------- /Onyx2D/O2Image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Image.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageDecoder.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageDecoder.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageDestination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageDestination.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageDestination.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageDestination.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_BMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_BMP.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_BMP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_BMP.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_GIF.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_GIF.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_ICNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_ICNS.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_ICNS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_ICNS.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_JPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_JPEG.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_JPEG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_JPEG.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_PNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_PNG.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_PNG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_PNG.m -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_TIFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_TIFF.h -------------------------------------------------------------------------------- /Onyx2D/O2ImageSource_TIFF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2ImageSource_TIFF.m -------------------------------------------------------------------------------- /Onyx2D/O2LZW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2LZW.h -------------------------------------------------------------------------------- /Onyx2D/O2LZW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2LZW.m -------------------------------------------------------------------------------- /Onyx2D/O2Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Layer.h -------------------------------------------------------------------------------- /Onyx2D/O2Layer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Layer.m -------------------------------------------------------------------------------- /Onyx2D/O2MutablePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2MutablePath.h -------------------------------------------------------------------------------- /Onyx2D/O2MutablePath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2MutablePath.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFArray.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFArray.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFBlock.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFBlock.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFCharWidths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFCharWidths.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFCharWidths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFCharWidths.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFContentStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFContentStream.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFContentStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFContentStream.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFContext.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFContext.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFDictionary.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFDictionary.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFDocument.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFDocument.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFFilter.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFFilter.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFFont.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFFont.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_Name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_Name.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_Name.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_Name.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_R.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_R.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_R.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_R.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_Real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_Real.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_Real.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_Real.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_const.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFObject_const.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFObject_const.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFOperatorTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFOperatorTable.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFOperatorTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFOperatorTable.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFOperators.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFOperators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFOperators.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFPage.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFPage.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFScanner.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFScanner.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFStream.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFStream.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFString.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFString.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFxref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFxref.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFxref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFxref.m -------------------------------------------------------------------------------- /Onyx2D/O2PDFxrefEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFxrefEntry.h -------------------------------------------------------------------------------- /Onyx2D/O2PDFxrefEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2PDFxrefEntry.m -------------------------------------------------------------------------------- /Onyx2D/O2Paint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint.h -------------------------------------------------------------------------------- /Onyx2D/O2Paint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint.m -------------------------------------------------------------------------------- /Onyx2D/O2Paint_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_color.h -------------------------------------------------------------------------------- /Onyx2D/O2Paint_color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_color.m -------------------------------------------------------------------------------- /Onyx2D/O2Paint_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_image.h -------------------------------------------------------------------------------- /Onyx2D/O2Paint_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_image.m -------------------------------------------------------------------------------- /Onyx2D/O2Paint_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_pattern.h -------------------------------------------------------------------------------- /Onyx2D/O2Paint_pattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_pattern.m -------------------------------------------------------------------------------- /Onyx2D/O2Paint_ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_ramp.h -------------------------------------------------------------------------------- /Onyx2D/O2Paint_ramp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Paint_ramp.m -------------------------------------------------------------------------------- /Onyx2D/O2Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Path.h -------------------------------------------------------------------------------- /Onyx2D/O2Path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Path.m -------------------------------------------------------------------------------- /Onyx2D/O2Pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Pattern.h -------------------------------------------------------------------------------- /Onyx2D/O2Pattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Pattern.m -------------------------------------------------------------------------------- /Onyx2D/O2Shading+PDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Shading+PDF.h -------------------------------------------------------------------------------- /Onyx2D/O2Shading+PDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Shading+PDF.m -------------------------------------------------------------------------------- /Onyx2D/O2Shading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Shading.h -------------------------------------------------------------------------------- /Onyx2D/O2Shading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Shading.m -------------------------------------------------------------------------------- /Onyx2D/O2Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Surface.h -------------------------------------------------------------------------------- /Onyx2D/O2Surface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2Surface.m -------------------------------------------------------------------------------- /Onyx2D/O2TTFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2TTFDecoder.h -------------------------------------------------------------------------------- /Onyx2D/O2TTFDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2TTFDecoder.m -------------------------------------------------------------------------------- /Onyx2D/O2argb32f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2argb32f.h -------------------------------------------------------------------------------- /Onyx2D/O2argb32f.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2argb32f.m -------------------------------------------------------------------------------- /Onyx2D/O2argb8u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2argb8u.h -------------------------------------------------------------------------------- /Onyx2D/O2argb8u.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2argb8u.m -------------------------------------------------------------------------------- /Onyx2D/O2zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2zlib.h -------------------------------------------------------------------------------- /Onyx2D/O2zlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/O2zlib.m -------------------------------------------------------------------------------- /Onyx2D/VGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/VGPath.h -------------------------------------------------------------------------------- /Onyx2D/VGPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/VGPath.m -------------------------------------------------------------------------------- /Onyx2D/VGmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/VGmath.h -------------------------------------------------------------------------------- /Onyx2D/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/gif_lib.h -------------------------------------------------------------------------------- /Onyx2D/gif_lib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Onyx2D/gif_lib.m -------------------------------------------------------------------------------- /OpenGL/CGLCurrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/OpenGL/CGLCurrent.h -------------------------------------------------------------------------------- /OpenGL/CGLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/OpenGL/CGLTypes.h -------------------------------------------------------------------------------- /OpenGL/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/OpenGL/Info.plist -------------------------------------------------------------------------------- /OpenGL/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/OpenGL/OpenGL.h -------------------------------------------------------------------------------- /OpenGL/OpenGL.m: -------------------------------------------------------------------------------- 1 | void OpenGL(){ 2 | } 3 | -------------------------------------------------------------------------------- /OpenGL/gl.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /OpenGL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/OpenGL/glext.h -------------------------------------------------------------------------------- /OpenGL/glu.h: -------------------------------------------------------------------------------- 1 | #ifdef WINDOWS 2 | #import 3 | #endif 4 | -------------------------------------------------------------------------------- /OpenGL/glweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/OpenGL/glweak.h -------------------------------------------------------------------------------- /OpenGL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/OpenGL/wglext.h -------------------------------------------------------------------------------- /PDFKit/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PDFKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/Info.plist -------------------------------------------------------------------------------- /PDFKit/PDFDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFDocument.h -------------------------------------------------------------------------------- /PDFKit/PDFDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFDocument.m -------------------------------------------------------------------------------- /PDFKit/PDFDocumentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFDocumentView.h -------------------------------------------------------------------------------- /PDFKit/PDFDocumentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFDocumentView.m -------------------------------------------------------------------------------- /PDFKit/PDFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFKit.h -------------------------------------------------------------------------------- /PDFKit/PDFKitExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFKitExport.h -------------------------------------------------------------------------------- /PDFKit/PDFKit_Framework.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFKit_Framework.m -------------------------------------------------------------------------------- /PDFKit/PDFPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFPage.h -------------------------------------------------------------------------------- /PDFKit/PDFPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFPage.m -------------------------------------------------------------------------------- /PDFKit/PDFPageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFPageView.h -------------------------------------------------------------------------------- /PDFKit/PDFPageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFPageView.m -------------------------------------------------------------------------------- /PDFKit/PDFSelectedRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFSelectedRange.h -------------------------------------------------------------------------------- /PDFKit/PDFSelectedRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFSelectedRange.m -------------------------------------------------------------------------------- /PDFKit/PDFSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFSelection.h -------------------------------------------------------------------------------- /PDFKit/PDFSelection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFSelection.m -------------------------------------------------------------------------------- /PDFKit/PDFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFView.h -------------------------------------------------------------------------------- /PDFKit/PDFView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/PDFKit/PDFView.m -------------------------------------------------------------------------------- /Quartz/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Quartz/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Quartz/Info.plist -------------------------------------------------------------------------------- /Quartz/Quartz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Quartz/Quartz.h -------------------------------------------------------------------------------- /QuartzCore/CAAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CAAction.h -------------------------------------------------------------------------------- /QuartzCore/CAAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CAAnimation.h -------------------------------------------------------------------------------- /QuartzCore/CAAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CAAnimation.m -------------------------------------------------------------------------------- /QuartzCore/CABase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CABase.h -------------------------------------------------------------------------------- /QuartzCore/CABase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CABase.m -------------------------------------------------------------------------------- /QuartzCore/CALayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CALayer.h -------------------------------------------------------------------------------- /QuartzCore/CALayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CALayer.m -------------------------------------------------------------------------------- /QuartzCore/CALayerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CALayerContext.h -------------------------------------------------------------------------------- /QuartzCore/CALayerContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CALayerContext.m -------------------------------------------------------------------------------- /QuartzCore/CAMediaTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CAMediaTiming.h -------------------------------------------------------------------------------- /QuartzCore/CARenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CARenderer.h -------------------------------------------------------------------------------- /QuartzCore/CARenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CARenderer.m -------------------------------------------------------------------------------- /QuartzCore/CATransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CATransaction.h -------------------------------------------------------------------------------- /QuartzCore/CATransaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CATransaction.m -------------------------------------------------------------------------------- /QuartzCore/CATransform3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CATransform3D.h -------------------------------------------------------------------------------- /QuartzCore/CATransform3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CATransform3D.m -------------------------------------------------------------------------------- /QuartzCore/CATransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CATransition.h -------------------------------------------------------------------------------- /QuartzCore/CATransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CATransition.m -------------------------------------------------------------------------------- /QuartzCore/CIBloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIBloom.h -------------------------------------------------------------------------------- /QuartzCore/CIBloom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIBloom.m -------------------------------------------------------------------------------- /QuartzCore/CIBoxBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIBoxBlur.h -------------------------------------------------------------------------------- /QuartzCore/CIBoxBlur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIBoxBlur.m -------------------------------------------------------------------------------- /QuartzCore/CIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIColor.h -------------------------------------------------------------------------------- /QuartzCore/CIColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIColor.m -------------------------------------------------------------------------------- /QuartzCore/CIContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIContext.h -------------------------------------------------------------------------------- /QuartzCore/CIContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIContext.m -------------------------------------------------------------------------------- /QuartzCore/CIFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIFilter.h -------------------------------------------------------------------------------- /QuartzCore/CIFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIFilter.m -------------------------------------------------------------------------------- /QuartzCore/CIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIImage.h -------------------------------------------------------------------------------- /QuartzCore/CIImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIImage.m -------------------------------------------------------------------------------- /QuartzCore/CIVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIVector.h -------------------------------------------------------------------------------- /QuartzCore/CIVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CIVector.m -------------------------------------------------------------------------------- /QuartzCore/CoreAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CoreAnimation.h -------------------------------------------------------------------------------- /QuartzCore/CoreImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CoreImage.h -------------------------------------------------------------------------------- /QuartzCore/CoreVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/CoreVideo.h -------------------------------------------------------------------------------- /QuartzCore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/Info.plist -------------------------------------------------------------------------------- /QuartzCore/QuartzCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/QuartzCore/QuartzCore.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | The Cocotron 2 | -------------------------------------------------------------------------------- /ScriptingBridge/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ScriptingBridge/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ScriptingBridge/Info.plist -------------------------------------------------------------------------------- /ScriptingBridge/SBObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ScriptingBridge/SBObject.h -------------------------------------------------------------------------------- /ScriptingBridge/SBObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ScriptingBridge/SBObject.m -------------------------------------------------------------------------------- /ScriptingBridge/dllmain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/ScriptingBridge/dllmain.m -------------------------------------------------------------------------------- /Security/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Security/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/Info.plist -------------------------------------------------------------------------------- /Security/SecAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecAccess.h -------------------------------------------------------------------------------- /Security/SecAccess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecAccess.m -------------------------------------------------------------------------------- /Security/SecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecBase.h -------------------------------------------------------------------------------- /Security/SecBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecBase.m -------------------------------------------------------------------------------- /Security/SecKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecKeychain.h -------------------------------------------------------------------------------- /Security/SecKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecKeychain.m -------------------------------------------------------------------------------- /Security/SecKeychainItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecKeychainItem.h -------------------------------------------------------------------------------- /Security/SecKeychainItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/SecKeychainItem.m -------------------------------------------------------------------------------- /Security/Security.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /Security/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/Security/version.plist -------------------------------------------------------------------------------- /makefiles/Foundation/rsc/NSUserDefaults.plist: -------------------------------------------------------------------------------- 1 | ../../../Foundation/English.lproj/NSUserDefaults.plist -------------------------------------------------------------------------------- /makefiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/makefiles/Makefile -------------------------------------------------------------------------------- /makefiles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/makefiles/README.txt -------------------------------------------------------------------------------- /makefiles/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/makefiles/test/Makefile -------------------------------------------------------------------------------- /makefiles/test/src/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/makefiles/test/src/test.m -------------------------------------------------------------------------------- /objc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/Info.plist -------------------------------------------------------------------------------- /objc/ObjCArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCArray.c -------------------------------------------------------------------------------- /objc/ObjCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCArray.h -------------------------------------------------------------------------------- /objc/ObjCDynamicModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCDynamicModule.c -------------------------------------------------------------------------------- /objc/ObjCDynamicModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCDynamicModule.h -------------------------------------------------------------------------------- /objc/ObjCHashTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCHashTable.c -------------------------------------------------------------------------------- /objc/ObjCHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCHashTable.h -------------------------------------------------------------------------------- /objc/ObjCModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCModule.c -------------------------------------------------------------------------------- /objc/ObjCModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/ObjCModule.h -------------------------------------------------------------------------------- /objc/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/Object.h -------------------------------------------------------------------------------- /objc/Object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/Object.m -------------------------------------------------------------------------------- /objc/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/Protocol.h -------------------------------------------------------------------------------- /objc/Protocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/Protocol.m -------------------------------------------------------------------------------- /objc/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/deprecated.h -------------------------------------------------------------------------------- /objc/dyld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/dyld.c -------------------------------------------------------------------------------- /objc/dyld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/dyld.h -------------------------------------------------------------------------------- /objc/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/message.h -------------------------------------------------------------------------------- /objc/objc-auto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objc/objc-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc-class.h -------------------------------------------------------------------------------- /objc/objc-export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc-export.h -------------------------------------------------------------------------------- /objc/objc-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc-runtime.h -------------------------------------------------------------------------------- /objc/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc.h -------------------------------------------------------------------------------- /objc/objc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc.m -------------------------------------------------------------------------------- /objc/objc_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_arc.c -------------------------------------------------------------------------------- /objc/objc_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_arc.h -------------------------------------------------------------------------------- /objc/objc_association.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_association.m -------------------------------------------------------------------------------- /objc/objc_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_cache.h -------------------------------------------------------------------------------- /objc/objc_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_class.c -------------------------------------------------------------------------------- /objc/objc_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_class.h -------------------------------------------------------------------------------- /objc/objc_debugHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_debugHelpers.h -------------------------------------------------------------------------------- /objc/objc_debugHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_debugHelpers.m -------------------------------------------------------------------------------- /objc/objc_exception.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_exception.m -------------------------------------------------------------------------------- /objc/objc_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_functions.c -------------------------------------------------------------------------------- /objc/objc_ivar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_ivar.c -------------------------------------------------------------------------------- /objc/objc_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_lock.h -------------------------------------------------------------------------------- /objc/objc_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_log.c -------------------------------------------------------------------------------- /objc/objc_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_log.h -------------------------------------------------------------------------------- /objc/objc_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_malloc.c -------------------------------------------------------------------------------- /objc/objc_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_malloc.h -------------------------------------------------------------------------------- /objc/objc_method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_method.c -------------------------------------------------------------------------------- /objc/objc_msg_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_msg_lookup.c -------------------------------------------------------------------------------- /objc/objc_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_object.c -------------------------------------------------------------------------------- /objc/objc_object.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /objc/objc_property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_property.c -------------------------------------------------------------------------------- /objc/objc_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_protocol.c -------------------------------------------------------------------------------- /objc/objc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_protocol.h -------------------------------------------------------------------------------- /objc/objc_sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_sel.c -------------------------------------------------------------------------------- /objc/objc_sel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_sel.h -------------------------------------------------------------------------------- /objc/objc_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_tls.c -------------------------------------------------------------------------------- /objc/objc_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/objc_tls.h -------------------------------------------------------------------------------- /objc/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/objc/runtime.h -------------------------------------------------------------------------------- /pthread/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/pthread/pthread.h -------------------------------------------------------------------------------- /pthread/pthread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/pthread/pthread.m -------------------------------------------------------------------------------- /pthread/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/pthread/sched.h -------------------------------------------------------------------------------- /testing/SWRender/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/SWRender/Info.plist -------------------------------------------------------------------------------- /testing/SWRender/KGRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/SWRender/KGRender.h -------------------------------------------------------------------------------- /testing/SWRender/KGRender.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/SWRender/KGRender.m -------------------------------------------------------------------------------- /testing/SWRender/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/SWRender/README.txt -------------------------------------------------------------------------------- /testing/SWRender/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/SWRender/main.m -------------------------------------------------------------------------------- /testing/UnitTests/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/Array.h -------------------------------------------------------------------------------- /testing/UnitTests/Array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/Array.m -------------------------------------------------------------------------------- /testing/UnitTests/ForEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/ForEach.h -------------------------------------------------------------------------------- /testing/UnitTests/ForEach.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/ForEach.m -------------------------------------------------------------------------------- /testing/UnitTests/KVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/KVC.h -------------------------------------------------------------------------------- /testing/UnitTests/KVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/KVC.m -------------------------------------------------------------------------------- /testing/UnitTests/KVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/KVO.h -------------------------------------------------------------------------------- /testing/UnitTests/KVO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/KVO.m -------------------------------------------------------------------------------- /testing/UnitTests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/README -------------------------------------------------------------------------------- /testing/UnitTests/Runloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/Runloop.h -------------------------------------------------------------------------------- /testing/UnitTests/Runloop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/Runloop.m -------------------------------------------------------------------------------- /testing/UnitTests/URLTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/URLTest.h -------------------------------------------------------------------------------- /testing/UnitTests/URLTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/URLTest.m -------------------------------------------------------------------------------- /testing/UnitTests/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/testing/UnitTests/main.m -------------------------------------------------------------------------------- /xcconfig/darwin.xcconfig: -------------------------------------------------------------------------------- 1 | #include "platform" 2 | 3 | -------------------------------------------------------------------------------- /xcconfig/freebsd.xcconfig: -------------------------------------------------------------------------------- 1 | #include "platform" 2 | -------------------------------------------------------------------------------- /xcconfig/linux-arm-Foundation.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xcconfig/linux-arm.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/xcconfig/linux-arm.xcconfig -------------------------------------------------------------------------------- /xcconfig/linux-ppc.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/xcconfig/linux-ppc.xcconfig -------------------------------------------------------------------------------- /xcconfig/linux.xcconfig: -------------------------------------------------------------------------------- 1 | #include "platform" 2 | -------------------------------------------------------------------------------- /xcconfig/platform-framework.xcconfig: -------------------------------------------------------------------------------- 1 | #include "platform" 2 | 3 | INSTALL_PATH = /Frameworks 4 | -------------------------------------------------------------------------------- /xcconfig/platform.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjwl/cocotron/HEAD/xcconfig/platform.xcconfig -------------------------------------------------------------------------------- /xcconfig/solaris.xcconfig: -------------------------------------------------------------------------------- 1 | #include "platform" 2 | 3 | -------------------------------------------------------------------------------- /xcconfig/windows.xcconfig: -------------------------------------------------------------------------------- 1 | #include "platform" 2 | 3 | 4 | --------------------------------------------------------------------------------