Work on building AppKit

This commit is contained in:
Sergey Bugaev 2017-07-09 14:34:32 +03:00
parent b3c5dc0b6a
commit f3a48d7aa3
122 changed files with 502 additions and 0 deletions

381
AppKit/CMakeLists.txt Normal file
View File

@ -0,0 +1,381 @@
project(AppKit)
include(darling_framework)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} \
-include math.h \
-include stdlib.h \
-include CoreFoundation/CoreFoundation.h \
-include Foundation/Foundation.h \
-Wno-nonportable-include-path \
-Wno-deprecated-objc-isa-usage \
-mmacosx-version-min=10.10"
)
find_package(Freetype REQUIRED)
include_directories(
${CMAKE_SOURCE_DIR}/src/external/foundation/include
${CMAKE_SOURCE_DIR}/src/external/foundation/include/Foundation
${CMAKE_SOURCE_DIR}/src/external/corefoundation
${CMAKE_SOURCE_DIR}/src/external/objc4/runtime
${CMAKE_SOURCE_DIR}/src/external/libclosure
${CMAKE_SOURCE_DIR}/src/external/security/include
${CMAKE_SOURCE_DIR}/src/external/cfnetwork/include
${CMAKE_SOURCE_DIR}/src/external/cfnetwork/private_include
${CMAKE_SOURCE_DIR}/src/launchd/liblaunch
${CMAKE_SOURCE_DIR}/src/libmalloc/include
${CMAKE_SOURCE_DIR}/src/copyfile
${CMAKE_SOURCE_DIR}/src/libc/gen
${CMAKE_SOURCE_DIR}/src/external/icu/icuSources/i18n
${CMAKE_SOURCE_DIR}/src/external/icu/icuSources/common
${CMAKE_SOURCE_DIR}/src/external/libxml2/include
${CMAKE_BINARY_DIR}/src/external/libxml2/include
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/..
${CMAKE_CURRENT_SOURCE_DIR}/../CoreText
${CMAKE_CURRENT_SOURCE_DIR}/nib.subproj
${CMAKE_CURRENT_SOURCE_DIR}/NSColorPicker.subproj
${CMAKE_CURRENT_SOURCE_DIR}/NSMenu.subproj
${CMAKE_CURRENT_SOURCE_DIR}/NSTextView.subproj
${CMAKE_CURRENT_SOURCE_DIR}/NSEvent.subproj
${CMAKE_CURRENT_SOURCE_DIR}/NSColor.subproj
${CMAKE_CURRENT_SOURCE_DIR}/X11.subproj
${CMAKE_CURRENT_SOURCE_DIR}/RTF.subproj
${CMAKE_CURRENT_SOURCE_DIR}/NSToolbar.subproj
${CMAKE_CURRENT_SOURCE_DIR}/NSDrawer.subproj
${FREETYPE_INCLUDE_DIRS}
)
set(AppKit_sources
NSComboBox.m
NSComboBoxCell.m
NSWindowScripting.m
NSGraphicsContext.m
NSPageLayout.m
NSTabViewItem.m
NSText.m
NSSpellCheckerTagData.m
NSButtonCell.m
NSLevelIndicatorCell.m
NSPDFImageRep.m
NSScroller.m
NSCustomImageRep.m
NSClipView.m
NSApplication.m
NSResponder.m
NSColorList.m
NSImageRep.m
NSRulerView.m
NSModalSessionX.m
NSRuleEditorViewSliceRow.m
NSMutableAttributedString.m
NSRuleEditor.m
NSWorkspace.m
NSBezierPath.m
NSWindowAnimationContext.m
NSCellUndoManager.m
NSFontPanelCell.m
NSThemeFrame.m
NSStringDrawer.m
NSAffineTransform.m
NSMeasurementUnit.m
NSSpellChecker.m
NSTokenAttachmentCell.m
NSStatusBar.m
NSSecureTextField.m
NSScreen.m
NSPrintOperation.m
NSTextList.m
NSComboBoxWindow.m
NSSlider.m
NSTableHeaderView.m
NSComboBoxView.m
NSSplitView.m
NSSecureTextFieldCell.m
NSPathCell.m
NSWindow.m
NSAlert.m
NSCursor.m
NSFontMetric.m
NSPoofAnimation.m
nib.subproj/NSButtonImageSource.m
nib.subproj/NSNibBindingConnector.m
nib.subproj/NSCustomResource.m
nib.subproj/NSCustomObject.m
nib.subproj/NSCustomView.m
nib.subproj/NSNibConnector.m
nib.subproj/NSNibHelpConnector.m
nib.subproj/NSNibControlConnector.m
nib.subproj/NSNibOutletConnector.m
nib.subproj/NSNib.m
nib.subproj/NSWindowTemplate.m
nib.subproj/NSIBObjectData.m
nib.subproj/NSNibLoading.m
nib.subproj/NSClassSwapper.m
nib.subproj/NSNibAXRelationshipConnector.m
NSTextFieldCell.m
NSFormCell.m
NSStepperCell.m
NSParagraphStyle.m
NSDatePicker.m
NSGlyphGenerator.m
CoreData_/_NSManagedProxy.m
CoreData_/NSPersistentDocument.m
NSPopUpWindow.m
NSScrollView.m
NSTextAttachmentCell.m
NSInterfaceStyle.m
NSFontTypeface.m
NSBox.m
NSPopUpButton.m
NSDatePickerCell.m
NSForm.m
NSSheetContext.m
NSTextTable/NSTextTableBlock.m
NSTextTable/NSTextTable.m
NSTextTable/NSTextBlock.m
NSMutableParagraphStyle.m
NSBrowser.m
NSToolTipWindow.m
NSPasteboard.m
NSSearchFieldCell.m
NSOutlineView.m
NSDocument.m
NSSegmentedControl/NSSegmentedControl.m
NSSegmentedControl/NSSegmentedCell.m
NSSegmentedControl/NSSegmentItem.m
_NSRuleEditorViewSliceHolder.m
NSSearchField.m
NSFontPanel.m
NSTrackingArea.m
NSController/NSArrayController.m
NSController/NSTreeController.m
NSController/NSDictionaryController.m
NSController/NSControllerMarker.m
NSController/NSUserDefaultsControllerProxy.m
NSController/NSObservationProxy.m
NSController/NSObjectController.m
NSController/NSController.m
NSController/NSUserDefaultsController.m
NSController/NSControllerSelectionProxy.m
NSController/_NSControllerArray.m
NSCursorRect.m
NSImageCell.m
NSColorPicker.subproj/NSColorPickerWheelView.m
NSColorPicker.subproj/NSBrowserCellColorList.m
NSColorPicker.subproj/NSColorPickerWheel.m
NSColorPicker.subproj/NSColorPickerSliders.m
NSColorPicker.subproj/NSColorPickerColorList.m
NSColorPicker.subproj/NSColorPicker.m
NSEPSImageRep.m
NSPrintInfo.m
NSMenu.subproj/NSMainMenuView.m
NSMenu.subproj/NSMenuView.m
NSMenu.subproj/NSOverflowMenuView.m
NSMenu.subproj/NSSubmenuView.m
NSMenu.subproj/NSMenuWindow.m
NSMenu.subproj/NSMenu.m
NSMenu.subproj/NSMenuItem.m
NSPathControl.m
NSSound.m
NSFontManager.m
NSTokenFieldCell.m
NSBrowserCell.m
NSControl.m
NSViewController.m
NSTextView.subproj/NSTextView.m
NSTextView.subproj/NSBidiHelper.m
NSTextView.subproj/NSLayoutManager.m
NSTextView.subproj/NSTextViewSharedData.m
NSTextView.subproj/NSTextStorage.m
NSTextView.subproj/NSTypesetter_concrete.m
NSTextView.subproj/NSTextStorage_concrete.m
NSTextView.subproj/NSTypesetter.m
NSTextView.subproj/NSRulerMarker+NSTextExtensions.m
NSTextView.subproj/NSRangeArray.m
NSTextView.subproj/NSTextContainer.m
NSTextView.subproj/NSSecureLayoutManager.m
NSTextView.subproj/NSUndoTextOperation.m
NSTextView.subproj/NSSecureTextView.m
NSTextView.subproj/NSTextTab.m
NSTableColumn.m
NSTextField.m
NSEvent.subproj/NSEvent_periodic.m
NSEvent.subproj/NSEvent_mouse.m
NSEvent.subproj/NSEvent_CoreGraphics.m
NSEvent.subproj/NSEvent_other.m
NSEvent.subproj/NSEvent_keyboard.m
NSEvent.subproj/NSEvent.m
NSButton.m
NSPrintPanel.m
NSGlyphInfo.m
NSWindowController.m
NSColorSpace.m
NSView.m
NSAnimation/NSAnimation.m
NSAnimation/NSViewAnimation.m
NSAnimation/NSAnimationContext.m
NSDocumentController.m
NSStatusItem.m
NSShadow.m
NSPathComponentCell.m
NSCachedImageRep.m
NSWindow-Drag.m
NSCIImageRep.m
NSPrintProgressPanelController.m
NSHelpManager.m
NSProgressIndicator.m
NSFontDescriptor.m
NSDisplay.m
NSOpenGL/NSOpenGLView.m
NSOpenGL/NSOpenGLPixelBuffer.m
NSOpenGL/NSOpenGLPixelFormat.m
NSOpenGL/NSOpenGLDrawable.m
NSOpenGL/NSOpenGLContext.m
NSPopUpButtonCell.m
NSPredicateEditor.m
NSFont.m
NSStringDrawing.m
NSTokenField.m
NSColor.subproj/NSColor.m
NSColor.subproj/NSColor_catalog.m
NSColor.subproj/NSColor_CGColor.m
NSTableCornerView.m
NSTabView.m
NSFontFamily.m
NSGradient.m
NSInterfacePart/NSInterfaceGraphics.m
NSInterfacePart/NSInterfacePartAttributedString.m
NSInterfacePart/NSInterfacePartDisabledAttributedString.m
NSInterfacePart/NSGraphicsStyle.m
NSInterfacePart/NSInterfacePart.m
X11.subproj/O2FontState_cairo.m
X11.subproj/X11Event.m
X11.subproj/O2Surface_cairo.m
X11.subproj/X11Window.m
X11.subproj/KTFont_FT.m
X11.subproj/O2Font_FT.m
X11.subproj/CGLContext.m
X11.subproj/NSOpenGLDrawable_X11.m
X11.subproj/O2Context_cairo.m
X11.subproj/X11Display.m
X11.subproj/O2Context_builtin_FT.m
NSImageView.m
NSActionCell.m
NSAttributedString.m
RTF.subproj/NSRichTextReader.m
RTF.subproj/NSRichTextWriter.m
NSRulerMarker.m
NSTreeNode.m
NSLevelIndicator.m
NSDraggingManager.m
NSImage.m
NSKeyValueBinding/NSObject+BindingSupport.m
NSKeyValueBinding/NSBinder.m
NSKeyValueBinding/NSTextFieldBinder.m
NSKeyValueBinding/NSMultipleValueBinder.m
NSKeyValueBinding/NSTextBinder.m
NSKeyValueBinding/NSKVOBinder.m
NSKeyValueBinding/NSCachingBinder.m
NSPredicateEditorRowTemplate.m
NSFileWrapper.m
NSToolbar.subproj/NSToolbarItemGroup.m
NSToolbar.subproj/NSToolbarCustomizationView.m
NSToolbar.subproj/NSToolbarView.m
NSToolbar.subproj/NSToolbar.m
NSToolbar.subproj/NSToolbarItem.m
NSToolbar.subproj/NSToolbarCustomizationPalette.m
NSToolbar.subproj/NSToolbarItemView.m
NSBitmapImageRep.m
NSDrawer.subproj/NSDrawer.m
NSDrawer.subproj/NSDrawerWindow.m
NSPrinter.m
NSOpenPanel.m
NSTableHeaderCell.m
NSColorPanel.m
NSCell.m
NSPopUpView.m
NSViewBackingLayer.m
NSMatrix.m
NSSliderCell.m
NSTableView.m
NSSpellingViewController.m
NSSystemInfoPanel/NSSystemInfoPanel.m
NSSavePanel.m
NSDockTile.m
NSGraphics.m
NSColorWell.m
NSAlertPanel.m
NSPanel.m
NSRuleEditorButtonCell.m
NSKeyboardBinding/NSKeyboardBindingManager.m
NSKeyboardBinding/NSKeyboardBinding.m
NSTextAttachment.m
NSCollectionView/NSCollectionViewItem.m
NSCollectionView/NSCollectionView.m
NSStepper.m
NSAccessibility.m
)
set_source_files_properties(${AppKit_sources} LANGUAGE C)
add_framework(AppKit
FAT
CURRENT_VERSION
SOURCES
${AppKit_sources}
VERSION "C"
DEPENDENCIES
objc
system
CoreFoundation
Foundation
CoreGraphics
Onyx2D
# native libraries
FreeType
jpeg png tiff
)

