Skip to content

CoreFoundation macOS xcode16.0 b1

Rolf Bjarne Kvinge edited this page Jun 19, 2024 · 4 revisions

#CoreFoundation.framework

Rolf

diff -ruN /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h
--- /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h	2024-04-05 22:12:25
+++ /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h	2024-05-30 02:24:10
@@ -149,6 +149,12 @@
 */
 CF_EXPORT void CFAttributedStringEndEditing(CFMutableAttributedStringRef aStr);
 
+#if !0
+/*! @function CFAttributedStringGetBidiLevelsAndResolvedDirections
+Fills bidiLevels by applying the Unicode Bidi Algorithm (P, X, W, N, and I) to the characters in range. Returns true if the result is not uni-level LTR (in other words, needing further Bidi processing). baseDirection is NSWritingDirection (NSWritingDirectionNatural, NSWritingDirectionLeftToRight, and NSWritingDirectionRightToLeft).  Understands NSWritingDirectionAttributeName values.
+*/
+CF_EXPORT bool CFAttributedStringGetBidiLevelsAndResolvedDirections(CFAttributedStringRef attributedString, CFRange range, int8_t baseDirection, uint8_t *bidiLevels, uint8_t *baseDirections);
+#endif
 
 CF_EXTERN_C_END
 CF_IMPLICIT_BRIDGING_DISABLED
diff -ruN /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h
--- /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h	2024-04-19 07:24:24
+++ /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h	2024-05-30 04:43:13
@@ -26,14 +26,17 @@
 CF_EXPORT
 CFCalendarRef CFCalendarCopyCurrent(void);
 
+/**
+ Creates a calendar.  The identifiers are the `kCF*Calendar` constants in CFLocale.h.
+**/
 CF_EXPORT
 CFCalendarRef CFCalendarCreateWithIdentifier(CFAllocatorRef allocator, CFCalendarIdentifier identifier);
-	// Create a calendar.  The identifiers are the kCF*Calendar
-	// constants in CFLocale.h.
 
+/**
+ Returns the calendar's identifier.
+ */
 CF_EXPORT
 CFCalendarIdentifier CFCalendarGetIdentifier(CFCalendarRef calendar);
-	// Returns the calendar's identifier.
 
 CF_EXPORT
 CFLocaleRef CFCalendarCopyLocale(CFCalendarRef calendar);
