this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #1620 from jlucfarias/add-private-framework-uifoundation

Add private framework UIFoundation

authored by

CuriousTommy and committed by
GitHub
05596359 24b72ee2

+7183
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/UIFoundation.framework/Headers
··· 1 + Versions/A/Headers
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/Headers
··· 1 + ../../../../../../../../../../../../src/private-frameworks/UIFoundation/include/UIFoundation
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/Current
··· 1 + A
+1
cmake/use_ld64.cmake
··· 153 153 -Wl,-dylib_file,/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore:${COCOTRON_FW_PATH}/QuartzCore/QuartzCore \ 154 154 -Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL:${CMAKE_BINARY_DIR}/src/frameworks/OpenGL/OpenGL \ 155 155 -Wl,-dylib_file,/System/Library/PrivateFrameworks/Onyx2D.framework/Versions/A/Onyx2D:${CMAKE_BINARY_DIR}/src/external/cocotron/Onyx2D/Onyx2D \ 156 + -Wl,-dylib_file,/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation:${CMAKE_BINARY_DIR}/src/private-frameworks/UIFoundation/UIFoundation \ 156 157 -Wl,-dylib_file,/usr/lib/darling/libelfloader.dylib:${CMAKE_BINARY_DIR}/src/libelfloader/libelfloader.dylib \ 157 158 -Wl,-dylib_file,/usr/lib/native/libavcodec.dylib:${CMAKE_BINARY_DIR}/src/native/libavcodec.dylib \ 158 159 -Wl,-dylib_file,/usr/lib/native/libavformat.dylib:${CMAKE_BINARY_DIR}/src/native/libavformat.dylib \
+1
framework-private-include/UIFoundation
··· 1 + ../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/UIFoundation.framework/Headers
+1
src/private-frameworks/CMakeLists.txt
··· 81 81 add_subdirectory(SpotlightReceiver) 82 82 add_subdirectory(SpotlightServerKit) 83 83 add_subdirectory(SpotlightServices) 84 + add_subdirectory(UIFoundation) 84 85 endif()
+140
src/private-frameworks/UIFoundation/CMakeLists.txt
··· 1 + project(UIFoundation) 2 + 3 + set(DYLIB_COMPAT_VERSION "1.0.0") 4 + set(DYLIB_CURRENT_VERSION "547.5.0") 5 + set(FRAMEWORK_VERSION "A") 6 + 7 + remove_sdk_framework(UIFoundation 8 + PRIVATE 9 + ) 10 + 11 + generate_sdk_framework(UIFoundation 12 + VERSION ${FRAMEWORK_VERSION} 13 + HEADER "include/UIFoundation" 14 + PRIVATE 15 + ) 16 + 17 + add_framework(UIFoundation 18 + FAT 19 + CURRENT_VERSION 20 + PRIVATE 21 + VERSION ${FRAMEWORK_VERSION} 22 + 23 + SOURCES 24 + src/UIFoundation.m 25 + src/NSFontAssetRequest.m 26 + src/NSCollectionViewData.m 27 + src/NSCoreTypesetter.m 28 + src/NSExtraLMData.m 29 + src/NSLayoutManagerTextBlockHelper.m 30 + src/NSLayoutManagerTextBlockRowArrayCache.m 31 + src/NSLayoutManager.m 32 + src/UINibCoderValue.m 33 + src/NSStorage.m 34 + src/NSStringDrawingContext.m 35 + src/_NSCachedAttributedString.m 36 + src/NSStringDrawingTextStorage.m 37 + src/NSStringDrawingTextStorageSettings.m 38 + src/NSZipTextReader.m 39 + src/_NSCollectionViewItemKey.m 40 + src/_UICollectionViewTrackedValueItem.m 41 + src/_UICollectionViewTrackedValue.m 42 + src/UICollectionViewAnimation.m 43 + src/NSTextAlternatives.m 44 + src/UICollectionViewLayoutAttributesAuxiliary.m 45 + src/NSCollectionViewLayoutAttributes.m 46 + src/NSCollectionViewLayoutInvalidationContext.m 47 + src/NSCollectionViewLayout.m 48 + src/NSCollectionViewUpdateItem.m 49 + src/_NSCollectionViewCore.m 50 + src/UIViewAnimationContext.m 51 + src/NSShadow.m 52 + src/NSTextAttachment.m 53 + src/NSTextAttachmentViewProvider.m 54 + src/_UIPointVector.m 55 + src/UIPointFIFO.m 56 + src/UIBoxcarFilterPointFIFO.m 57 + src/UIQuadCurvePointFIFO.m 58 + src/NSFontDescriptor.m 59 + src/NSCTFontDescriptor.m 60 + src/NSMutableFontDescriptor.m 61 + src/NSTextContainer.m 62 + src/NSTextList.m 63 + src/NSTextLineFragment.m 64 + src/UICollectionViewIndexMapper.m 65 + src/NSCollectionViewUpdate.m 66 + src/NSCollectionViewTransitionLayout.m 67 + src/NSConcreteNotifyingMutableAttributedString.m 68 + src/_NSTextStorageSideData.m 69 + src/NSTextStorage.m 70 + src/NSConcreteTextStorage.m 71 + src/_NSFlowLayoutItem.m 72 + src/_NSFlowLayoutSection.m 73 + src/_NSFlowLayoutRow.m 74 + src/_NSFlowLayoutInfo.m 75 + src/NSTextBlockLayoutHelper.m 76 + src/NSTextBlock.m 77 + src/NSTextTableBlock.m 78 + src/NSTextTable.m 79 + src/NSTypesetter.m 80 + src/NSRTFReaderTableState.m 81 + src/NSRTFReader.m 82 + src/NSRTFWriter.m 83 + src/NSSubstituteWebResource.m 84 + src/NSHTMLWebDelegate.m 85 + src/NSHTMLReader.m 86 + src/NSHTMLWriter.m 87 + src/NSMutableIndexPath.m 88 + src/NSTempAttributeDictionary.m 89 + src/NSAttributeDictionary.m 90 + src/NSAttributeDictionaryEnumerator.m 91 + src/UINibStringIDTable.m 92 + src/__NSFontTypefaceInfo.m 93 + src/__NSSharedFontInstanceInfo.m 94 + src/NSFont.m 95 + src/NSCTFont.m 96 + src/_NSAttributes.m 97 + src/_NSAttributeRun.m 98 + src/NSParagraphArbitrator.m 99 + src/UINibDecoder.m 100 + src/NSGlyphGenerator.m 101 + src/NSGlyphInfo.m 102 + src/NSIdentityGlyphInfo.m 103 + src/NSGlyphNameGlyphInfo.m 104 + src/NSCIDGlyphInfo.m 105 + src/NSCTGlyphInfo.m 106 + src/NSTextTab.m 107 + src/NSParagraphStyleExtraData.m 108 + src/NSParagraphStyle.m 109 + src/NSMutableParagraphStyle.m 110 + src/NSOpenDocumentReader.m 111 + src/NSOpenDocumentWriter.m 112 + src/_NSUIAnimator.m 113 + src/NSRunStorage.m 114 + src/NSIdRunStorage.m 115 + src/NSInsertionPointHelper.m 116 + src/NSDocFormatReader.m 117 + src/NSDocFormatWriter.m 118 + src/NSTextLayoutFragment.m 119 + src/_NSCollectionViewPrefetchingContext.m 120 + src/_UICollectionViewPrefetchItem.m 121 + src/NSCollectionViewFlowLayoutInvalidationContext.m 122 + src/UICollectionViewFlowLayoutAuxiliary.m 123 + src/NSCollectionViewFlowLayout.m 124 + src/_NSATSTypesetterGuts.m 125 + src/NSATSTypesetter.m 126 + src/__NSATSStringSegment.m 127 + src/NSATSGlyphStorage.m 128 + src/NSATSLineFragment.m 129 + src/NSLineFragmentRenderingContext.m 130 + src/NSSingleLineTypesetter.m 131 + src/UINibEncoder.m 132 + src/NSConcreteGlyphGenerator.m 133 + src/NSWordMLReader.m 134 + src/NSWordMLWriter.m 135 + 136 + DEPENDENCIES 137 + system 138 + objc 139 + Foundation 140 + )
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSATSGlyphStorage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSATSGlyphStorage : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSATSLineFragment.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSATSLineFragment : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSATSTypesetter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSATSTypesetter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSAttributeDictionary.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSAttributeDictionary : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSAttributeDictionaryEnumerator.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSAttributeDictionaryEnumerator : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCIDGlyphInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCIDGlyphInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCTFont.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCTFont : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCTFontDescriptor.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCTFontDescriptor : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCTGlyphInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCTGlyphInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewData : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewFlowLayout.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewFlowLayout : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewFlowLayoutInvalidationContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewFlowLayoutInvalidationContext : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewLayout.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewLayout : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewLayoutAttributes.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewLayoutAttributes : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewLayoutInvalidationContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewLayoutInvalidationContext : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewTransitionLayout.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewTransitionLayout : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewUpdate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewUpdate : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCollectionViewUpdateItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCollectionViewUpdateItem : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSConcreteGlyphGenerator.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSConcreteGlyphGenerator : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSConcreteNotifyingMutableAttributedString.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSConcreteNotifyingMutableAttributedString : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSConcreteTextStorage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSConcreteTextStorage : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSCoreTypesetter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSCoreTypesetter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSDocFormatReader.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSDocFormatReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSDocFormatWriter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSDocFormatWriter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSExtraLMData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSExtraLMData : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSFont.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSFont : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSFontAssetRequest.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSFontAssetRequest : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSFontDescriptor.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSFontDescriptor : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSGlyphGenerator.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSGlyphGenerator : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSGlyphInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSGlyphInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSGlyphNameGlyphInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSGlyphNameGlyphInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSHTMLReader.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSHTMLReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSHTMLWebDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSHTMLWebDelegate : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSHTMLWriter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSHTMLWriter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSIdRunStorage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSIdRunStorage : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSIdentityGlyphInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSIdentityGlyphInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSInsertionPointHelper.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSInsertionPointHelper : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSLayoutManager.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSLayoutManager : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSLayoutManagerDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSLayoutManagerDelegate 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSLayoutManagerTextBlockHelper.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSLayoutManagerTextBlockHelper : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSLayoutManagerTextBlockRowArrayCache.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSLayoutManagerTextBlockRowArrayCache : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSLineFragmentRenderingContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSLineFragmentRenderingContext : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSMutableFontDescriptor.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSMutableFontDescriptor : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSMutableIndexPath.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSMutableIndexPath : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSMutableParagraphStyle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSMutableParagraphStyle : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSOpenDocumentReader.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSOpenDocumentReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSOpenDocumentWriter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSOpenDocumentWriter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSParagraphArbitrator.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSParagraphArbitrator : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSParagraphStyle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSParagraphStyle : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSParagraphStyleExtraData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSParagraphStyleExtraData : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSProgressReporting.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSProgressReporting 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSRTFReader.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSRTFReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSRTFReaderTableState.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSRTFReaderTableState : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSRTFWriter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSRTFWriter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSRunStorage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSRunStorage : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSShadow.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSShadow : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSSingleLineTypesetter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSSingleLineTypesetter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSStorage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSStorage : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSStringDrawingContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSStringDrawingContext : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSStringDrawingTextStorage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSStringDrawingTextStorage : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSStringDrawingTextStorageSettings.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSStringDrawingTextStorageSettings : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSSubstituteWebResource.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSSubstituteWebResource : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTempAttributeDictionary.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTempAttributeDictionary : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextAlternatives.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextAlternatives : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextAttachment.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextAttachment : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextAttachmentContainer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSTextAttachmentContainer 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextAttachmentViewProvider.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextAttachmentViewProvider : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextBlock.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextBlock : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextBlockLayoutHelper.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextBlockLayoutHelper : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextContainer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextContainer : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextLayoutFragment.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextLayoutFragment : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextLayoutOrientationProvider.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSTextLayoutOrientationProvider 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextLineFragment.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextLineFragment : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextList.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextList : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextStorage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextStorage : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextTab.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextTab : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextTable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextTable : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTextTableBlock.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTextTableBlock : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSTypesetter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSTypesetter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSWordMLReader.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSWordMLReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSWordMLWriter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSWordMLWriter : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSXMLParserDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSXMLParserDelegate 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/NSZipTextReader.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSZipTextReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UIBoxcarFilterPointFIFO.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UIBoxcarFilterPointFIFO : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UICollectionViewAnimation.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UICollectionViewAnimation : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UICollectionViewFlowLayoutAuxiliary.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UICollectionViewFlowLayoutAuxiliary : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UICollectionViewIndexMapper.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UICollectionViewIndexMapper : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UICollectionViewLayoutAttributesAuxiliary.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UICollectionViewLayoutAttributesAuxiliary : NSObject 23 + 24 + @end
+195
src/private-frameworks/UIFoundation/include/UIFoundation/UIFoundation.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + 21 + #ifndef _UIFoundation_H_ 22 + #define _UIFoundation_H_ 23 + 24 + #import <Foundation/Foundation.h> 25 + 26 + #import <UIFoundation/NSLayoutManagerDelegate.h> 27 + #import <UIFoundation/NSProgressReporting.h> 28 + #import <UIFoundation/NSTextAttachmentContainer.h> 29 + #import <UIFoundation/NSTextLayoutOrientationProvider.h> 30 + #import <UIFoundation/NSXMLParserDelegate.h> 31 + #import <UIFoundation/NSFontAssetRequest.h> 32 + #import <UIFoundation/NSCollectionViewData.h> 33 + #import <UIFoundation/NSCoreTypesetter.h> 34 + #import <UIFoundation/NSExtraLMData.h> 35 + #import <UIFoundation/NSLayoutManagerTextBlockHelper.h> 36 + #import <UIFoundation/NSLayoutManagerTextBlockRowArrayCache.h> 37 + #import <UIFoundation/NSLayoutManager.h> 38 + #import <UIFoundation/UINibCoderValue.h> 39 + #import <UIFoundation/NSStorage.h> 40 + #import <UIFoundation/NSStringDrawingContext.h> 41 + #import <UIFoundation/_NSCachedAttributedString.h> 42 + #import <UIFoundation/NSStringDrawingTextStorage.h> 43 + #import <UIFoundation/NSStringDrawingTextStorageSettings.h> 44 + #import <UIFoundation/NSZipTextReader.h> 45 + #import <UIFoundation/_NSCollectionViewItemKey.h> 46 + #import <UIFoundation/_UICollectionViewTrackedValueItem.h> 47 + #import <UIFoundation/_UICollectionViewTrackedValue.h> 48 + #import <UIFoundation/UICollectionViewAnimation.h> 49 + #import <UIFoundation/NSTextAlternatives.h> 50 + #import <UIFoundation/UICollectionViewLayoutAttributesAuxiliary.h> 51 + #import <UIFoundation/NSCollectionViewLayoutAttributes.h> 52 + #import <UIFoundation/NSCollectionViewLayoutInvalidationContext.h> 53 + #import <UIFoundation/NSCollectionViewLayout.h> 54 + #import <UIFoundation/NSCollectionViewUpdateItem.h> 55 + #import <UIFoundation/_NSCollectionViewCore.h> 56 + #import <UIFoundation/UIViewAnimationContext.h> 57 + #import <UIFoundation/NSShadow.h> 58 + #import <UIFoundation/NSTextAttachment.h> 59 + #import <UIFoundation/NSTextAttachmentViewProvider.h> 60 + #import <UIFoundation/_UIPointVector.h> 61 + #import <UIFoundation/UIPointFIFO.h> 62 + #import <UIFoundation/UIBoxcarFilterPointFIFO.h> 63 + #import <UIFoundation/UIQuadCurvePointFIFO.h> 64 + #import <UIFoundation/NSFontDescriptor.h> 65 + #import <UIFoundation/NSCTFontDescriptor.h> 66 + #import <UIFoundation/NSMutableFontDescriptor.h> 67 + #import <UIFoundation/NSTextContainer.h> 68 + #import <UIFoundation/NSTextList.h> 69 + #import <UIFoundation/NSTextLineFragment.h> 70 + #import <UIFoundation/UICollectionViewIndexMapper.h> 71 + #import <UIFoundation/NSCollectionViewUpdate.h> 72 + #import <UIFoundation/NSCollectionViewTransitionLayout.h> 73 + #import <UIFoundation/NSConcreteNotifyingMutableAttributedString.h> 74 + #import <UIFoundation/_NSTextStorageSideData.h> 75 + #import <UIFoundation/NSTextStorage.h> 76 + #import <UIFoundation/NSConcreteTextStorage.h> 77 + #import <UIFoundation/_NSFlowLayoutItem.h> 78 + #import <UIFoundation/_NSFlowLayoutSection.h> 79 + #import <UIFoundation/_NSFlowLayoutRow.h> 80 + #import <UIFoundation/_NSFlowLayoutInfo.h> 81 + #import <UIFoundation/NSTextBlockLayoutHelper.h> 82 + #import <UIFoundation/NSTextBlock.h> 83 + #import <UIFoundation/NSTextTableBlock.h> 84 + #import <UIFoundation/NSTextTable.h> 85 + #import <UIFoundation/NSTypesetter.h> 86 + #import <UIFoundation/NSRTFReaderTableState.h> 87 + #import <UIFoundation/NSRTFReader.h> 88 + #import <UIFoundation/NSRTFWriter.h> 89 + #import <UIFoundation/NSSubstituteWebResource.h> 90 + #import <UIFoundation/NSHTMLWebDelegate.h> 91 + #import <UIFoundation/NSHTMLReader.h> 92 + #import <UIFoundation/NSHTMLWriter.h> 93 + #import <UIFoundation/NSMutableIndexPath.h> 94 + #import <UIFoundation/NSTempAttributeDictionary.h> 95 + #import <UIFoundation/NSAttributeDictionary.h> 96 + #import <UIFoundation/NSAttributeDictionaryEnumerator.h> 97 + #import <UIFoundation/UINibStringIDTable.h> 98 + #import <UIFoundation/__NSFontTypefaceInfo.h> 99 + #import <UIFoundation/__NSSharedFontInstanceInfo.h> 100 + #import <UIFoundation/NSFont.h> 101 + #import <UIFoundation/NSCTFont.h> 102 + #import <UIFoundation/_NSAttributes.h> 103 + #import <UIFoundation/_NSAttributeRun.h> 104 + #import <UIFoundation/NSParagraphArbitrator.h> 105 + #import <UIFoundation/UINibDecoder.h> 106 + #import <UIFoundation/NSGlyphGenerator.h> 107 + #import <UIFoundation/NSGlyphInfo.h> 108 + #import <UIFoundation/NSIdentityGlyphInfo.h> 109 + #import <UIFoundation/NSGlyphNameGlyphInfo.h> 110 + #import <UIFoundation/NSCIDGlyphInfo.h> 111 + #import <UIFoundation/NSCTGlyphInfo.h> 112 + #import <UIFoundation/NSTextTab.h> 113 + #import <UIFoundation/NSParagraphStyleExtraData.h> 114 + #import <UIFoundation/NSParagraphStyle.h> 115 + #import <UIFoundation/NSMutableParagraphStyle.h> 116 + #import <UIFoundation/NSOpenDocumentReader.h> 117 + #import <UIFoundation/NSOpenDocumentWriter.h> 118 + #import <UIFoundation/_NSUIAnimator.h> 119 + #import <UIFoundation/NSRunStorage.h> 120 + #import <UIFoundation/NSIdRunStorage.h> 121 + #import <UIFoundation/NSInsertionPointHelper.h> 122 + #import <UIFoundation/NSDocFormatReader.h> 123 + #import <UIFoundation/NSDocFormatWriter.h> 124 + #import <UIFoundation/NSTextLayoutFragment.h> 125 + #import <UIFoundation/_NSCollectionViewPrefetchingContext.h> 126 + #import <UIFoundation/_UICollectionViewPrefetchItem.h> 127 + #import <UIFoundation/NSCollectionViewFlowLayoutInvalidationContext.h> 128 + #import <UIFoundation/UICollectionViewFlowLayoutAuxiliary.h> 129 + #import <UIFoundation/NSCollectionViewFlowLayout.h> 130 + #import <UIFoundation/_NSATSTypesetterGuts.h> 131 + #import <UIFoundation/NSATSTypesetter.h> 132 + #import <UIFoundation/__NSATSStringSegment.h> 133 + #import <UIFoundation/NSATSGlyphStorage.h> 134 + #import <UIFoundation/NSATSLineFragment.h> 135 + #import <UIFoundation/NSLineFragmentRenderingContext.h> 136 + #import <UIFoundation/NSSingleLineTypesetter.h> 137 + #import <UIFoundation/UINibEncoder.h> 138 + #import <UIFoundation/NSConcreteGlyphGenerator.h> 139 + #import <UIFoundation/NSWordMLReader.h> 140 + #import <UIFoundation/NSWordMLWriter.h> 141 + 142 + void* CFArrayCreateWithNonRetainedObjectsFromNSArray(void); 143 + void* CFDictionaryCreateWithNonRetainedValuesFromNSDictionary(void); 144 + void* NSConvertGlyphsToPackedGlyphs(void); 145 + void* NSDefaultFont(void); 146 + void* NSStringFromCGAffineTransform(void); 147 + void* NSTextAlignmentFromCTTextAlignment(void); 148 + void* NSTextAlignmentToCTTextAlignment(void); 149 + void* UIAppendBytesForValueToData(void); 150 + void* UIAppendVInt32ToData(void); 151 + void* UIArrayByKeepingObjectsInSet(void); 152 + void* UICreateOrderedAndStrippedCoderValues(void); 153 + void* UIDataLooksLikeNibArchive(void); 154 + void* UIDistanceBetweenPointAndRect(void); 155 + void* UIFixedByteLengthForType(void); 156 + void* UINibArchiveIndexFromNumber(void); 157 + void* UINibCoderValueTypeToString(void); 158 + void* UINumberWithNibArchiveIndex(void); 159 + void* UIRetainedIdentityKeyDictionaryCallbacks(void); 160 + void* UIRetainedIdentitySetCallbacks(void); 161 + void* UIRetainedIdentityValueDictionaryCallbacks(void); 162 + void* UIWriteArchiveToData(void); 163 + void* _NSAddDirtyLayoutManager(void); 164 + void* _NSAttachmentCharacterSet(void); 165 + void* _NSBidiControlCharacterSet(void); 166 + void* _NSBidiEmbeddingAndOverrideCharSet(void); 167 + void* _NSBlockNumberForIndex(void); 168 + void* _NSCalculateContainerOrigin(void); 169 + void* _NSClearGlyphIndexForPointCache(void); 170 + void* _NSFastFillAllGlyphHolesForCharacterRange(void); 171 + void* _NSFastFillAllGlyphHolesForGlyphRange(void); 172 + void* _NSFastFillAllGlyphHolesUpToGlyphIndex(void); 173 + void* _NSFastFillAllLayoutHolesForGlyphRange(void); 174 + void* _NSFastFillAllLayoutHolesUpToEndOfContainerForGlyphIndex(void); 175 + void* _NSFastFillAllLayoutHolesUpToGlyphIndex(void); 176 + void* _NSFontAttributeNames(void); 177 + void* _NSGetAppKitVersionNumber(void); 178 + void* _NSHTMLEncoding(void); 179 + void* _NSLayoutManagerLogDebug(void); 180 + void* _NSNonAttachmentCharacterSet(void); 181 + void* _NSReadAttributedStringFromData(void); 182 + void* _NSReadAttributedStringFromURL(void); 183 + void* _NSReadAttributedStringFromURLOrData(void); 184 + void* _NSRemoveDirtyLayoutManager(void); 185 + void* _NSStringDrawingCore(void); 186 + void* _NSStringHasRightToLeftBaseWritingDirectionAtIndex(void); 187 + void* _NSStringHasRightToLeftCharactersInRange(void); 188 + void* _NSStringImputedBaseWritingDirectionAtIndex(void); 189 + void* _NSUsedRectFromStoredLineFragment(void); 190 + void* _NSXMLEncoding(void); 191 + void* __NSGetNSAppearanceClass(void); 192 + void* __NSTokenizerLanguageSet(void); 193 + void* mutableDictionaryByTransformingLeafDictionariesToWeakValued(void); 194 + 195 + #endif
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UINibCoderValue.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UINibCoderValue : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UINibDecoder.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UINibDecoder : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UINibEncoder.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UINibEncoder : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UINibStringIDTable.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UINibStringIDTable : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UIPointFIFO.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UIPointFIFO : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UIQuadCurvePointFIFO.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UIQuadCurvePointFIFO : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/UIViewAnimationContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface UIViewAnimationContext : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSATSTypesetterGuts.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSATSTypesetterGuts : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSAttributeRun.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSAttributeRun : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSAttributes.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSAttributes : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSCachedAttributedString.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSCachedAttributedString : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSCollectionViewCore.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSCollectionViewCore : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSCollectionViewItemKey.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSCollectionViewItemKey : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSCollectionViewPrefetchingContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSCollectionViewPrefetchingContext : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSFlowLayoutInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSFlowLayoutInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSFlowLayoutItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSFlowLayoutItem : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSFlowLayoutRow.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSFlowLayoutRow : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSFlowLayoutSection.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSFlowLayoutSection : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSTextStorageSideData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSTextStorageSideData : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_NSUIAnimator.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _NSUIAnimator : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_UICollectionViewPrefetchItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _UICollectionViewPrefetchItem : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_UICollectionViewTrackedValue.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _UICollectionViewTrackedValue : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_UICollectionViewTrackedValueItem.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _UICollectionViewTrackedValueItem : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/_UIPointVector.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _UIPointVector : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/__NSATSStringSegment.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface __NSATSStringSegment : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/__NSFontTypefaceInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface __NSFontTypefaceInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/UIFoundation/include/UIFoundation/__NSSharedFontInstanceInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface __NSSharedFontInstanceInfo : NSObject 23 + 24 + @end
+34
src/private-frameworks/UIFoundation/src/NSATSGlyphStorage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSATSGlyphStorage.h> 21 + 22 + @implementation NSATSGlyphStorage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSATSLineFragment.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSATSLineFragment.h> 21 + 22 + @implementation NSATSLineFragment 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSATSTypesetter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSATSTypesetter.h> 21 + 22 + @implementation NSATSTypesetter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSAttributeDictionary.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSAttributeDictionary.h> 21 + 22 + @implementation NSAttributeDictionary 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSAttributeDictionaryEnumerator.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSAttributeDictionaryEnumerator.h> 21 + 22 + @implementation NSAttributeDictionaryEnumerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCIDGlyphInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCIDGlyphInfo.h> 21 + 22 + @implementation NSCIDGlyphInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCTFont.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCTFont.h> 21 + 22 + @implementation NSCTFont 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCTFontDescriptor.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCTFontDescriptor.h> 21 + 22 + @implementation NSCTFontDescriptor 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCTGlyphInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCTGlyphInfo.h> 21 + 22 + @implementation NSCTGlyphInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewData.h> 21 + 22 + @implementation NSCollectionViewData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewFlowLayout.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewFlowLayout.h> 21 + 22 + @implementation NSCollectionViewFlowLayout 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewFlowLayoutInvalidationContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewFlowLayoutInvalidationContext.h> 21 + 22 + @implementation NSCollectionViewFlowLayoutInvalidationContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewLayout.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewLayout.h> 21 + 22 + @implementation NSCollectionViewLayout 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewLayoutAttributes.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewLayoutAttributes.h> 21 + 22 + @implementation NSCollectionViewLayoutAttributes 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewLayoutInvalidationContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewLayoutInvalidationContext.h> 21 + 22 + @implementation NSCollectionViewLayoutInvalidationContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewTransitionLayout.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewTransitionLayout.h> 21 + 22 + @implementation NSCollectionViewTransitionLayout 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewUpdate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewUpdate.h> 21 + 22 + @implementation NSCollectionViewUpdate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCollectionViewUpdateItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCollectionViewUpdateItem.h> 21 + 22 + @implementation NSCollectionViewUpdateItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSConcreteGlyphGenerator.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSConcreteGlyphGenerator.h> 21 + 22 + @implementation NSConcreteGlyphGenerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSConcreteNotifyingMutableAttributedString.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSConcreteNotifyingMutableAttributedString.h> 21 + 22 + @implementation NSConcreteNotifyingMutableAttributedString 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSConcreteTextStorage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSConcreteTextStorage.h> 21 + 22 + @implementation NSConcreteTextStorage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSCoreTypesetter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSCoreTypesetter.h> 21 + 22 + @implementation NSCoreTypesetter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSDocFormatReader.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSDocFormatReader.h> 21 + 22 + @implementation NSDocFormatReader 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSDocFormatWriter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSDocFormatWriter.h> 21 + 22 + @implementation NSDocFormatWriter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSExtraLMData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSExtraLMData.h> 21 + 22 + @implementation NSExtraLMData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSFont.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSFont.h> 21 + 22 + @implementation NSFont 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSFontAssetRequest.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSFontAssetRequest.h> 21 + 22 + @implementation NSFontAssetRequest 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSFontDescriptor.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSFontDescriptor.h> 21 + 22 + @implementation NSFontDescriptor 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSGlyphGenerator.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSGlyphGenerator.h> 21 + 22 + @implementation NSGlyphGenerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSGlyphInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSGlyphInfo.h> 21 + 22 + @implementation NSGlyphInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSGlyphNameGlyphInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSGlyphNameGlyphInfo.h> 21 + 22 + @implementation NSGlyphNameGlyphInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSHTMLReader.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSHTMLReader.h> 21 + 22 + @implementation NSHTMLReader 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSHTMLWebDelegate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSHTMLWebDelegate.h> 21 + 22 + @implementation NSHTMLWebDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSHTMLWriter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSHTMLWriter.h> 21 + 22 + @implementation NSHTMLWriter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSIdRunStorage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSIdRunStorage.h> 21 + 22 + @implementation NSIdRunStorage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSIdentityGlyphInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSIdentityGlyphInfo.h> 21 + 22 + @implementation NSIdentityGlyphInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSInsertionPointHelper.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSInsertionPointHelper.h> 21 + 22 + @implementation NSInsertionPointHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSLayoutManager.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSLayoutManager.h> 21 + 22 + @implementation NSLayoutManager 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSLayoutManagerTextBlockHelper.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSLayoutManagerTextBlockHelper.h> 21 + 22 + @implementation NSLayoutManagerTextBlockHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSLayoutManagerTextBlockRowArrayCache.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSLayoutManagerTextBlockRowArrayCache.h> 21 + 22 + @implementation NSLayoutManagerTextBlockRowArrayCache 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSLineFragmentRenderingContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSLineFragmentRenderingContext.h> 21 + 22 + @implementation NSLineFragmentRenderingContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSMutableFontDescriptor.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSMutableFontDescriptor.h> 21 + 22 + @implementation NSMutableFontDescriptor 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSMutableIndexPath.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSMutableIndexPath.h> 21 + 22 + @implementation NSMutableIndexPath 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSMutableParagraphStyle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSMutableParagraphStyle.h> 21 + 22 + @implementation NSMutableParagraphStyle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSOpenDocumentReader.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSOpenDocumentReader.h> 21 + 22 + @implementation NSOpenDocumentReader 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSOpenDocumentWriter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSOpenDocumentWriter.h> 21 + 22 + @implementation NSOpenDocumentWriter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSParagraphArbitrator.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSParagraphArbitrator.h> 21 + 22 + @implementation NSParagraphArbitrator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSParagraphStyle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSParagraphStyle.h> 21 + 22 + @implementation NSParagraphStyle 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSParagraphStyleExtraData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSParagraphStyleExtraData.h> 21 + 22 + @implementation NSParagraphStyleExtraData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSRTFReader.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSRTFReader.h> 21 + 22 + @implementation NSRTFReader 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSRTFReaderTableState.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSRTFReaderTableState.h> 21 + 22 + @implementation NSRTFReaderTableState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSRTFWriter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSRTFWriter.h> 21 + 22 + @implementation NSRTFWriter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSRunStorage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSRunStorage.h> 21 + 22 + @implementation NSRunStorage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSShadow.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSShadow.h> 21 + 22 + @implementation NSShadow 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSSingleLineTypesetter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSSingleLineTypesetter.h> 21 + 22 + @implementation NSSingleLineTypesetter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSStorage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSStorage.h> 21 + 22 + @implementation NSStorage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSStringDrawingContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSStringDrawingContext.h> 21 + 22 + @implementation NSStringDrawingContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSStringDrawingTextStorage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSStringDrawingTextStorage.h> 21 + 22 + @implementation NSStringDrawingTextStorage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSStringDrawingTextStorageSettings.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSStringDrawingTextStorageSettings.h> 21 + 22 + @implementation NSStringDrawingTextStorageSettings 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSSubstituteWebResource.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSSubstituteWebResource.h> 21 + 22 + @implementation NSSubstituteWebResource 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTempAttributeDictionary.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTempAttributeDictionary.h> 21 + 22 + @implementation NSTempAttributeDictionary 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextAlternatives.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextAlternatives.h> 21 + 22 + @implementation NSTextAlternatives 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextAttachment.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextAttachment.h> 21 + 22 + @implementation NSTextAttachment 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextAttachmentViewProvider.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextAttachmentViewProvider.h> 21 + 22 + @implementation NSTextAttachmentViewProvider 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextBlock.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextBlock.h> 21 + 22 + @implementation NSTextBlock 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextBlockLayoutHelper.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextBlockLayoutHelper.h> 21 + 22 + @implementation NSTextBlockLayoutHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextContainer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextContainer.h> 21 + 22 + @implementation NSTextContainer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextLayoutFragment.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextLayoutFragment.h> 21 + 22 + @implementation NSTextLayoutFragment 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextLineFragment.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextLineFragment.h> 21 + 22 + @implementation NSTextLineFragment 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextList.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextList.h> 21 + 22 + @implementation NSTextList 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextStorage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextStorage.h> 21 + 22 + @implementation NSTextStorage 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextTab.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextTab.h> 21 + 22 + @implementation NSTextTab 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextTable.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextTable.h> 21 + 22 + @implementation NSTextTable 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTextTableBlock.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTextTableBlock.h> 21 + 22 + @implementation NSTextTableBlock 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSTypesetter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSTypesetter.h> 21 + 22 + @implementation NSTypesetter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSWordMLReader.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSWordMLReader.h> 21 + 22 + @implementation NSWordMLReader 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSWordMLWriter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSWordMLWriter.h> 21 + 22 + @implementation NSWordMLWriter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/NSZipTextReader.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/NSZipTextReader.h> 21 + 22 + @implementation NSZipTextReader 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UIBoxcarFilterPointFIFO.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UIBoxcarFilterPointFIFO.h> 21 + 22 + @implementation UIBoxcarFilterPointFIFO 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UICollectionViewAnimation.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UICollectionViewAnimation.h> 21 + 22 + @implementation UICollectionViewAnimation 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UICollectionViewFlowLayoutAuxiliary.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UICollectionViewFlowLayoutAuxiliary.h> 21 + 22 + @implementation UICollectionViewFlowLayoutAuxiliary 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UICollectionViewIndexMapper.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UICollectionViewIndexMapper.h> 21 + 22 + @implementation UICollectionViewIndexMapper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UICollectionViewLayoutAttributesAuxiliary.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UICollectionViewLayoutAttributesAuxiliary.h> 21 + 22 + @implementation UICollectionViewLayoutAttributesAuxiliary 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+342
src/private-frameworks/UIFoundation/src/UIFoundation.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + 21 + #include <UIFoundation/UIFoundation.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + 27 + __attribute__((constructor)) 28 + static void initme(void) { 29 + verbose = getenv("STUB_VERBOSE") != NULL; 30 + } 31 + 32 + void* CFArrayCreateWithNonRetainedObjectsFromNSArray(void) 33 + { 34 + if (verbose) puts("STUB: CFArrayCreateWithNonRetainedObjectsFromNSArray called"); 35 + return NULL; 36 + } 37 + 38 + void* CFDictionaryCreateWithNonRetainedValuesFromNSDictionary(void) 39 + { 40 + if (verbose) puts("STUB: CFDictionaryCreateWithNonRetainedValuesFromNSDictionary called"); 41 + return NULL; 42 + } 43 + 44 + void* NSConvertGlyphsToPackedGlyphs(void) 45 + { 46 + if (verbose) puts("STUB: NSConvertGlyphsToPackedGlyphs called"); 47 + return NULL; 48 + } 49 + 50 + void* NSDefaultFont(void) 51 + { 52 + if (verbose) puts("STUB: NSDefaultFont called"); 53 + return NULL; 54 + } 55 + 56 + void* NSStringFromCGAffineTransform(void) 57 + { 58 + if (verbose) puts("STUB: NSStringFromCGAffineTransform called"); 59 + return NULL; 60 + } 61 + 62 + void* NSTextAlignmentFromCTTextAlignment(void) 63 + { 64 + if (verbose) puts("STUB: NSTextAlignmentFromCTTextAlignment called"); 65 + return NULL; 66 + } 67 + 68 + void* NSTextAlignmentToCTTextAlignment(void) 69 + { 70 + if (verbose) puts("STUB: NSTextAlignmentToCTTextAlignment called"); 71 + return NULL; 72 + } 73 + 74 + void* UIAppendBytesForValueToData(void) 75 + { 76 + if (verbose) puts("STUB: UIAppendBytesForValueToData called"); 77 + return NULL; 78 + } 79 + 80 + void* UIAppendVInt32ToData(void) 81 + { 82 + if (verbose) puts("STUB: UIAppendVInt32ToData called"); 83 + return NULL; 84 + } 85 + 86 + void* UIArrayByKeepingObjectsInSet(void) 87 + { 88 + if (verbose) puts("STUB: UIArrayByKeepingObjectsInSet called"); 89 + return NULL; 90 + } 91 + 92 + void* UICreateOrderedAndStrippedCoderValues(void) 93 + { 94 + if (verbose) puts("STUB: UICreateOrderedAndStrippedCoderValues called"); 95 + return NULL; 96 + } 97 + 98 + void* UIDataLooksLikeNibArchive(void) 99 + { 100 + if (verbose) puts("STUB: UIDataLooksLikeNibArchive called"); 101 + return NULL; 102 + } 103 + 104 + void* UIDistanceBetweenPointAndRect(void) 105 + { 106 + if (verbose) puts("STUB: UIDistanceBetweenPointAndRect called"); 107 + return NULL; 108 + } 109 + 110 + void* UIFixedByteLengthForType(void) 111 + { 112 + if (verbose) puts("STUB: UIFixedByteLengthForType called"); 113 + return NULL; 114 + } 115 + 116 + void* UINibArchiveIndexFromNumber(void) 117 + { 118 + if (verbose) puts("STUB: UINibArchiveIndexFromNumber called"); 119 + return NULL; 120 + } 121 + 122 + void* UINibCoderValueTypeToString(void) 123 + { 124 + if (verbose) puts("STUB: UINibCoderValueTypeToString called"); 125 + return NULL; 126 + } 127 + 128 + void* UINumberWithNibArchiveIndex(void) 129 + { 130 + if (verbose) puts("STUB: UINumberWithNibArchiveIndex called"); 131 + return NULL; 132 + } 133 + 134 + void* UIRetainedIdentityKeyDictionaryCallbacks(void) 135 + { 136 + if (verbose) puts("STUB: UIRetainedIdentityKeyDictionaryCallbacks called"); 137 + return NULL; 138 + } 139 + 140 + void* UIRetainedIdentitySetCallbacks(void) 141 + { 142 + if (verbose) puts("STUB: UIRetainedIdentitySetCallbacks called"); 143 + return NULL; 144 + } 145 + 146 + void* UIRetainedIdentityValueDictionaryCallbacks(void) 147 + { 148 + if (verbose) puts("STUB: UIRetainedIdentityValueDictionaryCallbacks called"); 149 + return NULL; 150 + } 151 + 152 + void* UIWriteArchiveToData(void) 153 + { 154 + if (verbose) puts("STUB: UIWriteArchiveToData called"); 155 + return NULL; 156 + } 157 + 158 + void* _NSAddDirtyLayoutManager(void) 159 + { 160 + if (verbose) puts("STUB: _NSAddDirtyLayoutManager called"); 161 + return NULL; 162 + } 163 + 164 + void* _NSAttachmentCharacterSet(void) 165 + { 166 + if (verbose) puts("STUB: _NSAttachmentCharacterSet called"); 167 + return NULL; 168 + } 169 + 170 + void* _NSBidiControlCharacterSet(void) 171 + { 172 + if (verbose) puts("STUB: _NSBidiControlCharacterSet called"); 173 + return NULL; 174 + } 175 + 176 + void* _NSBidiEmbeddingAndOverrideCharSet(void) 177 + { 178 + if (verbose) puts("STUB: _NSBidiEmbeddingAndOverrideCharSet called"); 179 + return NULL; 180 + } 181 + 182 + void* _NSBlockNumberForIndex(void) 183 + { 184 + if (verbose) puts("STUB: _NSBlockNumberForIndex called"); 185 + return NULL; 186 + } 187 + 188 + void* _NSCalculateContainerOrigin(void) 189 + { 190 + if (verbose) puts("STUB: _NSCalculateContainerOrigin called"); 191 + return NULL; 192 + } 193 + 194 + void* _NSClearGlyphIndexForPointCache(void) 195 + { 196 + if (verbose) puts("STUB: _NSClearGlyphIndexForPointCache called"); 197 + return NULL; 198 + } 199 + 200 + void* _NSFastFillAllGlyphHolesForCharacterRange(void) 201 + { 202 + if (verbose) puts("STUB: _NSFastFillAllGlyphHolesForCharacterRange called"); 203 + return NULL; 204 + } 205 + 206 + void* _NSFastFillAllGlyphHolesForGlyphRange(void) 207 + { 208 + if (verbose) puts("STUB: _NSFastFillAllGlyphHolesForGlyphRange called"); 209 + return NULL; 210 + } 211 + 212 + void* _NSFastFillAllGlyphHolesUpToGlyphIndex(void) 213 + { 214 + if (verbose) puts("STUB: _NSFastFillAllGlyphHolesUpToGlyphIndex called"); 215 + return NULL; 216 + } 217 + 218 + void* _NSFastFillAllLayoutHolesForGlyphRange(void) 219 + { 220 + if (verbose) puts("STUB: _NSFastFillAllLayoutHolesForGlyphRange called"); 221 + return NULL; 222 + } 223 + 224 + void* _NSFastFillAllLayoutHolesUpToEndOfContainerForGlyphIndex(void) 225 + { 226 + if (verbose) puts("STUB: _NSFastFillAllLayoutHolesUpToEndOfContainerForGlyphIndex called"); 227 + return NULL; 228 + } 229 + 230 + void* _NSFastFillAllLayoutHolesUpToGlyphIndex(void) 231 + { 232 + if (verbose) puts("STUB: _NSFastFillAllLayoutHolesUpToGlyphIndex called"); 233 + return NULL; 234 + } 235 + 236 + void* _NSFontAttributeNames(void) 237 + { 238 + if (verbose) puts("STUB: _NSFontAttributeNames called"); 239 + return NULL; 240 + } 241 + 242 + void* _NSGetAppKitVersionNumber(void) 243 + { 244 + if (verbose) puts("STUB: _NSGetAppKitVersionNumber called"); 245 + return NULL; 246 + } 247 + 248 + void* _NSHTMLEncoding(void) 249 + { 250 + if (verbose) puts("STUB: _NSHTMLEncoding called"); 251 + return NULL; 252 + } 253 + 254 + void* _NSLayoutManagerLogDebug(void) 255 + { 256 + if (verbose) puts("STUB: _NSLayoutManagerLogDebug called"); 257 + return NULL; 258 + } 259 + 260 + void* _NSNonAttachmentCharacterSet(void) 261 + { 262 + if (verbose) puts("STUB: _NSNonAttachmentCharacterSet called"); 263 + return NULL; 264 + } 265 + 266 + void* _NSReadAttributedStringFromData(void) 267 + { 268 + if (verbose) puts("STUB: _NSReadAttributedStringFromData called"); 269 + return NULL; 270 + } 271 + 272 + void* _NSReadAttributedStringFromURL(void) 273 + { 274 + if (verbose) puts("STUB: _NSReadAttributedStringFromURL called"); 275 + return NULL; 276 + } 277 + 278 + void* _NSReadAttributedStringFromURLOrData(void) 279 + { 280 + if (verbose) puts("STUB: _NSReadAttributedStringFromURLOrData called"); 281 + return NULL; 282 + } 283 + 284 + void* _NSRemoveDirtyLayoutManager(void) 285 + { 286 + if (verbose) puts("STUB: _NSRemoveDirtyLayoutManager called"); 287 + return NULL; 288 + } 289 + 290 + void* _NSStringDrawingCore(void) 291 + { 292 + if (verbose) puts("STUB: _NSStringDrawingCore called"); 293 + return NULL; 294 + } 295 + 296 + void* _NSStringHasRightToLeftBaseWritingDirectionAtIndex(void) 297 + { 298 + if (verbose) puts("STUB: _NSStringHasRightToLeftBaseWritingDirectionAtIndex called"); 299 + return NULL; 300 + } 301 + 302 + void* _NSStringHasRightToLeftCharactersInRange(void) 303 + { 304 + if (verbose) puts("STUB: _NSStringHasRightToLeftCharactersInRange called"); 305 + return NULL; 306 + } 307 + 308 + void* _NSStringImputedBaseWritingDirectionAtIndex(void) 309 + { 310 + if (verbose) puts("STUB: _NSStringImputedBaseWritingDirectionAtIndex called"); 311 + return NULL; 312 + } 313 + 314 + void* _NSUsedRectFromStoredLineFragment(void) 315 + { 316 + if (verbose) puts("STUB: _NSUsedRectFromStoredLineFragment called"); 317 + return NULL; 318 + } 319 + 320 + void* _NSXMLEncoding(void) 321 + { 322 + if (verbose) puts("STUB: _NSXMLEncoding called"); 323 + return NULL; 324 + } 325 + 326 + void* __NSGetNSAppearanceClass(void) 327 + { 328 + if (verbose) puts("STUB: __NSGetNSAppearanceClass called"); 329 + return NULL; 330 + } 331 + 332 + void* __NSTokenizerLanguageSet(void) 333 + { 334 + if (verbose) puts("STUB: __NSTokenizerLanguageSet called"); 335 + return NULL; 336 + } 337 + 338 + void* mutableDictionaryByTransformingLeafDictionariesToWeakValued(void) 339 + { 340 + if (verbose) puts("STUB: mutableDictionaryByTransformingLeafDictionariesToWeakValued called"); 341 + return NULL; 342 + }
+34
src/private-frameworks/UIFoundation/src/UINibCoderValue.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UINibCoderValue.h> 21 + 22 + @implementation UINibCoderValue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UINibDecoder.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UINibDecoder.h> 21 + 22 + @implementation UINibDecoder 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UINibEncoder.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UINibEncoder.h> 21 + 22 + @implementation UINibEncoder 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UINibStringIDTable.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UINibStringIDTable.h> 21 + 22 + @implementation UINibStringIDTable 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UIPointFIFO.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UIPointFIFO.h> 21 + 22 + @implementation UIPointFIFO 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UIQuadCurvePointFIFO.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UIQuadCurvePointFIFO.h> 21 + 22 + @implementation UIQuadCurvePointFIFO 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/UIViewAnimationContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/UIViewAnimationContext.h> 21 + 22 + @implementation UIViewAnimationContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSATSTypesetterGuts.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSATSTypesetterGuts.h> 21 + 22 + @implementation _NSATSTypesetterGuts 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSAttributeRun.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSAttributeRun.h> 21 + 22 + @implementation _NSAttributeRun 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSAttributes.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSAttributes.h> 21 + 22 + @implementation _NSAttributes 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSCachedAttributedString.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSCachedAttributedString.h> 21 + 22 + @implementation _NSCachedAttributedString 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSCollectionViewCore.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSCollectionViewCore.h> 21 + 22 + @implementation _NSCollectionViewCore 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSCollectionViewItemKey.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSCollectionViewItemKey.h> 21 + 22 + @implementation _NSCollectionViewItemKey 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSCollectionViewPrefetchingContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSCollectionViewPrefetchingContext.h> 21 + 22 + @implementation _NSCollectionViewPrefetchingContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSFlowLayoutInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSFlowLayoutInfo.h> 21 + 22 + @implementation _NSFlowLayoutInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSFlowLayoutItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSFlowLayoutItem.h> 21 + 22 + @implementation _NSFlowLayoutItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSFlowLayoutRow.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSFlowLayoutRow.h> 21 + 22 + @implementation _NSFlowLayoutRow 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSFlowLayoutSection.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSFlowLayoutSection.h> 21 + 22 + @implementation _NSFlowLayoutSection 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSTextStorageSideData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSTextStorageSideData.h> 21 + 22 + @implementation _NSTextStorageSideData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_NSUIAnimator.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_NSUIAnimator.h> 21 + 22 + @implementation _NSUIAnimator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_UICollectionViewPrefetchItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_UICollectionViewPrefetchItem.h> 21 + 22 + @implementation _UICollectionViewPrefetchItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_UICollectionViewTrackedValue.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_UICollectionViewTrackedValue.h> 21 + 22 + @implementation _UICollectionViewTrackedValue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_UICollectionViewTrackedValueItem.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_UICollectionViewTrackedValueItem.h> 21 + 22 + @implementation _UICollectionViewTrackedValueItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/_UIPointVector.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/_UIPointVector.h> 21 + 22 + @implementation _UIPointVector 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/__NSATSStringSegment.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/__NSATSStringSegment.h> 21 + 22 + @implementation __NSATSStringSegment 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/__NSFontTypefaceInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/__NSFontTypefaceInfo.h> 21 + 22 + @implementation __NSFontTypefaceInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/UIFoundation/src/__NSSharedFontInstanceInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <UIFoundation/__NSSharedFontInstanceInfo.h> 21 + 22 + @implementation __NSSharedFontInstanceInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end