1
AppKit/KTFont_FT.h Symbolic link
View File

@ -0,0 +1 @@
X11.subproj/KTFont_FT.h

1
AppKit/NSAnimation.h Symbolic link
View File

@ -0,0 +1 @@
NSAnimation/NSAnimation.h

1
AppKit/NSAnimationContext.h Symbolic link
View File

@ -0,0 +1 @@
NSAnimation/NSAnimationContext.h

1
AppKit/NSArrayController.h Symbolic link
View File

@ -0,0 +1 @@
NSController/NSArrayController.h

1
AppKit/NSBidiHelper.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSBidiHelper.h

1
AppKit/NSBinder.h Symbolic link
View File

@ -0,0 +1 @@
NSKeyValueBinding/NSBinder.h

View File

@ -0,0 +1 @@
NSColorPicker.subproj/NSBrowserCellColorList.h

View File

@ -0,0 +1 @@
nib.subproj/NSButtonImageSource.h

1
AppKit/NSCachingBinder.h Symbolic link
View File

@ -0,0 +1 @@
NSKeyValueBinding/NSCachingBinder.h

1
AppKit/NSClassSwapper.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSClassSwapper.h

1
AppKit/NSCollectionView.h Symbolic link
View File

@ -0,0 +1 @@
NSCollectionView/NSCollectionView.h