@@ -61,20 +64,21 @@
 
 
 typedef CF_OPTIONS(CFOptionFlags, CFCalendarUnit) {
-	kCFCalendarUnitEra = (1UL << 1),
-	kCFCalendarUnitYear = (1UL << 2),
-	kCFCalendarUnitMonth = (1UL << 3),
-	kCFCalendarUnitDay = (1UL << 4),
-	kCFCalendarUnitHour = (1UL << 5),
-	kCFCalendarUnitMinute = (1UL << 6),
-	kCFCalendarUnitSecond = (1UL << 7),
-	kCFCalendarUnitWeek API_DEPRECATED("Use kCFCalendarUnitWeekOfYear or kCFCalendarUnitWeekOfMonth instead", macos(10.4,10.10), ios(2.0,8.0), watchos(2.0,2.0), tvos(9.0,9.0)) = (1UL << 8),
-	kCFCalendarUnitWeekday = (1UL << 9),
-	kCFCalendarUnitWeekdayOrdinal = (1UL << 10),
-	kCFCalendarUnitQuarter API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0)) = (1UL << 11),
-	kCFCalendarUnitWeekOfMonth API_AVAILABLE(macos(10.7), ios(5.0), watchos(2.0), tvos(9.0)) = (1UL << 12),
-	kCFCalendarUnitWeekOfYear API_AVAILABLE(macos(10.7), ios(5.0), watchos(2.0), tvos(9.0)) = (1UL << 13),
-	kCFCalendarUnitYearForWeekOfYear API_AVAILABLE(macos(10.7), ios(5.0), watchos(2.0), tvos(9.0)) = (1UL << 14),
+    kCFCalendarUnitEra = (1UL << 1),
+    kCFCalendarUnitYear = (1UL << 2),
+    kCFCalendarUnitMonth = (1UL << 3),
+    kCFCalendarUnitDay = (1UL << 4),
+    kCFCalendarUnitHour = (1UL << 5),
+    kCFCalendarUnitMinute = (1UL << 6),
+    kCFCalendarUnitSecond = (1UL << 7),
+    kCFCalendarUnitWeek API_DEPRECATED("Use kCFCalendarUnitWeekOfYear or kCFCalendarUnitWeekOfMonth instead", macos(10.4,10.10), ios(2.0,8.0), watchos(2.0,2.0), tvos(9.0,9.0)) = (1UL << 8),
+    kCFCalendarUnitWeekday = (1UL << 9),
+    kCFCalendarUnitWeekdayOrdinal = (1UL << 10),
+    kCFCalendarUnitQuarter API_AVAILABLE(macos(10.6), ios(4.0), watchos(2.0), tvos(9.0)) = (1UL << 11),
+    kCFCalendarUnitWeekOfMonth API_AVAILABLE(macos(10.7), ios(5.0), watchos(2.0), tvos(9.0)) = (1UL << 12),
+    kCFCalendarUnitWeekOfYear API_AVAILABLE(macos(10.7), ios(5.0), watchos(2.0), tvos(9.0)) = (1UL << 13),
+    kCFCalendarUnitYearForWeekOfYear API_AVAILABLE(macos(10.7), ios(5.0), watchos(2.0), tvos(9.0)) = (1UL << 14),
+    kCFCalendarUnitDayOfYear API_AVAILABLE(macos(15.0), ios(18.0), watchos(11.0), tvos(18.0)) = (1UL << 16),
 };
 
 CF_EXPORT
diff -ruN /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h
--- /Applications/Xcode_15.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h	2024-04-19 07:23:26
+++ /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h	2024-05-30 04:31:50
@@ -141,6 +141,20 @@
 CF_EXPORT const CFNumberFormatterKey kCFNumberFormatterMinSignificantDigits API_AVAILABLE(macos(10.5), ios(2.0), watchos(2.0), tvos(9.0));	// CFNumber
 CF_EXPORT const CFNumberFormatterKey kCFNumberFormatterMaxSignificantDigits API_AVAILABLE(macos(10.5), ios(2.0), watchos(2.0), tvos(9.0));	// CFNumber
 
+CF_EXPORT const CFNumberFormatterKey kCFNumberFormatterMinGroupingDigits API_AVAILABLE(macos(15.0), ios(18.0), watchos(11.0), tvos(18.0), visionos(2.0));    // CFNumber
+    // Configures the minimum required number of digits preceding the first separator before the separator is shown.
+    // Grouping starts happening when the number of digits reaches `kCFNumberFormatterGroupingSize + kCFNumberFormatterMinGroupingDigits`.
+    // If `kCFNumberFormatterUseGroupingSeparator == false` the separator will not be shown and this property is ignored.
+    // Set `kCFNumberFormatterMinGroupingDigits == 1` to always show separators.
+    // Set `kCFNumberFormatterMinGroupingDigits == -1` to use the locale default minimum grouping digits.
+    // Note: `0` is an invalid value and the behavior is undefined.
+    // Example:
+    // `kCFNumberFormatterUseGroupingSeparator == true` and `kCFNumberFormatterGroupingSize == 3` and locale identifier is `en_US`
+    // Formatting values of 1000 and 10000 results in:
+    // `kCFNumberFormatterMinGroupingDigits == 1`    1,000    10,000
+    // `kCFNumberFormatterMinGroupingDigits == 2`    1000     10,000
+    // `kCFNumberFormatterMinGroupingDigits == -1`   1,000    10,000 (default for US English)
+                                                                                       
 typedef CF_ENUM(CFIndex, CFNumberFormatterRoundingMode) {
     kCFNumberFormatterRoundCeiling = 0,
     kCFNumberFormatterRoundFloor = 1,
Clone this wiki locally