View File

@ -0,0 +1 @@
NSCollectionView/NSCollectionViewItem.h

1
AppKit/NSColor.h Symbolic link
View File

@ -0,0 +1 @@
NSColor.subproj/NSColor.h

1
AppKit/NSColorPicker.h Symbolic link
View File

@ -0,0 +1 @@
NSColorPicker.subproj/NSColorPicker.h

View File

@ -0,0 +1 @@
NSColorPicker.subproj/NSColorPickerColorList.h

View File

@ -0,0 +1 @@
NSColorPicker.subproj/NSColorPickerSliders.h

1
AppKit/NSColorPickerWheel.h Symbolic link
View File

@ -0,0 +1 @@
NSColorPicker.subproj/NSColorPickerWheel.h

View File

@ -0,0 +1 @@
NSColorPicker.subproj/NSColorPickerWheelView.h

1
AppKit/NSColor_CGColor.h Symbolic link
View File

@ -0,0 +1 @@
NSColor.subproj/NSColor_CGColor.h

1
AppKit/NSColor_catalog.h Symbolic link
View File

@ -0,0 +1 @@
NSColor.subproj/NSColor_catalog.h

1
AppKit/NSController.h Symbolic link
View File

@ -0,0 +1 @@
NSController/NSController.h

1
AppKit/NSControllerMarker.h Symbolic link
View File

@ -0,0 +1 @@
NSController/NSControllerMarker.h

View File

@ -0,0 +1 @@
NSController/NSControllerSelectionProxy.h

1
AppKit/NSCustomObject.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSCustomObject.h

1
AppKit/NSCustomResource.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSCustomResource.h

1
AppKit/NSCustomView.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSCustomView.h

View File

@ -0,0 +1 @@
NSController/NSDictionaryController.h

1
AppKit/NSDrawer.h Symbolic link
View File

@ -0,0 +1 @@
NSDrawer.subproj/NSDrawer.h

1
AppKit/NSDrawerWindow.h Symbolic link
View File

@ -0,0 +1 @@
NSDrawer.subproj/NSDrawerWindow.h

1
AppKit/NSEvent.h Symbolic link
View File

@ -0,0 +1 @@
NSEvent.subproj/NSEvent.h

View File

@ -0,0 +1 @@
NSEvent.subproj/NSEvent_CoreGraphics.h

1
AppKit/NSEvent_keyboard.h Symbolic link
View File

@ -0,0 +1 @@
NSEvent.subproj/NSEvent_keyboard.h

1
AppKit/NSEvent_mouse.h Symbolic link
View File

@ -0,0 +1 @@
NSEvent.subproj/NSEvent_mouse.h

1
AppKit/NSEvent_other.h Symbolic link
View File

@ -0,0 +1 @@
NSEvent.subproj/NSEvent_other.h

1
AppKit/NSEvent_periodic.h Symbolic link
View File

@ -0,0 +1 @@
NSEvent.subproj/NSEvent_periodic.h

1
AppKit/NSGraphicsStyle.h Symbolic link
View File

@ -0,0 +1 @@
NSInterfacePart/NSGraphicsStyle.h

1
AppKit/NSIBObjectData.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSIBObjectData.h

View File

@ -0,0 +1 @@
NSInterfacePart/NSInterfaceGraphics.h

1
AppKit/NSInterfacePart.h Symbolic link
View File

@ -0,0 +1 @@
NSInterfacePart/NSInterfacePart.h

View File

@ -0,0 +1 @@
NSInterfacePart/NSInterfacePartAttributedString.h

View File

@ -0,0 +1 @@
NSInterfacePart/NSInterfacePartDisabledAttributedString.h

1
AppKit/NSKVOBinder.h Symbolic link
View File

@ -0,0 +1 @@
NSKeyValueBinding/NSKVOBinder.h

1
AppKit/NSKeyboardBinding.h Symbolic link
View File

@ -0,0 +1 @@
NSKeyboardBinding/NSKeyboardBinding.h

View File

@ -0,0 +1 @@
NSKeyboardBinding/NSKeyboardBindingManager.h

1
AppKit/NSLayoutManager.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSLayoutManager.h

1
AppKit/NSMainMenuView.h Symbolic link
View File

@ -0,0 +1 @@
NSMenu.subproj/NSMainMenuView.h

1
AppKit/NSMenu.h Symbolic link
View File

@ -0,0 +1 @@
NSMenu.subproj/NSMenu.h

1
AppKit/NSMenuItem.h Symbolic link
View File

@ -0,0 +1 @@
NSMenu.subproj/NSMenuItem.h

1
AppKit/NSMenuView.h Symbolic link
View File

@ -0,0 +1 @@
NSMenu.subproj/NSMenuView.h

1
AppKit/NSMenuWindow.h Symbolic link
View File

@ -0,0 +1 @@
NSMenu.subproj/NSMenuWindow.h

View File

@ -0,0 +1 @@
NSKeyValueBinding/NSMultipleValueBinder.h

1
AppKit/NSNib.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSNib.h

View File

@ -0,0 +1 @@
nib.subproj/NSNibAXRelationshipConnector.h

View File

@ -0,0 +1 @@
nib.subproj/NSNibBindingConnector.h

1
AppKit/NSNibConnector.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSNibConnector.h

View File

@ -0,0 +1 @@
nib.subproj/NSNibControlConnector.h

1
AppKit/NSNibHelpConnector.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSNibHelpConnector.h

1
AppKit/NSNibLoading.h Symbolic link
View File

@ -0,0 +1 @@
nib.subproj/NSNibLoading.h

View File

@ -0,0 +1 @@
nib.subproj/NSNibOutletConnector.h

View File

@ -0,0 +1 @@
NSKeyValueBinding/NSObject+BindingSupport.h

1
AppKit/NSObjectController.h Symbolic link
View File

@ -0,0 +1 @@
NSController/NSObjectController.h

1
AppKit/NSObservationProxy.h Symbolic link
View File

@ -0,0 +1 @@
NSController/NSObservationProxy.h

1
AppKit/NSOpenGL.h Symbolic link
View File

@ -0,0 +1 @@
NSOpenGL/NSOpenGL.h

1
AppKit/NSOpenGLContext.h Symbolic link
View File

@ -0,0 +1 @@
NSOpenGL/NSOpenGLContext.h

1
AppKit/NSOpenGLDrawable.h Symbolic link
View File

@ -0,0 +1 @@
NSOpenGL/NSOpenGLDrawable.h

View File

@ -0,0 +1 @@
X11.subproj/NSOpenGLDrawable_X11.h

View File

@ -0,0 +1 @@
NSOpenGL/NSOpenGLPixelBuffer.h

View File

@ -0,0 +1 @@
NSOpenGL/NSOpenGLPixelFormat.h

1
AppKit/NSOpenGLView.h Symbolic link
View File

@ -0,0 +1 @@
NSOpenGL/NSOpenGLView.h

1
AppKit/NSOverflowMenuView.h Symbolic link
View File

@ -0,0 +1 @@
NSMenu.subproj/NSOverflowMenuView.h

View File

@ -0,0 +1 @@
CoreData_/NSPersistentDocument.h

1
AppKit/NSRaise.h Symbolic link
View File

@ -0,0 +1 @@
../Foundation/NSException/NSRaise.h

1
AppKit/NSRangeArray.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSRangeArray.h

1
AppKit/NSRichTextReader.h Symbolic link
View File

@ -0,0 +1 @@
RTF.subproj/NSRichTextReader.h

1
AppKit/NSRichTextWriter.h Symbolic link
View File

@ -0,0 +1 @@
RTF.subproj/NSRichTextWriter.h

View File

@ -0,0 +1 @@
NSTextView.subproj/NSRulerMarker+NSTextExtensions.h

View File

@ -0,0 +1 @@
NSTextView.subproj/NSSecureLayoutManager.h

1
AppKit/NSSecureTextView.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSSecureTextView.h

1
AppKit/NSSegmentItem.h Symbolic link
View File

@ -0,0 +1 @@
NSSegmentedControl/NSSegmentItem.h

1
AppKit/NSSegmentedCell.h Symbolic link
View File

@ -0,0 +1 @@
NSSegmentedControl/NSSegmentedCell.h

1
AppKit/NSSegmentedControl.h Symbolic link
View File

@ -0,0 +1 @@
NSSegmentedControl/NSSegmentedControl.h

1
AppKit/NSSubmenuView.h Symbolic link
View File

@ -0,0 +1 @@
NSMenu.subproj/NSSubmenuView.h

1
AppKit/NSSystemInfoPanel.h Symbolic link
View File

@ -0,0 +1 @@
NSSystemInfoPanel/NSSystemInfoPanel.h

1
AppKit/NSTextBinder.h Symbolic link
View File

@ -0,0 +1 @@
NSKeyValueBinding/NSTextBinder.h

1
AppKit/NSTextBlock.h Symbolic link
View File

@ -0,0 +1 @@
NSTextTable/NSTextBlock.h

1
AppKit/NSTextContainer.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSTextContainer.h

1
AppKit/NSTextFieldBinder.h Symbolic link
View File

@ -0,0 +1 @@
NSKeyValueBinding/NSTextFieldBinder.h

1
AppKit/NSTextInput.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSTextInput.h

1
AppKit/NSTextStorage.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSTextStorage.h

View File

@ -0,0 +1 @@
NSTextView.subproj/NSTextStorage_concrete.h

1
AppKit/NSTextTab.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSTextTab.h

1
AppKit/NSTextTable.h Symbolic link
View File

@ -0,0 +1 @@
NSTextTable/NSTextTable.h

1
AppKit/NSTextTableBlock.h Symbolic link
View File

@ -0,0 +1 @@
NSTextTable/NSTextTableBlock.h

1
AppKit/NSTextView.h Symbolic link
View File

@ -0,0 +1 @@
NSTextView.subproj/NSTextView.h

View File

@ -0,0 +1 @@
NSTextView.subproj/NSTextViewSharedData.h

1
AppKit/NSToolbar.h Symbolic link
View File

@ -0,0 +1 @@
NSToolbar.subproj/NSToolbar.h

View File

@ -0,0 +1 @@
NSToolbar.subproj/NSToolbarCustomizationPalette.h

View File

@ -0,0 +1 @@
NSToolbar.subproj/NSToolbarCustomizationView.h

1
AppKit/NSToolbarItem.h Symbolic link
View File

@ -0,0 +1 @@
NSToolbar.subproj/NSToolbarItem.h

Some files were not shown because too many files have changed in this diff Show More